______________________________________________________________________ Top - Requirements - Introduction - Installation - Configuration Transformations - FAQ - Developers - Credits - Translators ______________________________________________________________________ phpMyAdmin 2.6.3-pl1 Documentation * SourceForge phpMyAdmin project page [ http://www.phpmyadmin.net/ ] * Local documents: + Version history: ChangeLog + General notes: README + License: LICENSE * Documentation version: $Id: Documentation.html,v 2.131.2.4 2005/07/04 21:50:18 lem9 Exp $ Requirements * PHP + You need PHP 4.1.0 or newer (*) + If you want to display inline thumbnails of JPEGs with the original aspect ratio, you also need GD2 support in PHP + Starting with phpMyAdmin 2.6.1, MIME-based transformations that use an external program need PHP 4.3.0 or newer * MySQL 3.23.32 or newer (details); * Not really a requirement but a strong suggestion: if you are using th e "cookie" authentication method, having the mcrypt PHP extension on your web server accelerates not only the login phase but every other action that you do in phpMyAdmin. * a web-browser (doh!). Introduction phpMyAdmin can manage a whole MySQL server (needs a super-user) as well a s a single database. To accomplish the latter you'll need a properly set up MySQL user who can read/write only the desired database. It's up to you to look up the appropriate part in the MySQL manual. Currently phpMyAdmin can: * create and drop databases * create, copy, drop, rename and alter tables * do table maintenance * delete, edit and add fields * execute any SQL-statement, even batch-queries * manage keys on fields * load text files into tables * create (*) and read dumps of tables * export (*) data to CSV, XML and Latex formats * administer multiple servers * manage MySQL users and privileges * check referential integrity in MyISAM tables * using Query-by-example (QBE), create complex queries automatically co nnecting required tables * create PDF graphics of your Database layout * search globally in a database or a subset of it * transform stored data into any format using a set of predefined funct ions, like displaying BLOB-data as image or download-link or ... * support InnoDB tables and foreign keys (see FAQ 3.6) * support mysqli, the improved MySQL extension (see FAQ 1.17) * communicate in 50 different languages (*) phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats) dump s and CSV exports if you use PHP4 >= 4.0.4 with Zlib support (--with-zli b) and/or Bzip2 support (--with-bz2). Installation NOTE: phpMyAdmin does not apply any special security methods to the MySQL database server. It is still the system administrator's job to grant pe rmissions on the MySQL databases properly. phpMyAdmin's "Privileges" pag e can be used for this. Warning for Mac users:if you are on a MacOS version before OS X, StuffIt unstuffs with Mac formats. So you'll have to resave as in BBEdit to Unix style ALL phpMyAdmin script s before uploading them to your server, as PHP seems not to like Mac-sty le end of lines character ("\r"). Quick Install 1. Untar or unzip the distribution (be sure to unzip the subdirectories) : tar -xzvf phpMyAdmin_x.x.x.tar.gz in your webserver's document root. If you don't have direct access to your document root, put the files in a directory on your local machine, and, after step 3, transfer the directory on your web server using, for example, ftp. 2. Ensure that all the scripts have the appropriate owner (if PHP is run ning in safe mode, having some scripts with an owner different from the owner of other scripts will be a problem). See FAQ 4.2 for suggestions. 3. Open the file config.inc.php in your favorite editor and change the v alues for host, user, password and authentication mode to fit your environment. Here, "host" means the MySQL server. Have a look at Configuration section for an explanation of all values. Please also read the remaining of this Installation section for information about authentication modes and the linked-tables infrastructure. 4. It is recommended that you protect the directory in which you install ed phpMyAdmin (unless it's on a closed intranet, or you wish to use HTTP or cookie authentication), for example with HTTP-AUTH (in a .htaccess file). See the multi-user sub-section of the FAQ for additional information, especially FAQ 4.4. 5. Open the file //index.php in you r browser. phpMyAdmin should now display a welcome screen and your databases, or a login dialog if using HTTP or cookie authentication mode. Linked-tables infrastructure For a whole set of new features (bookmarks, comments, SQL-history, PDF-ge neration, field contents transformation, etc.) you need to create a set of special tables. Those tables can be located in your own database, or in a central database for a multi-user installation (this database would then be accessed by the controluser, so no other user should have right s to it). Please look at your scripts/ directory, where you should find a file call ed create_tables.sql. (If you are using a Windows server, pay special at tention to FAQ 1.23). If your MySQL server's version is 4.1.2 or later, please use create_table s_mysql_4_1_2+.sql instead, for a new installation. If you already had this infrastructure and upgraded to MySQL 4.1.2 or lat er, please use upgrade_tables_mysql_4_1_2+.sql. You can use your phpMyAdmin to create the tables for you. Please be aware that you may need special (administrator) privileges to create the data base and tables, and that the script may need some tuning, depending on the database name. After having imported the create_tables.sql file, you should specify the table names in your config.inc.php file. The directives used for that ca n be found in the Configuration section. You will also need to have a co ntroluser with the proper rights to those tables (see section Using auth entication modes below). Upgrading from an older version * You can safely copy your older config.inc.php over a new one, if you can live with default values for possible new parameters (you can check release notes to see what new features were added). This compatibility will stay for long time, current version supports importing config files from 2.2 and maybe even older (nobody has tried that). Using authentication modes * HTTP and cookie authentication modes are recommended in a multi-user environment where you want to give users access to their own database and don't want them to play around with others. Nevertheless be aware that MS Internet Explorer seems to be really buggy about cookies, at least till version 6. And PHP 4.1.1 is also a bit buggy in this area! Even in a single-user environment, you might prefer to use HTTP or cookie mode so that your user/password pair are not in clear in the configuration file. * HTTP and cookie authentication modes are more secure: the MySQL login information does not need to be set in the phpMyAdmin configuration file (except possibly for the controluser). However, keep in mind that the password travels in plain text, unless you are using the HTTPS protocol. In cookie mode, the password is stored, encrypted with the blowfish algorithm, in a temporary cookie. * Note: starting with phpMyAdmin 2.6.1, configuring the controluser to enable HTTP and cookie authentication applies only to MySQL servers older than 4.1.2. For 'HTTP' and 'cookie' modes, phpMyAdmin needs a controluser that has only the SELECT privilege on the mysql.user (all columns except "Password"), mysql.db (all columns), mysql.host (all columns) and mysql.tables_priv (all columns except "Grantor" & "Timestamp") tables. You must specify the details for the controluser in the config.inc.php file under the $cfg['Servers'][$i]['controluser']& $cfg['Servers'][$i]['controlpass'] settings. The following example assumes you want to use pma as the controluser and pmapass as the controlpass, but this is only an example: use something else in your file! Of course you have to replace localhost by the webserver's host if it's not the same as the MySQL server's one. GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY 'pmapass'; GRANT SELECT ( Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv, Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv, File_priv, Grant_priv, References_priv, Index_priv, Alter_priv, Show_db_priv, Super_priv, Create_tmp_table_priv, Lock_tables_priv, Execute_priv, Repl_slave_priv, Repl_client_priv ) ON mysql.user TO 'pma'@'localhost'; GRANT SELECT ON mysql.db TO 'pma'@'localhost'; GRANT SELECT ON mysql.host TO 'pma'@'localhost'; GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv) ON mysql.tables_priv TO 'pma'@'localhost'; If you are using an old MySQL version (below 4.0.2), please replace the first GRANT SELECT query by this one: GRANT SELECT ( Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv, Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv, File_priv, Grant_priv, References_priv, Index_priv, Alter_priv ) ON mysql.user TO 'pma'@'localhost'; ... and if you want to use the many new relation and bookmark features: GRANT SELECT, INSERT, UPDATE, DELETE ON .* TO 'pma'@'localhost'; (this of course requires you to have a special DB for phpMyAdmin, the contents will be explained later) Of course, the above queries only work if your MySQL version supports the GRANT command. This is the case since 3.22.11. * Then each of the true users should be granted a set of privileges on a set of particular databases. Normally you shouldn't give global privileges to an ordinary user, unless you understand the impact of those privileges (for example, you are creating a superuser). For example, to grant the user real_user with all privileges on the database user_base: GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real_password'; What the user may now do is controlled entirely by the MySQL user management system. With HTTP or cookie authentication mode, you don't need to fill the user/password fields inside the $cfg['Servers'] array. 'http' authentication mode * Was called 'advanced' in versions before 2.2.3. * Introduced in 1.3.0, it uses Basic HTTP authentication method and all ows you to login as any valid MySQL user. * Is supported with PHP running as an Apache module. For IIS (ISAPI) su pport using CGI PHP, see FAQ 1.32. * See also FAQ 4.4 about not using the .htaccess mechanism along with ' http' authentication mode. 'cookie' authentication mode * You can use this method as a replacement for the HTTP authentication (for example, if you're running IIS). * Obviously, the user must enable cookies in the browser. * With this mode, the user can truly logout of phpMyAdmin and login bac k with the same username. * If you want to login to arbitrary server see $cfg['AllowArbitraryServ er'] directive. * See also the requirements section for a way to improve the interface speed while using this mode. 'config' authentication mode * This mode is the less secure one because it requires you to fill the $cfg['Servers'][$i]['user'] and $cfg['Servers'][$i]['password'] fields. But you don't need to setup a "controluser" here: using the $cfg['Servers'][$i]['only_db'] might be enough. * In the ISP FAQ section, there is an entry explaining how to protect y our configuration file. * For additional security in this mode, you may wish to consider the Ho st authentication $cfg['Servers'][$i]['AllowDeny']['order'] and $cfg['Servers'][$i]['AllowDeny']['rules'] configuration directives. Configuration Warning for Mac users: PHP seems not to like Mac end of lines character ( "\r"). So ensure you choose the option that allows to use the *nix end o f line character ("\n") in your text editor before registering a script you have modified. Configuration note: Almost all configurable data is placed in config.inc. php. The parameters which relate to design (like colors) are placed in t hemes/themename/layout.inc.php. You might also want to modify config.foo ter.inc.php and config.header.inc.php files to add your site specific co de to be included on start and end of each page. $cfg['PmaAbsoluteUri'] string Sets here the complete URL (with full path) to your phpMyAdmin installation's directory. E.g. http://www.your_web.net/path_to_your_phpMyAdmin_directory/. Starting with version 2.3.0, it is advisable to try leaving this blank. In most cases phpMyAdmin automatically detects the proper setting. Additional details are in the configuration file. If you leave it blank, see the notes for $cfg['PmaAbsoluteUri_DisableWarning']; you probably want to change that to TRUE. Don't forget the slash at the end of your URL. The URL must contain characters that are valid for a URL, and on some servers, the path is case-sensitive. $cfg['PmaAbsoluteUri_DisableWarning'] boolean By default, when you leave $cfg['PmaAbsoluteUri'] empty, and the system detects your absolute URI automatically, we display a warning to remind you. If you have tested the automatic detection, and it works perfectly for your setup, then you can set this variable to squelch the warning. $cfg['PmaNoRelation_DisableWarning'] boolean Starting with version 2.3.0 phpMyAdmin offers a lot of features to work with master / foreign - tables (see $cfg['Servers'][$i]['pmadb']). If you tried to set this up and it does not work for you, have a look on the "Structure" page of one database where you would like to use it. You will find a link that will analyze why those features have been disabled. If you do not want to use those features set this variable to TRUE to stop this message from appearing. $cfg['blowfish_secret'] string Starting with version 2.5.2, the 'cookie' auth_type uses blowfish algorithm to encrypt the password. If you are using the 'cookie' auth_type, enter here a random passphrase of your choice. It will be used internally by the blowfish algorithm: you won't be prompted for this passphrase. The maximum number of characters for this parameter seems to be 46. $cfg['Servers'] array Since version 1.4.2, phpMyAdmin supports the administration of multiple MySQL servers. Therefore, a $cfg['Servers']-array has been added which contains the login information for the different servers. The first $cfg['Servers'][$i]['host'] contains the hostname of the first server, the second $cfg['Servers'][$i]['host'] the hostname of the second server, etc. If you have only one server to administer, simply leave free the hostname of the other $cfg['Server']-entries. $cfg['Servers'][$i]['host'] string The hostname or IP address of your $i-th MySQL-server. E.g. localhost. $cfg['Servers'][$i]['port'] string The port-number of your $i-th MySQL-server. Default is 3306 (leave blank). If you use "localhost" as the hostname, MySQL ignores this port number and connects with the socket, so if you want to connect to a port different from the default port, use "127.0.0.1" or the real hostname in $cfg['Servers'][$i]['host']. $cfg['Servers'][$i]['socket'] string The path to the socket to use. Leave blank for default. To use the socket feature you must run PHP 3.0.10 or more. $cfg['Servers'][$i]['connect_type'] string What type connection to use with the MySQL server. Your options are 'socket' & 'tcp'. It defaults to 'tcp' as that is nearly guaranteed to be available on all MySQL servers, while sockets are not supported on some platforms. To use the socket mode, your MySQL server must be on the same machine as the Web server. $cfg['Servers'][$i]['extension'] string What php MySQL extension to use for the connection. Valid options are: mysql : The classic MySQL extension. This is the recommended and default method at this time. mysqli : The improved MySQL extension. This extension became available with php 5.0.0 and is the recommended way to connect to a server running MySQL 4.1.x. Note: phpMyAdmin's MySQL 4.1 support is experimental! $cfg['Servers'][$i]['compress'] boolean Whether to use a compressed protocol for the MySQL server connection or not (experimental). This feature requires PHP >= 4.3.0. $cfg['Servers'][$i]['controluser'] string $cfg['Servers'][$i]['controlpass'] string Note: starting with phpMyAdmin 2.6.1, configuring the controluser to enable HTTP and cookie authentication applies only to MySQL servers older than 4.1.2. This special account is used for 2 distinct purposes: to make possible all relational features (see $cfg['Servers'][$i]['pmadb']) and, for a MySQL server older than 4.1.2, to enable a multi-user installation (http or cookie authentication mode). When using HTTP or cookie authentication modes (or 'config' authentication mode since phpMyAdmin 2.2.1), you need to supply the details of a MySQL account that has SELECT privilege on the mysql.user (all columns except "Password"), mysql.db (all columns) & mysql.tables_priv (all columns except "Grantor" & "Timestamp") tables. This account is used to check what databases the user will see at login. Please see the install section on "Using authentication modes" for more information. Note that if you try login to phpMyAdmin with this "controluser", you could get some errors, depending the exact privileges you gave to the "controluser". phpMyAdmin does not support a direct login with the "controluser". In phpMyAdmin versions before 2.2.5, those were called "stduser/stdpass". $cfg['Servers'][$i]['auth_type'] string ['http'|'cookie'|'config'] Whether config or cookie or http authentication should be used for this server. + 'config' authentication ($auth_type = 'config') is the plain old way: username and password are stored in config.inc.php. + 'cookie' authentication mode ($auth_type = 'cookie') as introduced in 2.2.3 allows you to log in as any valid MySQL user with the help of cookies. Log name and password are stored in cookies during the session and password is deleted when it ends. This can also allow you to login in arbitrary server if $cfg['AllowArbitraryServer'] enabled. + 'http' authentication (was called 'advanced' in older versions) ($auth_type = 'http') as introduced in 1.3.0 allows you to log in as any valid MySQL user via HTTP-Auth. Please see the install section on "Using authentication modes" for more information. $cfg['Servers'][$i]['user'] string $cfg['Servers'][$i]['password'] string The user/password-pair which phpMyAdmin will use to connect to this MySQL-server. This user/password pair is not needed when HTTP or cookie authentication is used, and should be empty. $cfg['Servers'][$i]['only_db'] string or array If set to a (an array of) database name(s), only this (these) database(s) will be shown to the user. Since phpMyAdmin 2.2.1, this/these database(s) name(s) may contain MySQL wildcards characters ("_" and "%"): if you want to use literal instances of these characters, escape them (I.E. use 'my\_db' and not 'my_db'). This setting is an efficient way to lower the server load since the latter does not need to send MySQL requests to build the available database list. But it does not replace the privileges rules of the MySQL database server. If set, it just means only these databases will be displayed but not that all other databases can't be used. An example of using more that one database: $cfg['Servers'][$i]['only_db'] = array('db1', 'db2'); As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the databases in the left frame, so that you can individually arrange your databases. If you want to have certain databases at the top, but don't care about the others, you do not need to specify all other databases. Use: $cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*'); instead to tell phpMyAdmin that it should display db3 and db4 on top, and the rest in alphabetic order. $cfg['Servers'][$i]['verbose'] string Only useful when using phpMyAdmin with multiple server entries. If set, this string will be displayed instead of the hostname in the pull-down menu on the main page. This can be useful if you want to show only certain databases on your system, for example. $cfg['Servers'][$i]['pmadb'] string The name of the database containing the linked-tables infrastructure. See the Linked-tables infrastructure section in this document to see the benefits of this infrastructure, and for a quick way of creating this database and the needed tables. If you are the only user of this phpMyAdmin installation, you can use your current database to store those special tables; in this case, just put your current database name in $cfg['Servers'][$i]['pmadb']. For a multi-user installation, set this parameter to the name of your central database containing the linked-tables infrastructure. $cfg['Servers'][$i]['bookmarktable'] string Since release 2.2.0 phpMyAdmin allows to bookmark queries. This can be useful for queries you often run. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + enter the table name in $cfg['Servers'][$i]['bookmarktable'] $cfg['Servers'][$i]['relation'] string Since release 2.2.4 you can describe, in a special 'relation' table, which field is a key in another table (a foreign key). phpMyAdmin currently uses this to + make clickable, when you browse the master table, the data values that point to the foreign table; + display in an optional tool-tip the "display field" when browsing the master table, if you move the mouse to a column containing a foreign key (use also the 'table_info' table); (see FAQ 6.7) + in edit/insert mode, display a drop-down list of possible foreign keys (key value and "display field" are shown) (see FAQ 6.21) + display links on the table properties page, to check referential integrity (display missing foreign keys) for each described key; + in query-by-example, create automatic joins (see FAQ 6.6) + enable you to get a PDF schema of your database (also uses the table_coords table). The keys can be numeric or character. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the relation table name in $cfg['Servers'][$i]['relation'] + now as normal user open phpMyAdmin and for each one of your tables where you want to use this feature, click "Structure/Relation view/" and choose foreign fields. Please note that in the current version, master_db must be the same as foreign_db. Those fields have been put in future development of the cross-db relations. $cfg['Servers'][$i]['table_info'] string Since release 2.3.0 you can describe, in a special 'table_info' table, which field is to be displayed as a tool-tip when moving the cursor over the corresponding key. This configuration variable will hold the name of this special table. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the table name in $cfg['Servers'][$i]['table_info'] + then for each table where you want to use this feature, click "Structure/Relation view/Choose field to display" to choose the field. Usage tip: Display field. $cfg['Servers'][$i]['table_coords'] string $cfg['Servers'][$i]['pdf_pages'] string Since release 2.3.0 you can have phpMyAdmin create PDF pages showing the relations between your tables. To do this it needs two tables "pdf_pages" (storing information about the available PDF pages) and "table_coords" (storing coordinates where each table will be placed on a PDF schema output). You must be using the "relation" feature. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the correct table names in $cfg['Servers'][$i]['table_coords'] and $cfg['Servers'][$i]['pdf_pages'] Usage tips: PDF output. $cfg['Servers'][$i]['column_info'] string Since release 2.3.0 you can store comments to describe each column for each table. These will then be shown on the "printview". Starting with release 2.5.0, comments are consequently used on the table property pages and table browse view, showing up as tool-tips above the column name (properties page) or embedded within the header of table in browse view. They can also be shown in a table dump. Please see the relevant configuration directives later on. Also new in release 2.5.0 is a MIME-transformation system which is also based on the following table structure. See Transformations for further information. To use the MIME-transformation system, your column_info table has to have the three new fields 'mimetype', 'transformation', 'transformation_options'. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the table name in $cfg['Servers'][$i]['column_info'] + to update your PRE-2.5.0 Column_comments Table use this: ALTER TABLE `pma_column_comments` ADD `mimetype` VARCHAR( 255 ) NOT NULL , ADD `transformation` VARCHAR( 255 ) NOT NULL , ADD `transformation_options` VARCHAR( 255 ) NOT NULL ; and remember that the Variable in config.inc.php has been renamed from $cfg['Servers'][$i]['column_comments'] to $cfg['Servers'][$i]['column_info'] $cfg['Servers'][$i]['history'] string Since release 2.5.0 you can store your SQL history, which means all queries you entered manually into the phpMyAdmin interface. If you don't want to use a table- based history, you can use the JavaScript-based history. Using that, all your history items are deleted when closing the window. Using $cfg['QueryHistoryMax'] you can specify an amount of history items you want to have on hold. On every login, this list gets cut to the maximum amount. The query history is only available if you use the JavaScript-based query window, see $cfg['QueryFrame']. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the table name in $cfg['Servers'][$i]['history'] $cfg['Servers'][$i]['verbose_check'] boolean Because release 2.5.0 introduced the new MIME-transformation support, the column_info table got enhanced with three new fields. If the above variable is set to TRUE (default) phpMyAdmin will check if you have the latest table structure available. If not, it will emit a warning to the superuser. You can disable this checking behavior by setting the variable to false, which should offer a performance increase. Recommended to set to FALSE, when you are sure, your table structure is up to date. $cfg['Servers'][$i]['AllowRoot'] boolean Whether to allow root access, This is just simplification of rules below. $cfg['Servers'][$i]['AllowDeny']['order'] string If your rule order is empty, then IP authentication is disabled. If your rule order is set to 'deny,allow' then the system applies all deny rules followed by allow rules. Access is allowed by default. Any client which does not match a Deny command or does match an Allow command will be allowed access to the server. If your rule order is set to 'allow,deny' then the system applies all allow rules followed by deny rules. Access is denied by default. Any client which does not match an Allow directive or does match a Deny directive will be denied access to the server. If your rule order is set to 'explicit', the authentication is performed in a similar fashion to rule order 'deny,allow', with the added restriction that your host/username combination must be listed in the allow rules, and not listed in the deny rules. This is the most secure means of using Allow/Deny rules, and was available in Apache by specifying allow and deny rules without setting any order. $cfg['Servers'][$i]['AllowDeny']['rules'] array of strings The general format for the rules is as such: <'allow' | 'deny'> [from] If you wish to match all users, it is possible to use a '%' as a wildcard in the username field. There are a few shortcuts you can use in the ipmask field as well: 'all' -> 0.0.0.0/0 'localhost' -> 127.0.0.1/8 Having an empty rule list is equivalent to either using 'allow % from all' if your rule order is set to 'deny,allow' or 'deny % from all' if your rule order is set to 'allow,deny' or 'explicit'. For the IP matching system, the following work: xxx.xxx.xxx.xxx (an exact IP address) xxx.xxx.xxx.[yyy-zzz] (an IP address range) xxx.xxx.xxx.xxx/nn (CIDR, Classless Inter-Domain Routing type IP addresses) But the following does not work: xxx.xxx.xxx.xx[yyy-zzz] (partial IP address range) $cfg['ServerDefault'] integer If you have more than one server configured, you can set $cfg['ServerDefault'] to any one of them to autoconnect to that server when phpMyAdmin is started, or set it to 0 to be given a list of servers without logging in. If you have only one server configured, $cfg['ServerDefault'] MUST be set to that server. $cfg['OBGzip'] string/boolean Defines whether to use GZip output buffering for increased speed in HTTP transfers. Set to true/false for enabling/disabling. When set to 'auto' (string), phpMyAdmin tries to enable output buffering and will automatically disable it, if your browser has some problems with buffering. IE6 with a certain patch is known to cause data corruption having enabled buffering. $cfg['PersistentConnections'] boolean Whether persistent connections should be used or not (mysql_connect or mysql_pconnect). $cfg['ExecTimeLimit'] integer [number of seconds] Set the number of seconds a script is allowed to run. If seconds is set to zero, no time limit is imposed. This setting is used while importing/exporting dump files but has no effect when PHP is running in safe mode. $cfg['SkipLockedTables'] boolean Mark used tables and make it possible to show databases with locked tables (since 3.23.30). $cfg['ShowSQL'] boolean Defines whether SQL-queries generated by phpMyAdmin should be displayed or not. $cfg['AllowUserDropDatabase'] boolean Defines whether normal users (non-administrator) are allowed to delete their own database or not. If set as FALSE, the link "Drop Database" will not be shown, and even a "DROP DATABASE mydatabase" will be rejected. Quite practical for ISP's with many customers. $cfg['Confirm'] boolean Whether a warning ("Are your really sure...") should be displayed when you're about to lose data. $cfg['LoginCookieRecall'] boolean Define whether the previous login should be recalled or not in cookie authentication mode. $cfg['UseDbSearch'] boolean Define whether the "search string inside database" is enabled or not. $cfg['IgnoreMultiSubmitErrors'] boolean Define whether phpMyAdmin will continue executing a multi-query statement if one of the queries fails. Default is to abort execution. $cfg['VerboseMultiSubmit'] boolean Define whether phpMyAdmin will output the results of each query of a multi-query statement embedded into the SQL output as inline comments. Defaults to TRUE. $cfg['AllowArbitraryServer'] boolean If enabled allows you to login to arbitrary server using cookie auth. NOTE: Please use this carefully, as this may allow to access MySQL servers behind firewall where your http server is placed. $cfg['LeftFrameLight'] boolean Defines whether to use select-based menu and display only the current tables in the left frame (smaller page). Only in Non-Lightmode you can use the feature to display nested folders using $cfg['LeftFrameTableSeparator'] $cfg['LeftFrameTableSeparator'] string Defines a string to be used to nest table spaces. Defaults to '__'. This means if you have tables like 'first__second__third' this will be shown as a three-level hierarchie like: first > second > third. If set to FALSE or empty, the feature is disabled. NOTE: You shall not use this Separator in a table name at the beginning or end of a table name, or multiple times after another without any other characters in between. $cfg['LeftFrameTableLevel'] string Defines how many sublevels should be displayed when splitting up tables by the above Separator. $cfg['ShowTooltip'] boolean Defines whether to display table comment as tool-tip in left frame or not. $cfg['ShowTooltipAliasDB'] boolean If tool-tips are enabled and a DB comment is set, this will flip the comment and the real name. That means, if you have a table called 'user0001' and add the comment 'MyName' on it, you will see the name 'MyName' used consequently in the left frame and the tool-tip shows the real name of the DB. $cfg['ShowTooltipAliasTB'] boolean/string Same as $cfg['ShowTooltipAliasDB'], except this works for table names. When setting this to 'nested', the Alias of the Tablename is only used to split/nest the tables according to the $cfg['LeftFrameTableSeparator'] directive. So only the folder is called like the Alias, the tablename itself stays the real tablename. $cfg['LeftDisplayLogo'] boolean Defines whether to display the phpMyAdmin logo at the top of the left frame or not. Defaults to TRUE. $cfg['LeftDisplayServers'] boolean Defines whether to display a server choice at the top of the left frame or not. Defaults to FALSE. $cfg['DisplayServersList'] boolean Defines whether to display this server choice as links instead of in a drop-down. Defaults to FALSE (drop-down). $cfg['ShowStats'] boolean Defines whether to display space usage and statistics about databases and tables or not. Note that statistics requires at least MySQL 3.23.3 and that, at this date, MySQL doesn't return such information for Berkeley DB tables. $cfg['ShowMysqlInfo'] boolean $cfg['ShowMysqlVars'] boolean $cfg['ShowPhpInfo'] boolean $cfg['ShowChgPassword'] boolean Defines whether to display the "MySQL runtime information", "MySQL system variables", "PHP information" and "Change password " links or not for simple users at the starting main (right) frame. This setting does not check MySQL commands entered directly. Please note that to block the usage of phpinfo() in scripts, you have to put this in your php.ini: disable_functions = phpinfo() Also note that enabling the "Change password " link has no effect with "config" authentication mode: because of the hard coded password value in the configuration file, end users can't be allowed to change their passwords. $cfg['SuggestDBName'] boolean Defines whether to suggest a database name on the "Create Database" form or to keep the textfield empty. $cfg['ShowBlob'] boolean Defines whether BLOB fields are shown when browsing a table's content or not. $cfg['NavigationBarIconic'] boolean Defines whether navigation bar buttons contain text or symbols only. $cfg['ShowAll'] boolean Defines whether an user should be displayed a "show all (records)" button in browse mode or not. $cfg['MaxRows'] integer Number of rows displayed when browsing a result set. If the result set contains more rows, Previous/Next links will be shown. $cfg['Order'] string [DESC|ASC|SMART] Defines whether fields are displayed in ascending (ASC) order, in descending (DESC) order or in a "smart" (SMART) order - I.E. descending order for fields of type TIME, DATE, DATETIME & TIMESTAMP, ascending order else- by default. $cfg['ProtectBinary'] boolean or string Defines whether BLOB or BINARY fields are protected from edition when browsing a table's content or not. Valid values are: - FALSE to allow edition of all fields; - blob to allow edition of all fields except BLOBS; - all to disallow edition of all BINARY or BLOB fields. $cfg['ShowFunctionFields'] boolean Defines whether MySQL functions fields should be displayed or not in edit/insert mode. $cfg['CharEditing'] string Defines which type of editing controls should be used for CHAR and VARCHAR fields. Possible values are: + input - this allows to limit size of text to size of field in MySQL, but has problems with newlines in fields + textarea - no problems with newlines in fields, but also no length limitations Default is old behavior so input. $cfg['ZipDump'] boolean $cfg['GZipDump'] boolean $cfg['BZipDump'] boolean Defines whether to allow the use of zip/GZip/BZip2 compression when creating a dump file or not. $cfg['CompressOnFly'] boolean Defines whether to allow on the fly compression for GZip/BZip2 compressed exports. This doesn't affect smaller dumps and allows to create larger dumps, that won't fit otherwise in memory due to php memory limit. Produced files contain more GZip/BZip2 headers, but all normal programs handle this correctly. $cfg['LightTabs'] string If set to True, do use less graphically intense tabs on the top of the mainframe. $cfg['PropertiesIconic'] string If set to True, will display icons instead of text for db and table properties links (like 'Browse', 'Select', 'Insert', ...). Can be set to 'both' if you want icons AND text. When set to False, will only show text. $cfg['PropertiesNumColumns'] integer How many columns will be utilized to display the tables on the database property view? Default is 1 column. When setting this to a value larger than 1, the type of the database will be omitted for more display space. $cfg['DefaultTabServer'] string Defines the tab displayed by default on server view. Possible values: "main.php" (recommended for multi-user setups), "server_databases.php","server_status.php","server_variables.php", "server_privileges.php" or "server_processlist.php". $cfg['DefaultTabDatabase'] string Defines the tab displayed by default on database view. Possible values: "db_details_structure.php", "db_details.php" or "db_search.php". $cfg['DefaultTabTable'] string Defines the tab displayed by default on table view. Possible values: "tbl_properties_structure.php", "tbl_properties.php", "tbl_select.php" or "tbl_change.php". $cfg['MySQLManualBase'] string If set to an URL which points to the MySQL documentation (type depends on $cfg['MySQLManualType']), appropriate help links are generated. See MySQL Documentation page for more information about MySQL manuals and their types. $cfg['MySQLManualType'] string Type of MySQL documentation: + old - old style used in phpMyAdmin 2.3.0 and earlier + searchable - "Searchable, with user comments" + chapters - "HTML, one page per chapter" + big - "HTML, all on one page" + none - do not show documentation links $cfg['DefaultLang'] string Defines the default language to use, if not browser-defined or user-defined. See the select_lang.lib.php script to know the valid values for this setting. $cfg['Lang'] string Force: always use this language (must be defined in the select_lang.lib.php script). $cfg['DefaultCharset'] string Default character set to use for recoding of MySQL queries. This must be enabled and it's described by $cfg['AllowAnywhereRecoding'] option. You can give here any character set which is in $cfg['AvailableCharsets'] array and this is just default choice, user can select any of them. $cfg['AllowAnywhereRecoding'] boolean Allow character set recoding of MySQL queries. You need recode or iconv support (compiled in or module) in PHP to allow MySQL queries recoding and used language file must have it enabled (by default only these which are in Unicode, just to avoid losing some characters). $cfg['RecodingEngine'] string You can select here which functions will be used for character set conversion. Possible values are: + auto - automatically use available one (first is tested iconv, then recode) + iconv - use iconv or libiconv functions + recode - use recode_string function Default is auto. $cfg['IconvExtraParams'] string Specify some parameters for iconv used in charset conversion. See iconv documentation for details. $cfg['AvailableCharsets'] array Available character sets for MySQL conversion. You can add your own (any of supported by recode/iconv) or remove these which you don't use. Character sets will be shown in same order as here listed, so if you frequently use some of these move them to the top. $cfg['GD2Available'] string Specifies whether GD >= 2 is available. If yes it can be used for MIME transformations. Possible values are: + auto - automatically detect, this is a bit expensive operation for php < 4.3.0 so it is preferred to change this according to your server real possibilities + yes - GD 2 functions can be used + no - GD 2 function cannot be used Default is auto. $cfg['LeftWidth'] integer Left frame width in pixel. See themes/themename/layout.inc.php. $cfg['LeftBgColor'] string [HTML color] $cfg['RightBgColor'] string [HTML color] The background colors (HTML) used for both the frames. See themes/themename/layout.inc.php. $cfg['RightBgImage'] string The URI of the background image used for the right frame. It must be an absolute URI. See themes/themename/layout.inc.php. $cfg['LeftPointerColor'] string [HTML color] The color (HTML) used for the pointer in the left frame (does not work with Netscape 4). See themes/themename/layout.inc.php. $cfg['LeftPointerEnable'] boolean A value of TRUE activates the left pointer (when LeftFrameLight is FALSE). $cfg['Border'] integer The size of a table's border. See themes/themename/layout.inc.php. $cfg['ThBgcolor'] string [HTML color] The color (HTML) used for table headers. See themes/themename/layout.inc.php. $cfg['BgcolorOne'] string [HTML color] The color (HTML) #1 for table rows. See themes/themename/layout.inc.php. $cfg['BgcolorTwo'] string [HTML color] The color (HTML) #2 for table rows. See themes/themename/layout.inc.php. $cfg['BrowsePointerColor'] string [HTML color] $cfg['BrowseMarkerColor'] string [HTML color] The colors (HTML) uses for the pointer and the marker in browse mode (does not work with Netscape 4). The former feature highlights the row over which your mouse is passing and the latter lets you visually mark/unmark rows by clicking on them. See themes/themename/layout.inc.php. $cfg['BrowsePointerEnable'] boolean Whether to activate the browse pointer or not. $cfg['BrowseMarkerEnable'] boolean Whether to activate the browse marker or not. $cfg['TextareaCols'] integer $cfg['TextareaRows'] integer $cfg['CharTextareaCols'] integer $cfg['CharTextareaRows'] integer Number of columns and rows for the textareas. This value will be emphasized (*2) for SQL query textareas and (*1.25) for SQL textareas inside the query window. The Char* values are used for CHAR and VARCHAR editing (if configured via $cfg['CharEditing']). $cfg['LongtextDoubleTextarea'] boolean Defines whether textarea for LONGTEXT fields should have double size. $cfg['TextareaAutoSelect'] boolean Defines if the whole textarea of the query box will be selected on click. $cfg['CtrlArrowsMoving'] boolean Enable Ctrl+Arrows (Option+Arrows in Safari) moving between fields when editing? $cfg['LimitChars'] integer Maximal number of Chars showed in any non-numeric field on browse view. Can be turned off by a toggle button on the browse page. $cfg['ModifyDeleteAtLeft'] boolean $cfg['ModifyDeleteAtRight'] boolean Defines the place where modify and delete links would be put when tables contents are displayed (you may have them displayed both at the left and at the right). "Left" and "right" are parsed as "top" and "bottom" with vertical display mode. $cfg['DefaultDisplay'] string $cfg['HeaderFlipType'] string There are 3 display modes: horizontal, horizontalflipped and vertical. Define which one is displayed by default. The first mode displays each row on a horizontal line, the second rotates the headers by 90 degrees, so you can use descriptive headers even though fields only contain small values and still print them out. The vertical mode sorts each row on a vertical lineup. The HeaderFlipType can be set to 'css' or 'faked'. When using 'css' the rotation of the header for horizontalflipped is done via CSS. If set to 'faked' PHP does the transformation for you, but of course this does not look as good as CSS. $cfg['DefaultPropDisplay'] string When editing/creating new columns in a table all fields normally get lined up one field a line. (default: 'horizontal'). If you set this to 'vertical' you can have each field lined up vertically beneath each other. You can save up a lot of place on the horizontal direction and no longer have to scroll. $cfg['ShowBrowseComments'] boolean $cfg['ShowPropertyComments'] boolean By setting the corresponding variable to TRUE you can enable the display of column comments in Browse or Property display. In browse mode, the comments are show inside the header. In property mode, comments are displayed using a CSS-formatted dashed-line below the name of the field. The comment is shown as a tool-tip for that field. $cfg['UploadDir'] string The name of the directory, where SQL files have been uploaded by other means than phpMyAdmin (for example, ftp). Those files are available under a drop-down box when you click the database name, then the SQL tab. Please note that the file names must have the suffix ".sql" (or ".sql.bz2" or ".sql.gz" if support for compressed formats is enabled). This feature is useful when your file is too big to be uploaded via HTTP, or when file uploads are disabled in PHP. Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. See also FAQ 1.16 for alternatives. $cfg['docSQLDir'] string The name of the directory, where docSQL files can be uploaded for import into phpMyAdmin. Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. $cfg['SaveDir'] string The name of the directory, where dumps can be saved. Please note that the directory has to be writable for user running webserver. Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. $cfg['TempDir'] string The name of the directory, where temporary files can be stored. This is needed for native MS Excel export, see FAQ 6.23 $cfg['Export'] array In this array are defined default parameters for export, names of items are similar to texts seen on export page, so you can easily identify what they mean. $cfg['RepeatCells'] integer Repeat the headers every X cells, or 0 to deactivate. $cfg['QueryFrame'] boolean $cfg['QueryFrameJS'] boolean $cfg['QueryWindowWidth'] integer $cfg['QueryWindowHeight'] integer $cfg['QueryHistoryDB'] boolean $cfg['QueryWindowDefTab'] string $cfg['QueryHistoryMax'] integer All those variables affect the query box feature. When $cfg['QueryFrame'] is set to true, a link or icon is displayed on the left panel. Clicking on it opens the query box, a direct interface to enter SQL queries. When $cfg['QueryFrameJS'] is set to true, clicking on that link opens the query box, a new custom sized browser window ($cfg['QueryWindowWidth'], $cfg['QueryWindowWidth'] - both integers for the size in pixels). Also, a click on [Edit] from the results page (in the "Showing Rows" section) opens the query box and puts the current query inside it. If set to false, clicking on the link only opens the SQL input in the main frame. The usage of the JavaScript query window is recommended if you have a JavaScript enabled browser. Basic functions are used to exchange quite a few variables, so most 4th generation browsers should be capable to use that feature. It currently is only tested with Internet Explorer 6 and Mozilla 1.x. If $cfg['QueryHistoryDB'] is set to TRUE, all your Queries are logged to a table, which has to be created by you (see $cfg['Servers'][$i]['history']). If set to FALSE, all your queries will be appended to the form, but only as long as your window is opened they remain saved. When using the JavaScript based query window, it will always get updated when you click on a new table/db to browse and will focus if you click on "Edit SQL" after using a query. You can suppress updating the query window by checking the box "Do not overwrite this query from outside the window" below the query textarea. Then you can browse tables/databases in the background without losing the contents of the textarea, so this is especially useful when composing a query with tables you first have to look in. The checkbox will get automatically checked whenever you change the contents of the textarea. Please uncheck the button whenever you definitely want the query window to get updated even though you have made alterations. If $cfg['QueryHistoryDB'] is set to TRUE you can specify the amount of saved history items using $cfg['QueryHistoryMax']. The query window also has a custom tabbed look to group the features. Using the variable $cfg['QueryWindowDefTab'] you can specify the default tab to be used when opening the query window. It can be set to either 'sql', 'files', 'history' or 'full'. $cfg['BrowseMIME'] boolean Enable MIME-transformations. $cfg['MaxExactCount'] integer Determines for how large tables phpMyAdmin should get exact row count by SELECT COUNT. If approximate row count is smaller than this value, SELECT COUNT will be used, otherwise only value returned by SHOW TABLE STATUS. This has currently an impact only on InnoDB tables. $cfg['WYSIWYG-PDF'] boolean Utilizes a WYSIWYG editing control to easily place elements of a PDF page. By clicking on the button 'toggle scratchboard' on the page where you edit x/y coordinates of those elements you can activate a scratchboard where all your elements are placed. By clicking on an element, you can move them around in the pre-defined area and the x/y coordinates will get updated dynamically. Likewise, when entering a new position directly into the input field, the new position in the scratchboard changes after your cursor leaves the input field. You have to click on the 'OK'-button below the tables to save the new positions. If you want to place a new element, first add it to the table of elements and then you can drag the new element around. By changing the paper size and the orientation you can change the size of the scratchboard as well. You can do so by just changing the dropdown field below, and the scratchboard will resize automatically, without interfering with the current placement of the elements. If ever an element gets out of range you can either enlarge the paper size or click on the 'reset' button to place all elements below each other. NOTE: You have to use a recent browser like IE6 or Mozilla to get this control to work. The basic Drag&Drop script functionality was kindly borrowed from www.youngpup.net and is underlying so specific license. $cfg['NaturalOrder'] boolean Sorts database and table names according to natural order (for example, t1, t2, t10). Currently implemented in the left panel (Light mode) and in Database view, for the table list. $cfg['ShowHttpHostTitle'] boolean Shows the HTTP host name in window's title bar. $cfg['SetHttpHostTitle'] string If $cfg['ShowHttpHostTitle'] is TRUE, it shows the real HTTP host name, unless an alternate name is set here. $cfg['ErrorIconic'] boolean Uses icons for warnings, errors and informations. $cfg['MainPageIconic'] boolean Uses icons on main page in lists, on right panel top menu and menu tabs. $cfg['ReplaceHelpImg'] boolean Shows a help button instead of the "Documentation" message. $cfg['ThemePath'] string If theme manager is active, use this as the path of the subdirectory containing all the themes. $cfg['ThemeManager'] boolean Enables user-selectable themes. See FAQ 2.7. $cfg['ThemeDefault'] string The default theme (a subdirectory under cfg['ThemePath']). $cfg['DefaultQueryTable'] string $cfg['DefaultQueryDatabase'] string Default queries that will be displayed in query boxes when user didn't specify any. Use %d for database name, %t for table name and %f for a comma separated list of field names. Note that %t and %f are only applicable to $cfg['DefaultQueryTable']. $cfg['SQP']['fmtType'] string [html|none] The main use of the new SQL Parser is to pretty-print SQL queries. By default we use HTML to format the query, but you can disable this by setting this variable to 'none'. $cfg['SQP']['fmtInd'] float $cfg['SQP']['fmtIndUnit'] string [em|px|pt|ex] For the pretty-printing of SQL queries, under some cases the part of a query inside a bracket is indented. By changing $cfg['SQP']['fmtInd'] you can change the amount of this indent. Related in purpose is $cfg['SQP']['fmtIndUnit'] which specifies the units of the indent amount that you specified. This is used via stylesheets. $cfg['SQP']['fmtColor'] array of string tuples This array is used to define the colours for each type of element of the pretty-printed SQL queries. The tuple format is class => [HTML colour code | empty string] If you specify an empty string for the color of a class, it is ignored in creating the stylesheet. You should not alter the class names, only the colour strings. Class name key: + comment Applies to all comment sub-classes + comment_mysql Comments as "#...\n" + comment_ansi Comments as "-- ...\n" + comment_c Comments as "/*...*/" + digit Applies to all digit sub-classes + digit_hex Hexadecimal numbers + digit_integer Integer numbers + digit_float Floating point numbers + punct Applies to all punctuation sub-classes + punct_bracket_open_round Opening brackets"(" + punct_bracket_close_round Closing brackets ")" + punct_listsep List item Separator "," + punct_qualifier Table/Column Qualifier "." + punct_queryend End of query marker ";" + alpha Applies to all alphabetic classes + alpha_columnType Identifiers matching a column type + alpha_columnAttrib Identifiers matching a database/table/column attribute + alpha_functionName Identifiers matching a MySQL function name + alpha_reservedWord Identifiers matching any other reserved word + alpha_variable Identifiers matching a SQL variable "@foo" + alpha_identifier All other identifiers + quote Applies to all quotation mark classes + quote_double Double quotes " + quote_single Single quotes ' + quote_backtick Backtick quotes ` $cfg['SQLValidator']['use'] boolean phpMyAdmin now supports use of the Mimer SQL Validator service, as originally published on Slashdot. For help in setting up your system to use the service, see the FAQ #6.14. $cfg['SQLValidator']['username'] string $cfg['SQLValidator']['password'] string The SOAP service allows you to login with anonymous and any password, so we use those by default. Instead, if you have an account with them, you can put your login details here, and it will be used in place of the anonymous login. $cfg['DBG']['enable'] boolean DEVELOPERS ONLY! Enable the DBG extension for debugging phpMyAdmin. Required for profiling the code. For help in setting up your system to this, see the Developers section. $cfg['DBG']['profile']['enable'] boolean DEVELOPERS ONLY! Enable profiling support for phpMyAdmin. This will append a chunk of data to the end of every page displayed in the main window with profiling statistics for that page. You may need to increase the maximum execution time for this to complete successfully. $cfg['DBG']['profile']['threshold'] float (units in milliseconds) DEVELOPERS ONLY! When profiling data is displayed, this variable controls the threshold of display for any profiling data, based on the average time each time has taken. If it is over the threshold it is displayed, otherwise it is not displayed. This takes a value in milliseconds. In most cases you don't need to edit this. $cfg['ColumnTypes'] array All possible types of a MySQL column. In most cases you don't need to edit this. $cfg['AttributeTypes'] array Possible attributes for fields. In most cases you don't need to edit this. $cfg['Functions'] array A list of functions MySQL supports. In most cases you don't need to edit this. $cfg['RestrictColumnTypes'] array Mapping of column types to meta types used for preferring displayed functions. In most cases you don't need to edit this. $cfg['RestrictFunctions'] array Functions preferred for column meta types as defined in $cfg['RestrictColumnTypes']. In most cases you don't need to edit this. $cfg['DefaultFunctions'] array Functions selected by default when insering/changing row, Functions are defined for meta types from $cfg['RestrictColumnTypes'] and for first_timestamp, which is used for first timestamp column in table. $cfg['NumOperators'] array Operators available for search operations on numeric and date fields. $cfg['TextOperators'] array Operators available for search operations on character fields. Note that we put LIKE by default instead of LIKE %...%, to avoid unintended performance problems in case of huge tables. $cfg['EnumOperators'] array Operators available for search operations on enum fields. $cfg['NullOperators'] array Additionnal operators available for search operations when the field can be null. Transformations Introduction - Usage - File structure [1. Introduction] To enable transformations, you have to setup the column_info table and th e proper directives. Please see the Configuration section on how to do s o. You can apply different transformations to the contents of each field. Th e transformation will take the content of each field and transform it wi th certain rules defined in the selected transformation. Say you have a field 'filename' which contains a filename. Normally you w ould see in phpMyAdmin only this filename. Using transformations you can transform that filename into a HTML link, so you can click inside of th e phpMyAdmin structure on the field's link and will see the file display ed in a new browser window. Using transformation options you can also sp ecify strings to append/prepend to a string or the format you want the o utput stored in. For a general overview of all available transformations and their options , you can consult your //libraries/ transformations/overview.php installation. For a tutorial on how to effectively use transformations, see our Link se ction on the official phpMyAdmin-homepage. [2. Usage] Go to your tbl_properties.inc.php page (i.e. reached through clicking on the 'properties' link for a table). There click on "Change" (or change i con) and there you will see three new fields at the end of the line. The y are called 'MIME-type', 'Browser transformation' and 'Transformation o ptions'. * The field 'MIME-type' is a dropdown field. You have the options to le ave that field empty or to use 'auto' [this feature is not yet available]. Please note that transformations are inactive as long as no MIME-type is selected. * The field 'Browser transformation' is a drop-down field. You can choo se from a hopefully growing amount of pre-defined transformations. See below for information on how to build your own transformation. There are global transformations and mimetype-bound transformations. Global transformations can be used for any mimetype. They will take the mimetype, if necessary, into regard. Mimetype-bound transformations usually only operate on a certain mimetype. There are transformations which operate on the main mimetype (like 'image'), which will most likely take the subtype into regard, and those who only operate on a specific subtype (like 'image/jpeg'). You can use transformations on mimetypes for which the function was not defined for. There is no security check for you selected the right transformation, so take care of what the output will be like. * The field 'Transformation options' is a free-type textfield. You have to enter transform-function specific options here. Usually the transforms can operate with default options, but it is generally a good idea to look up the overview to see which options are necessary. Much like the ENUM/SET-Fields, you have to split up several options using the format 'a','b','c',...(NOTE THE MISSING BLANKS). This is because internally the options will be parsed as an array, leaving the first value the first element in the array, and so forth. If you want to specify a MIME character set you can define it in the transformation_options. You have to put that outside of the pre-defined options of the specific mime-transform, as the last value of the set. Use the format "'; charset=XXX'". If you use a transform, for which you can specify 2 options and you want to append a character set, enter "'first parameter','second parameter','charset=us-ascii'". You can, however use the defaults for the parameters: "'','','charset=us-ascii'". [3. File structure] All mimetypes and their transformations are defined through single files in the directory 'libraries/transformations/'. They are stored in files to ease up customization and easy adding of new transformations. Because the user cannot enter own mimetypes, it is kept sure that transfo rmations always work. It makes no sense to apply a transformation to a m imetype, the transform-function doesn't know to handle. One can, however, use empty mime-types and global transformations which s hould work for many mimetypes. You can also use transforms on a differen t mimetype they where built for, but pay attention to option usage as we ll as what the transformation does to your field. There is a basic file called 'global.inc.php'. This function can be inclu ded by any other transform function and provides some basic functions. There are 5 possible file names: 1. A mimetype+subtype transform: [mimetype]_[subtype]__[transform].inc.php Please not that mimetype and subtype are separated via '_', which shall not be contained in their names. The transform function/filename may contain only characters which cause no problems in the file system as well as the PHP function naming convention. The transform function will the be called 'PMA_transform_[mimetype]_[subtype]__[transform]()'. Example: text_html__formatted.inc.php PMA_transform_text_html__formatted() 2. A mimetype (w/o subtype) transform: [mimetype]__[transform].inc.php Please note that there are no single '_' characters. The transform function/filename may contain only characters which cause no problems in the file system as well as the PHP function naming convention. The transform function will the be called 'PMA_transform_[mimetype]__[transform]()'. Example: text__formatted.inc.php PMA_transform_text__formatted() 3. A mimetype+subtype without specific transform function [mimetype]_[subtype].inc.php Please note that there are no '__' characters in the filename. Do not use special characters in the filename causing problems with the file system. No transformation function is defined in the file itself. Example: text_plain.inc.php (No function) 4. A mimetype (w/o subtype) without specific transform function [mimetype].inc.php Please note that there are no '_' characters in the filename. Do not use special characters in the filename causing problems with the file system. No transformation function is defined in the file itself. Example: text.inc.php (No function) 5. A global transform function with no specific mimetype global__[transform].inc.php The transform function will the be called 'PMA_transform_global__[transform]()'. Example: global__formatted PMA_transform_global__formatted() So generally use '_' to split up mimetype and subtype, and '__' to provid e a transform function. All filenames containing no '__' in themselves are not shown as valid tra nsform functions in the dropdown. Please see the libraries/transformations/TEMPLATE file for adding your ow n transform function. See the libraries/transformations/TEMPLATE_MIMETYP E for adding a mimetype without a transform function. Also note the intr oduction of a function description in the language files. For each funct ion a $strTransformation_[filename without .inc.php] has to exist. You can use the template generator to generate new functions and entries in the language file. To create a new transform function please see libraries/transformations/t emplate_generator.sh. To create a new, empty mimetype please see librari es/transformations/template_generator_mimetype.sh. A transform function always gets passed three variables: 1. $buffer - Contains the text inside of the column. This is the text, y ou want to transform. 2. $options - Contains any user-passed options to a transform function a s an array. 3. $meta - Contains an object with field information to your column. The data is drawn from the output of the mysql_fetch_field() function. This means, all object properties described on the manual page are available in this variable and can be used to transform a field accordingly to unsigned/zerofill/not_null/... properties. The $meta->mimetype variable contains the original MIME-type of the field (i.e. 'text/plain', 'image/jpeg' etc.) FAQ - Frequently Asked Questions Server - Configuration - Limitations - Multi-user - Browsers - Usage tips - Project - Security Please have a look at our Link section on the official phpMyAdmin homepag e for in-depth coverage of phpMyAdmin's features and/or interface. [1. Server] [1.1] I'm running PHP 4+ and my server is crashing each time a specific action is required or phpMyAdmin sends a blank page or a page full of cryptic characters to my browser, what can I do? There are some known PHP bugs with output buffering and compression. Try to set the $cfg['OBGzip'] directive to FALSE in your config.inc.php f ile and the zlib.output_compression directive to Off in your php configu ration file. Furthermore, we know about such problems connected to the release candida tes of PHP 4.2.0 (tested with PHP 4.2.0 RC1 to RC4) together with MS Int ernet Explorer. Please upgrade to the release version PHP 4.2.0. [1.2] My Apache server crashes when using phpMyAdmin. You should first try the latest versions of Apache (and possibly MySQL). See also the other FAQ entry about PHP bugs with output buffering. If your server keeps crashing, please ask for help in the various Apache support groups. [1.3] I'm running phpMyAdmin with "cookie" authentication mode under PHP 4.2.0 or 4.2.1 loaded as an Apache 2+ module but can't enter the script: I'm always displayed the login screen. This is a known PHP bug (see this bug report) from the official PHP bug d atabase. It means there is and won't be any phpMyAdmin fix against it be cause there is no way to code a fix. [1.4] Using phpMyAdmin on IIS, I'm displayed the error message: "The specified CGI application misbehaved by not returning a complete set of HTTP headers...". You just forgot to read the install.txt file from the php distribution. H ave a look at the last message in this bug report from the official PHP bug database. [1.5] Using phpMyAdmin on IIS, I'm facing crashes and/or many error messages with the HTTP or advanced authentication mode. This is a known problem with the PHP ISAPI filter: it's not so stable. Fo r some more information and complete testings see the messages posted by AndrH B. aka "djdeluxe76" in this thread from the phpWizard forum. Please use instead the cookie authentication mode. [1.6] I can't use phpMyAdmin on PWS: nothing is displayed! This seems to be a PWS bug. Filippo Simoncini found a workaround (at this time there is no better fix): remove or comment the DOCTYPE declaration s (2 lines) from the scripts header.inc.php, header_printview.inc.php, i ndex.php, left.php and libraries/common.lib.php. [1.7] How can I GZip or Bzip a dump or a CSV export. It does not seem to work. These features are based on the gzencode() and bzcompress() PHP functions to be more independent of the platform (Unix/Windows, Safe Mode or not, and so on). So, you must have PHP4 >= 4.0.4 and Zlib/Bzip2 support (--w ith-zlib and --with-bz2). We faced PHP crashes when trying to download a dump with MS Internet Expl orer when phpMyAdmin is run with a release candidate of PHP 4.2.0. In th is case you should switch to the release version of PHP 4.2.0. [1.8] I cannot insert a text file in a table, and I get an error about safe mode being in effect. Your uploaded file is saved by PHP in the "upload dir", as defined in php .ini by the variable upload_tmp_dir (usually the system default is /tmp) . We recommend the following setup for Apache servers running in safe mode, to enable uploads of files while being reasonably secure: * create a separate directory for uploads: mkdir /tmp/php * give ownership to the Apache server's user.group: chown apache.apache /tmp/php * give proper permission: chmod 600 /tmp/php * put upload_tmp_dir = /tmp/php in php.ini * restart Apache [1.9] I'm having troubles when uploading files. In general file uploads don't work on my system and uploaded files have a Content-Type: header in the first line. It's not really phpMyAdmin related but RedHat 7.0. You have a RedHat 7.0 and you updated your PHP RPM to php-4.0.4pl1-3.i386.rpm, didn't you? So the problem is that this package has a serious bug that was corrected ages ago in PHP (2001-01-28: see PHP's bug tracking system for more deta ils). The problem is that the bugged package is still available though i t was corrected (see RedHat's BugZilla for more details). So please download the fixed package (4.0.4pl1-9) and the problem should go away. And that fixes the \r\n problem with file uploads! [1.10] I'm having troubles when uploading files with phpMyAdmin running on a secure server. My browser is Internet Explorer and I'm using the Apache server. As suggested by "Rob M" in the phpWizard forum, add this line to your htt pd.conf: SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown It seems to clear up many problems between Internet Explorer and SSL. [1.11] I get an 'open_basedir restriction' while uploading a file from the query box. Since version 2.2.4, phpMyAdmin supports servers with open_basedir restri ctions. Assuming that the restriction allows you to open files in the cu rrent directory ('.'), all you have to do is create a 'tmp' directory un der the phpMyAdmin install directory, with permissions 777 and the same owner as the owner of your phpMyAdmin directory. The uploaded files will be moved there, and after execution of your SQL commands, removed. [1.12] I have lost my MySQL root password, what can I do? The MySQL manual explains how to reset the permissions. [1.13] I get an error 'No SQL query' when trying to execute a bookmark. If PHP does not have read/write access to its upload_tmp_dir, it cannot a ccess the uploaded query. [1.14] I get an error 'No SQL query' when trying to submit a query from the convenient text area. Check the post_max_size directive from your PHP configuration file and tr y to increase it. [1.15] I have problems with mysql.user field names. In older MySQL versions, the User and Password fields were named user and password. Please modify your field names to align with current standard s. [1.16] I cannot upload big dump files (memory, http or timeout problems). The first things to check (or ask your host provider to check) are the va lues of upload_max_filesize, memory_limit and post_max_size in the php.i ni configuration file. All of these three settings limit the maximum siz e of data that can be submitted and handled by PHP. One user also said t hat post_max_size and memory_limit need to be larger than upload_max_fil esize. There exist several workarounds if your upload is too big or your hosting provider is unwilling to change the settings: * Look at the $cfg['UploadDir'] feature. This allows one to upload a fi le to the server via scp, ftp, or your favorite file transfer method. PhpMyAdmin is then able to import the files from the temporary directory. More information is available in the Configuration section of this document. * Using a utility (such as BigDump) to split the files before uploading . We cannot support this or any third party applications, but are aware of users having success with it. * If you have shell (command line) access, use MySQL to import the file s directly. You can do this by issuing the "source" command from within MySQL: source filename.sql. [1.17] Which MySQL versions does phpMyAdmin support? All MySQL versions from 3.23.32 till 5.0 (except for 4.1.0 and 4.1.1) are fully supported. Please note that the older your MySQL version is, the more limitations you will have to face. phpMyAdmin may connect to your MySQL server using php's classic MySQL ext ension as well as the improved MySQL extension (MySQLi) that is availabl e in php 5.0. Either way, the developers of both extensions recommend to use the classi c extension for MySQL 4.0 and below and MySQLi for MySQL 4.1 and newer. When compiling php, we strongly recommend that you manually link the MySQ L extension of your choice to a MySQL client library of at least the sam e minor version since the one that is bundled with some php distribution s is rather old and might cause problems (see also FAQ 1.17a). MySQL 5.1 is not yet supported. [1.17a] I cannot connect to the MySQL server. It always returns the error message, "Client does not support authentication protocol requested by server; consider upgrading MySQL client" You tried to access MySQL with an old MySQL client library. The version o f your MySQL client library can be checked in your phpinfo() output. In general, it should have at least the same minor version as your server - as mentioned in FAQ 1.17. The only way to fix this problem is manually compiling php and its MySQL extension against a current MySQL client library. If you still face this problem, please compile your MySQL client library against the same or a newer MySQL release. [1.18] I'm running MySQL <= 4.0.1 having lower_case_table_names set to 1. If I create a new table with a capital letter in its name it is changed to lowercase as it should. But if I try to DROP this table MySQL is unable to find the corresponding file. This is a bug of MySQL <= 4.0.1. Please upgrade to at least MySQL 4.0.2 o r turn off your lower_case_table_names directive. [1.19] I can't run the "display relations" feature because the script seems not to know the font face I'm using! The "FPDF" library we're using for this feature requires some special fil es to use font faces. Please refers to the FPDF manual to build these files. [1.20] I receive the error "cannot load MySQL extension, please check PHP Configuration". To connect to a MySQL server, PHP needs a set of MySQL functions called " MySQL extension". This extension may be part of the PHP distribution (co mpiled-in), otherwise it needs to be loaded dynamically. Its name is pro bably mysql.so or php_mysql.dll. phpMyAdmin tried to load the extension but failed. Usually, the problem is solved by installing a software package called "P HP-MySQL" or something similar. [1.21] I am running the CGI version of PHP under Unix, and I cannot login using cookie auth. In php.ini, set mysql.max_links higher than 1. [1.22] I don't see the "Location of text file" field, so I cannot upload. This is most likely because in php.ini, your file_uploads parameter is no t set to "on". [1.23] I'm running MySQL on a Win32 machine. Each time I create a new table the table and field names are changed to lowercase! This happens because the MySQL directive lower_case_table_names defaults to 1 (ON) in the Win32 version of MySQL. You can change this behavior by simply changing the directive to 0 (OFF): Just edit your my.ini file that should be located in your Windows directo ry and add the following line to the group [mysqld]: set-variable = lower_case_table_names=0 Next, save the file and restart the MySQL service. You can always check t he value of this directive using the query SHOW VARIABLES LIKE 'lower_case_table_names'; [1.24] Some characters are being truncated in my queries, or I get characters randomly added. I am running PHP 4.2.3. This is a PHP 4.2.3 bug. [1.25] I am running Apache with mod_gzip-1.3.26.1a on Windows XP, and I get problems, such as undefined variables when I run a SQL query. A tip from Jose Fandos: put a comment on the following two lines in httpd .conf, like this: # mod_gzip_item_include file \.php$ # mod_gzip_item_include mime "application/x-httpd-php.*" as this version of mod_gzip on Apache (Windows) has problems handling PHP scripts. Of course you have to restart Apache. [1.26] I just installed phpMyAdmin in my document root of IIS but I get the error "No input file specified" when trying to run phpMyAdmin. This is a permission problem. Right-click on the phpmyadmin folder and ch oose properties. Under the tab Security, click on "Add" and select the u ser "IUSR_machine" from the list. Now set his permissions and it should work. [1.27] I get empty page when I want to view huge page (eg. db_details_structure.php with plenty of tables). This is a PHP bug that occur when GZIP output buffering is enabled. If yo u turn off it (by $cfg['OBGzip'] = FALSE in config.inc.php), it should w ork. This bug will be fixed in PHP 5.0.0. [1.28] My MySQL server sometimes refuses queries and returns the message 'Errorcode: 13'. What does this mean? This can happen due to a MySQL bug when having database / table names wit h upper case characters although lower_case_table_names is set to 1. To fix this, turn off this directive, convert all database and table names to lower case and turn it on again. Alternatively, there's a bug-fix ava ilable starting with MySQL 3.23.56 / 4.0.11-gamma. [1.29] When I create a table or modify a field, I get an error and the fields are duplicated. It is possible to configure Apache in such a way that PHP has problems in terpreting .php files. The problems occur when two different (and conflicting) set of directives are used: SetOutputFilter PHP SetInputFilter PHP & AddType application/x-httpd-php .php In the case we saw, one set of directives was in /etc/httpd/conf/httpd.co nf, while the other set was in /etc/httpd/conf/addon-modules/php.conf. The recommended way is with AddType, so just comment out the first set of lines and restart Apache: #SetOutputFilter PHP #SetInputFilter PHP [1.30] I get the error "left.php: Missing hash". This problem is known to happen when the server is running Turck MMCache but upgrading MMCache to version 2.3.21 solves the problem. [1.31] Does phpMyAdmin support php5? Yes. However, phpMyAdmin needs to be backwards compatible to php4. This is why you won't be able to run phpMyAdmin having enabled E_STRICT in your err or_reporting settings. [1.32] Can I use HTTP authentication with IIS? Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in ISAPI mode under IIS 5.1. 1. In your php.ini file, set cgi.rfc2616_headers = 0 2. In Web Site Properties -> File/Directory Security -> Anonymous Access dialog box, check the Anonymous access checkbox and uncheck any other checkboxes (i.e. uncheck Basic authentication, Integrated Windows authentication, and Digest if it's enabled.) Click OK. 3. In Custom Errors, select the range of 401;1 through 401;5 and click t he Set to Default button. [2. Configuration] [2.1] The error message "Warning: Cannot add header information - headers already sent by ..." is displayed, what's the problem? Edit your config.inc.php or .php file and ensure there is nothing (I.E. n o blank lines, no spaces, no characters...) neither before the tag at the end. [2.2] phpMyAdmin can't connect to MySQL. What's wrong? Either there is an error with your PHP setup or your username/password is wrong. Try to make a small script which uses mysql_connect and see if i t works. If it doesn't, it may be you haven't even compiled MySQL suppor t into PHP. [2.3] The error message "Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (111)..." is displayed. What can I do? For RedHat users, Harald Legner suggests this on the mailing list: On my RedHat-Box the socket of MySQL is /var/lib/mysql/mysql.sock. In you r php.ini you will find a line mysql.default_socket = /tmp/mysql.sock change it to mysql.default_socket = /var/lib/mysql/mysql.sock Then restart apache and it will work. Here is a fix suggested by Brad Ummer in the phpwizard forum: * First, you need to determine what socket is being used by MySQL. To do this, telnet to your server and go to the MySQL bin directory. In this directory there should be a file named mysqladmin. Type ./mysqladmin variables, and this should give you a bunch of info about your MySQL server, including the socket (/tmp/mysql.sock, for example). * Then, you need to tell PHP to use this socket. Assuming you are using PHP 3.0.10 or better, you can specify the socket to use when you open the connection. To do this in phpMyAdmin, you need to complete the socket information in the config.inc.php. For example: $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock'; Please also make sure that the permissions of this file allow to be readable by your webserver (i.e. '0755'). Have also a look at the corresponding section of the MySQL documentation. [2.4] Nothing is displayed by my browser when I try to run phpMyAdmin, what can I do? Try to set the $cfg['OBGZip'] directive to FALSE in the phpMyAdmin config uration file. It helps sometime. Also have a look at your PHP version number: if it contains "4.0b..." it means you're running a beta version of PHP. That's not a so good idea, p lease upgrade to a plain revision. [2.5] Each time I want to insert or change a record or drop a database or a table, an error 404 (page not found) is displayed or, with HTTP or cookie authentication, I'm asked to login again. What's wrong? Check the value you set for the $cfg['PmaAbsoluteUri'] directive in the p hpMyAdmin configuration file. [2.6] I get an "Access denied for user: 'root@localhost' (Using password: YES)"-error when trying to access a MySQL-Server on a host which is port-forwarded for my localhost. When you are using a port on your localhost, which you redirect via port- forwarding to another host, MySQL is not resolving the localhost as expe cted. Erik Wasser explains: The solution is: if your host is "localhost" MySQL (the commandline tool 'mysql' as well) always tries to use the socket co nnection for speeding up things. And that doesn't work in this configura tion with port forwarding. If you enter "127.0.0.1" as hostname, everything is right and MySQL uses the TCP connection. [2.7] Using and creating themes Themes are configured with $cfg['ThemePath'], $cfg['ThemeManager'] and $c fg['ThemeDefault']. Under $cfg['ThemePath'], you should not delete the directory "original" o r its underlying structure, because this is the system theme used by php MyAdmin. "original" contains all images and styles, for backwards compat ibility and for all themes that would not include images or css-files. If $cfg['ThemeManager'] is enabled, you can select your favorite theme on the main page. Your selected theme will be stored in a cookie. To create a theme: * make a new subdirectory (for example "your_theme_name") under $cfg['T hemePath'] (by default themes) * copy the files and directories from "original" to "your_theme_name" * edit the css-files in "your_theme_name/css" * put your new images in "your_theme_name/img" * edit layout.inc.php in "your_theme_name" * edit info.inc.php in "your_theme_name" to contain your chosen theme n ame, that will be visible in user interface * make a new screenshot of your theme and save it under "your_theme_nam e/screen.png" In theme directory there is file info.inc.php which contains theme verbos e name, theme generation and theme version. These versions and generatio ns are enumerated from 1 and do not have any direct dependance on phpMyA dmin version. Themes within same generation should be backwards compatib le - theme with version 2 should work in phpMyAdmin requiring version 1. Themes with different generation are incompatible. If you do not want to use your own symbols and buttons, remove the direct ory "img" in "your_theme_name". phpMyAdmin will use the default icons an d buttons (from the system-theme "original"). [2.8] I get "Missing parameters" errors, what can I do? Here are a few points to check: * In config.inc.php, try to leave the $cfg['PmaAbsoluteUri']directive e mpty. See also FAQ 4.7. * Maybe you have a broken PHP installation or you need to upgrade your Zend Optimizer. See http://bugs.php.net/bug.php?id=31134. * If you are using Hardened PHP with the ini directive varfilter.max_re quest_variables set to the default (200) or another low value, you could get this error if your table has a high number of columns. Adjust this setting accordingly. (Thanks to Klaus Dorninger for the hint). [3. Known limitations] [3.1] When using HTTP authentication, an user who logged out can not relogin in with the same nick. This is related to the authentication mechanism (protocol) used by phpMyA dmin. To bypass this problem: just close all the opened browser windows and then go back to phpMyAdmin. You should be able to log in again. [3.2] When dumping a large table in compressed mode, I get a memory limit error or a time limit error. Compressed dumps are built in memory and because of this are limited to p hp's memory limit. For GZip/BZip2 exports this can be overcome since 2.5 .4 using $cfg['CompressOnFly'] (enabled by default). Zip exports can not be handled this way, so if you need Zip files for larger dump, you have to use another way. [3.3] With InnoDB tables, I lose foreign key relationships when I rename or alter a table. This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). [3.4] I am unable to import dumps I created with the mysqldump tool bundled with the MySQL server distribution. The problem is that mysqldump creates invalid comments like this: -- MySQL dump 8.22 -- -- Host: localhost Database: database --------------------------------------------------------- -- Server version 3.23.54 The invalid part of the code is the horizontal line made of dashes that a ppears once in every dump created with mysqldump. If you want to run you r dump you have to turn it into valid MySQL. This means, you have to add a whitespace after the first two dashes of the line or add a # before i t: -- ------------------------------------------------------- or #--------------------------------------------------------- [3.5] When using nested folders ($cfg['LeftFrameTableSeparator']) there are some multiple hierarchies displayed in a wrong manner?! Please note that you should not use the separating string multiple times without any characters between them, or at the beginning/end of your tab le name. If you have to, think about using another TableSeparator or dis abling that feature [3.6] What is currently not supported in phpMyAdmin about InnoDB? In Relation view, being able to choose a table in another database, or ha ving more than one index field in the foreign key. In Query-by-example (Query), automatic generation of the query LEFT JOIN from the foreign table. In PDF schema editing, automatic layout. [3.7] I have table with many (100+) fields and when I try to browse table I get series of errors like "Warning: unable to parse url". How can this be fixed? Your table neither have a primary key nor an unique one, so we must use a long expression to identify this row. This causes problems to parse_url function. The workaround is to create a primary or unique key. [3.8] I cannot use (clickable) HTML-forms in fields where I put a MIME-Transformation onto! Due to a surrounding form-container (for multi-row delete checkboxes), no nested forms can be put inside the table where phpMyAdmin displays the results. You can, however, use any form inside of a table if keep the pa rent form-container with the target to tbl_row_delete.php and just put y our own input-elements inside. If you use a custom submit input field, t he form will submit itself to the displaying page again, where you can v alidate the $HTTP_POST_VARS in a transformation. For a tutorial on how t o effectively use transformations, see our Link section on the official phpMyAdmin-homepage. [3.9] I get error messages when using "--sql_mode=ANSI" for the MySQL server When MySQL is running in ANSI-compatibility mode, there are some major di fferences in how SQL is structured (see http://dev.mysql.com/doc/mysql/e n/ANSI_mode.html). Most important of all, the quote-character (") is int erpreted as an identifier quote character and not as a string quote char acter, which makes many internal phpMyAdmin operations into invalid SQL statements. There is no workaround to this behaviour. News to this item will be posted in Bug report #816858 [3.10] Homonyms and no primary key: When the results of a SELECT display more that one column with the same value (for example SELECT lastname from employees where firstname like 'A%' and two "Smith" values are displayed), if I click Edit I cannot be sure that I am editing the intended row. Please make sure that your table has a primary key, so that phpMyAdmin ca n use it for the Edit and Delete links. [3.11] The number of records for InnoDB tables is not correct. phpMyAdmin uses a quick method to get the row count, and this method only returns an approximate count in the case of InnoDB tables. See $cfg['Ma xExactCount'] for a way to modify those results, but this could have a s erious impact on performance. [3.12] What are the phpMyAdmin limitations for MySQL 3? The number of records in queries containing COUNT and GROUP BY is not cor rectly calculated. Also, sorting results of a query like "SELECT * from table GROUP BY" ... is problematic. [3.13] I get an error when entering USE followed by a db name containing an hyphen. The tests I have made with current MySQL 4.1.11 API shows that the API do es not accept this syntax for the USE command. Enclosing the db name wit h backquotes works. For further confusion, no backquotes are needed with command-line mysql. [4. ISPs, multi-user installations ] [4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need to install it for each customer. Since version 2.0.3, you can setup a central copy of phpMyAdmin for all y our users. The development of this feature was kindly sponsored by NetCo logne GmbH. This requires a properly setup MySQL user management and php MyAdmin HTTP or cookie authentication. See the install section on "Using HTTP authentication". [4.2] What's the preferred way of making phpMyAdmin secure against evil access. This depends on your system. If you're running a server which cannot be accessed by other people, it's sufficient to use the directory protection bundled with your webserver (with Apache you can use .htaccess files, for example). If other people have telnet access to your server, you should use phpMyAd min's HTTP authentication feature. Suggestions: * Your config.inc.php file should be chmod 660. * All your phpMyAdmin files should be chown -R phpmy.apache, where phpm y is a user whose password is only known to you, and apache is the group under which Apache runs. * You should use PHP safe mode, to protect from other users that try to include your config.inc.php in their scripts. [4.3] I get errors about not being able to include a file in /lang or in /libraries. Check php.ini, or ask your sysadmin to check it. The include_path must co ntain "." somewhere in it, and open_basedir, if used, must contain "." a nd "./lang" to allow normal operation of phpMyAdmin. [4.4] phpMyAdmin always gives "Access denied" when using HTTP authentication. This could happen for several reasons: * $cfg['Servers'][$i]['controluser'] and/or $cfg['Servers'][$i]['contro lpass'] are wrong. * The username/password you specify in the login-dialog are invalid. * You have already setup a security mechanism for the phpMyAdmin-direct ory, eg. a .htaccess file. This would interfere with phpMyAdmin's authentication, so remove it. [4.5] Is it possible to let users create their own databases? Starting with 2.2.5, in the user management page, you can enter a wildcar d database name for a user (for example "joe%"), and put the privileges you want. For example, adding SELECT, INSERT, UPDATE, DELETE, CREATE, DR OP, INDEX, ALTER would let a user create/manage his/her database(s). [4.6] How can I use the Host-based authentication additions? If you have existing rules from an old .htaccess file, you can take them and add a username between the 'deny'/'allow' and 'from' strings. Using the username wildcard of '%' would be a major benefit here if your insta llation is suited to using it. Then you can just add those updated lines into the $cfg['Servers'][$i]['AllowDeny']['rules'] array. If you want a pre-made sample, you can try this fragment. It stops the 'r oot' user from logging in from any networks other than the private netwo rk IP blocks. //block root from logging in except from the private networks $cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow'; $cfg['Servers'][$i]['AllowDeny']['rules'] = array( 'deny root from all', 'allow root from localhost', 'allow root from 10.0.0.0/8', 'allow root from 192.168.0.0/16', 'allow root from 172.16.0.0/12', ); [4.7] Authentication window is displayed more than once, why? This happens if you are using a URL to start phpMyAdmin which is differen t than the one set in your $cfg['PmaAbsoluteUri']. For example, a missin g "www", or entering with an IP address while a domain name is defined i n the config file. [5. Browsers or client OS] [5.1] I get an out of memory error, and my controls are non-functional, when trying to create a table with more than 14 fields. We could reproduce this problem only under Win98/98SE. Testing under WinN T4 or Win2K, we could easily create more than 60 fields. A workaround is to create a smaller number of fields, then come back to y our table properties and add the other fields. [5.2] With Xitami 2.5b4, phpMyAdmin won't process form fields. This is not a phpMyAdmin problem but a Xitami known bug: you'll face it w ith each script/website that use forms. Upgrade or downgrade your Xitami server. [5.3] I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2). With Konqueror 2.1.1: plain dumps, zip and GZip dumps work ok, except tha t the proposed file name for the dump is always 'tbl_dump.php'. Bzip2 du mps don't seem to work. With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the use r's temporary directory, so they must be moved before closing Konqueror, or else they disappear. GZip dumps give an error message. Testing needs to be done for Konqueror 2.2.2. [5.4] I can't use the cookie authentication mode because Internet Explorer never stores the cookies. MS Internet Explorer seems to be really buggy about cookies, at least til l version 6. And thanks to Andrew Zivolup we've traced also a PHP 4.1.1 bug in this area! Then, if you're running PHP 4.1.1, try to upgrade or downgrade... it may work! [5.5] In Internet Explorer 5.0, I get JavaScript errors when browsing my rows. Upgrade to at least Internet Explorer 5.5 SP2. [5.6] In Internet Explorer 5.0, 5.5 or 6.0, I get an error (like "Page not found") when trying to modify a row in a table with many fields, or with a text field Your table neither have a primary key nor an unique one, so we must use a long URL to identify this row. There is a limit on the length of the UR L in those browsers, and this not happen in Netscape, for example. The w orkaround is to create a primary or unique key, or use another browser. [5.7] I refresh (reload) my browser, and come back to the welcome page. Some browsers support right-clicking into the frame you want to refresh, just do this in the right frame. [5.8] With Mozilla 0.9.7 I have problems sending a query modified in the query box. Looks like a Mozilla bug: 0.9.6 was OK. We will keep an eye on future Moz illa versions. [5.9] With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can't type a whitespace in the SQL-Query edit area: the page scrolls down. This is a Mozilla bug (see bug #26882 at BugZilla). [5.10] With Netscape 4.75 I get empty rows between each row of data in a CSV exported file. This is a known Netscape 4.75 bug: it adds some line feeds when exporting data in octet-stream mode. Since we can't detect the specific Netscape version, we cannot workaround this bug. [5.11] Extended-ASCII characters like German umlauts are displayed wrong. Please ensure that you have set your browser's character set to the one o f the language file you have selected on phpMyAdmin's start page. Altern atively, you can try the auto detection mode that is supported by the re cent versions of the most browsers. [5.12] Apple OS X: Safari browser changes special characters to "?". This issue has been reported by a OS X user, who adds that Chimera, Netsc ape and Mozilla do not have this problem. [5.13] With Internet Explorer 5.5 or 6, and HTTP authentication type, I cannot manage two servers: I login to the first one, then the other one, but if I switch back to the first, I have to login on each operation. This is a bug in Internet Explorer, other browsers do not behave this way . [5.14] Using Opera6, I can manage to get to the authentication, but nothing happens after that, only a blank screen. Having $cfg['QueryFrameJS'] set to TRUE, this leads to a bug in Opera6, b ecause it is not able to interpret frameset definitiions written by Java Script. Please upgrade to Opera7 at least. [5.15] I have display problems with Safari. Please upgrade to at least version 1.2.3. [5.16] With Internet Explorer, I get "Access is denied" Javascript errors. Or I cannot make phpMyAdmin work under Windows. Please check the following points: * Maybe you have defined your PmaAbsoluteUri setting in config.inc.php to an IP address and you are starting phpMyAdmin with a URL containing a domain name, or the reverse situation. * Security settings in IE and/or Microsoft Security Center are too high , thus blocking scripts execution. * The Windows Firewall is blocking Apache and MySQL. You must allow htt p ports (80 or 443) and MySQL port (usually 3306) in the "in" and "out" directions. [5.17] With Firefox, I cannot delete rows of data or drop a database. Many users have confirmed that the Tabbrowser Extensions plugin they inst alled in their Firefox is causing the problem. [6. Using phpMyAdmin] [6.1] I can't insert new rows into a table / I can't create a table - MySQL brings up a SQL-error. Examine the SQL error with care. Often the problem is caused by specifyin g a wrong field-type. Common errors include: * Using VARCHAR without a size argument * Using TEXT or BLOB with a size argument Also, look at the syntax chapter in the MySQL manual to confirm that your syntax is correct. [6.2] When I create a table, I click the Index checkbox for 2 fields and phpMyAdmin generates only one index with those 2 fields. In phpMyAdmin 2.2.0 and 2.2.1, this is the way to create a multi-fields i ndex. If you want two indexes, create the first one when creating the ta ble, save, then display the table properties and click the Index link to create the other index. [6.3] How can I insert a null value into my table? Since version 2.2.3, you have a checkbox for each field that can be null. Before 2.2.3, you had to enter "null", without the quotes, as the field 's value. Since version 2.5.5, you have to use the checkbox to get a rea l NULL value, so if you enter "NULL" this means you want a literal NULL in the field, and not a NULL value (this works in PHP4). [6.4] How can I backup my database or table? Click on a database or table name in the left frame, the properties will be displayed. Then on the menu, click "Export", you can dump the structu re, the data, or both. This will generate standard SQL statements that c an be used to recreate your database/table. You will need to choose "Save as file", so that phpMyAdmin can transmit t he resulting dump to your station. Depending on your PHP configuration, you will see options to compress the dump. See also the $cfg['ExecTimeLi mit'] configuration variable. For additional help on this subject, look for the word "dump" in this doc ument. [6.5] How can I restore (upload) my database or table using a dump? How can I run a ".sql" file. Click on a database name in the left frame, the properties will be local displayed. Then in the "Run SQL query" section, type in your dump filena me, or use the Browse button. Then click Go. For additional help on this subject, look for the word "upload" in this d ocument. [6.6] How can I use the relation table in Query-by-example? Here is an example with the tables persons, towns and countries, all loca ted in the database mydb. If you don't have a pma_relation table, create it as explained in the configuration section. Then create the example t ables: CREATE TABLE REL_countries ( country_code char(1) NOT NULL default '', description varchar(10) NOT NULL default '', PRIMARY KEY (country_code) ) TYPE=MyISAM; INSERT INTO REL_countries VALUES ('C', 'Canada'); CREATE TABLE REL_persons ( id tinyint(4) NOT NULL auto_increment, person_name varchar(32) NOT NULL default '', town_code varchar(5) default '0', country_code char(1) NOT NULL default '', PRIMARY KEY (id) ) TYPE=MyISAM; INSERT INTO REL_persons VALUES (11, 'Marc', 'S', ''); INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C'); CREATE TABLE REL_towns ( town_code varchar(5) NOT NULL default '0', description varchar(30) NOT NULL default '', PRIMARY KEY (town_code) ) TYPE=MyISAM; INSERT INTO REL_towns VALUES ('S', 'Sherbrooke'); INSERT INTO REL_towns VALUES ('M', 'MontrHal'); To setup appropriate links and display information: * on table "REL_persons" click Structure, then Relation view * in Links, for "town_code" choose "REL_towns->code" * in Links, for "country_code" choose "REL_countries->country_code" * on table "REL_towns" click Structure, then Relation view * in "Choose field to display", choose "description" * repeat the two previous steps for table "REL_countries" Then test like this: * Click on your db name in the left frame * Choose "Query" * Use tables: persons, towns, countries * Click "Update query" * In the fields row, choose persons.person_name and click the "Show" ti ckbox * Do the same for towns.description and countries.descriptions in the o ther 2 columns * Click "Update query" and you will see in the query box that the corre ct joins have been generated * Click "Submit query" [6.7] How can I use the "display field" feature? Starting from the previous example, create the pma_table_info as explaine d in the configuration section, then browse your persons table, and move the mouse over a town code or country code. See also FAQ 6.21 for an additionnal feature that "display field" enables : drop-down list of possible values. [6.8] How can I produce a PDF schema of my database? First the configuration variables "relation", "table_coords" and "pdf_pag es" have to be filled in. Then you need to think about your schema layout. Which tables will go on which pages? * Select your database in the left frame. * Choose "Operations" in the navigation bar at the top. * Choose "Edit PDF Pages" near the bottom of the page. * Enter a name for the first PDF page and click Go. If you like, you ca n use the "automatic layout," which will put all your linked tables onto the new page. * Select the name of the new page (the action choice being set to Edit) and click Go. * Select a table from the list, enter its coordinates and click Go. Coordinates are relative; your diagram will be automatically scaled to fit the page. When initially placing tables on the page, just pick any coordinates -- say, 50x50. After clicking Go, you can then use the graphical editor to position the element correctly. * When you'd like to look at your PDF, first be sure to click the Go bu tton beneath the list of tables and coordinates, to save any changes you made there. Then scroll all the way down, select the PDF options you want, and click Go. * Internet Explorer for Windows may suggest an incorrect filename when you try to save a generated PDF. When saving a generated PDF, be sure that the filename ends in ".pdf", for example "schema.pdf". Browsers on other operating systems, and other browsers on Windows, do not have this problem. [6.9] phpMyAdmin is changing the type of one of my columns! No, it's MySQL that is doing silent column type changing. [6.10] When creating a privilege, what happens with underscores in the database name? If you do not put a backslash before the underscore, this is a wildcard g rant, and the underscore means "any character". So, if the database name is "john_db", the user would get rights to john1db, john2db... If you put a backslash before the underscore, it means that the database name will have a real underscore. [6.11] What is the curious symbol W in the statistics pages? It means "average". [6.12] I want to understand some Export options. Structure: * "Add DROP TABLE" will add a line telling MySQL to drop the table, if it already exists during the import. It does NOT drop the table after your export, it only affects the import file. * "If Not Exists" will only create the table if it doesn't exist. Other wise, you may get an error if the table name exists but has a different structure. * "Add AUTO_INCREMENT value" ensures that AUTO_INCREMENT value (if any) will be included in backup. * "Enclose table and field names with backquotes" ensures that field an d table names formed with special characters are protected. * "Add into comments" includes column comments, relations, and MIME typ es set in the pmadb in the dump as SQL comments (/* xxx */). Data: * "Complete inserts" adds the column names on every INSERT command, for better documentation (but resulting file is bigger). * "Extended inserts" provides a shorter dump file by using only once th e INSERT verb and the table name. * "Delayed inserts" are best explained in the MySQL manual. * "Ignore inserts" treats errors as a warning instead. Again, more info is provided in the MySQL manual, but basically with this selected, invalid values are adjusted and inserted rather than causing the entire statement to fail. [6.13] I would like to create a database with a dot in its name. This is a bad idea, because in MySQL the syntax "database.table" is the n ormal way to reference a database and table name. Worse, MySQL will usua lly let you create a database with a dot, but then you cannot work with it, nor delete it. [6.14] How do I set up the SQL Validator? To use it, you need a very recent version of PHP, 4.3.0 recommended, with XML, PCRE and PEAR support. On your system command line, run "pear inst all Net_Socket Net_URL HTTP_Request Mail_Mime Net_DIME SOAP" to get the necessary PEAR modules for usage. On a more recent pear version, I had problems with the state of Net_DIME being beta, so this single command "pear -d preferred_state=beta install -a SOAP" installed all the needed modules. If you use the Validator, you should be aware that any SQL statement you submit will be stored anonymously (database/table/column names, strings, numbers replaced with generic values). The Mimer SQL Validator itself, is 2001 Upright Database Technology. We utilize it as free SOAP servic e. [6.15] I want to add a BLOB field and put an index on it, but MySQL says "BLOB column '...' used in key specification without a key length". The right way to do this, is to create the field without any indexes, the n display the table structure and use the "Create an index" dialog. On t his page, you will be able to choose your BLOB field, and set a size to the index, which is the condition to create an index on a BLOB field. [6.16] How can I simply move in page with plenty editing fields? You can use Ctrl+arrows (Option+Arrows in Safari) for moving on most page s with many editing fields (table structure changes, row editing, etc.) (must be enabled in configuration - see. $cfg['CtrlArrowsMoving']). You can also have a look at the directive $cfg['DefaultPropDisplay'] ('verti cal') and see if this eases up editing for you. [6.17] Transformations: I can't enter my own mimetype! WTF is this feature then useful for? Slow down :). Defining mimetypes is of no use, if you can't put transform ations on them. Otherwise you could just put a comment on the field. Bec ause entering your own mimetype will cause serious syntax checking issue s and validation, this introduces a high-risk false-user-input situation . Instead you have to initialize mimetypes using functions or empty mime type definitions. Plus, you have a whole overview of available mimetypes. Who knows all tho se mimetypes by heart so he/she can enter it at will? [6.18] Bookmarks: Where can I store bookmarks? Why can't I see any bookmarks below the query box? What is this variable for? Any query you have executed can be stored as a bookmark on the page where the results are displayed. You will find a button labeled 'Bookmark thi s query' just at the end of the page. As soon as you have stored a bookmark, it is related to the database you run the query on. You can now access a bookmark dropdown on each page, t he query box appears on for that database. Since phpMyAdmin 2.5.0 you are also able to store variables for the bookm arks. Just use the string /*[VARIABLE]*/ anywhere in your query. Everyth ing which is put into the value input box on the query box page will rep lace the string "/*[VARIABLE]*/" in your stored query. Just be aware of that you HAVE to create a valid query, otherwise your query won't be eve n able to be stored in the database. Also remember, that everything else inside the /*[VARIABLE]*/ string for your query will remain the way it is, but will be stripped of the /**/ c hars. So you can use: /*, [VARIABLE] AS myname */ which will be expanded to , VARIABLE as myname in your query, where VARIABLE is the string you entered in the input box. If an empty string is provided, no replacements are made. A more complex example. Say you have stored this query: SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE] %' */ Say, you now enter "phpMyAdmin" as the variable for the stored query, the full query will be: SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%' You can use multiple occurences of /*[VARIABLE]*/ in a single query. NOTE THE ABSENCE OF SPACES inside the "/**/" construct. Any spaces insert ed there will be later also inserted as spaces in your query and may lea d to unexpected results especially when using the variable expansion ins ide of a "LIKE ''" expression. Your initial query which is going to be stored as a bookmark has to yield at least one result row so you can store the bookmark. You may have tha t to work around using well positioned "/**/" comments. [6.19] How can I create simple LaTeX document to include exported table? You can simply include table in your LaTeX documents, minimal sample docu ment should look like following one (assuming you have table exported in file table.tex): \documentclass{article} % or any class you want \usepackage{longtable} % for displaying table \begin{document} % start of document \include{table} % including exported table \end{document} % end of document [6.20] In MySQL 4, I see a lot of databases which are not mine, and cannot access them. Upgrading to MySQL 4 usually gives users those global privileges: CREATE TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also ena bles users to see all the database names, until you upgrade the grant ta bles as described in the MySQL manual. See this bug report. So if your users do not need those privileges, you can remove them and th eir databases list will shorten. [6.21] In edit/insert mode, how can I see a list of possible values for a field, based on some foreign table? You have to setup appropriate links between the tables, and also setup th e "display field" in the foreign table. See FAQ 6.6 for an example. Then , if there are 200 values or less in the foreign table, a drop-down list of values will be available. You will see two lists of values, the firs t list containing the key and the display field, the second list contain ing the display field and the key. The reason for this is to be able to type the first letter of either the key or the display field. For 200 values or more, a distinct window will appear, to browse foreign key values and choose one. [6.22] Bookmarks: Can I execute a default bookmark automatically when entering Browse mode for a table? Yes. If a bookmark has the same label as a table name, it will be execute d. [6.23] Export: I heard phpMyAdmin can export Microsoft Excel files, how can I enable that? Current version does support direct export ot Microsoft Excel and Word ve rsions 2000 and newer. If you need export older versions, you can use CS V suitable for Microsoft Excel, which works out of the box or you can tr y native experimental MS Excel exporter. This export has several problem s, most important are limitation of cell content to 255 chars and no sup port for charsets, so think carefully whether you want to enable this.. For enabling this you need to set $cfg['TempDir'] to place where web ser ver user can write (for example './tmp') and install PEAR module Spreads heet_Excel_Writer into php include path. The installation can be done by following command: pear -d preferred_state=beta install -a Spreadsheet_Excel_Writer First part of switches set we want to install beta version of that module (no stable version available yet) and then we tell pear we want to sati sfy dependencies. If you are running in PHP safe mode, you will have to set in php.ini the safe_mode_include_dir to the directory where your PEAR modules are locat ed, for example: safe_mode_include_dir = /usr/local/lib/php To create the temporary directory on a UNIX-based system, you can do: cd phpMyAdmin mkdir tmp chmod o+rwx tmp [6.24] Now that phpMyAdmin supports native MySQL 4.1.x column comments, what happens to my column comments stored in pmadb? Automatic migration of a table's pmadb-style column comments to the nativ e ones is done whenever you enter Structure page for this table. [7. phpMyAdmin project] [7.1] I have found a bug. How do I inform developers? Our Bug Tracker is located at http://sourceforge.net/projects/phpmyadmin/ under the Bugs section. But please first discuss your bug with other users: http://sourceforge.net/projects/phpmyadmin/ (and choose Forums) [7.2] I want to translate the messages to a new language or upgrade an existing language, where do I start? Always use the current CVS version of your language file. For a new langu age, start from english-iso-8859-1.inc.php. If you don't know how to get the CVS version, please ask one of the developers. Please note that we try not to use HTML entities like é in the tra nslations, since we define the right character set in the file. With HTM L entities, the text on JavaScript messages would not display correctly. However there are some entities that need to be there, for quotes ,non- breakable spaces, ampersands, less than, greater than. You can then put your translations, as a zip file to avoid losing special characters, on the sourceforge.net translation tracker. It would be a good idea to subscribe to the phpmyadmin-translators mailin g list, because this is where we ask for translations of new messages. [7.3] I would like to help out with the development of phpMyAdmin. How should I proceed? The following method is preferred for new developers: 1. fetch the current CVS tree over anonymous CVS: cvs -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin login [Password: simply press the Enter key] cvs -z3 -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin checkout phpMyAdmin [This will create a new sub-directory named phpMyAdmin] 2. add your stuff 3. put the modified files (tar'ed and gzip'ed) inside the patch tracker of the phpMyAdmin SourceForge account. Write access to the CVS tree is granted only to experienced developers wh o have already contributed something useful to phpMyAdmin. Also, have a look at the Developers section. [8. Security ] [8.1] Security alert, dated 2003-06-18. Last update of this FAQ: 2003-07-22. The phpMyAdmin development team received notice of this security alert: h ttp://www.securityfocus.com/archive/1/325641. The team regrets that the author did not communicate with us before sendi ng this alert. However, here is our current reply to the points mentionn ed: * "Directory transversal attack" This problem had been fixed in version 2.5.0, even if the author reports the 2.5.2 development version as vulnerable, which we could not reproduce. * "Remote local file retrieving" This is a misleading title, as the author tells in his text: "Note that you can't request files ( only dirs )". * "Remote internal directory listing" It was possible to retrieve the list of phpMyAdmin's directory (which we doubt can cause any damage), but we fixed this in the 2.5.2 version. * "XSS and Path disclosures" Most of the XSS problems have been fixed in version 2.5.0. The rest have been fixed in the 2.5.2 version. We believe that the Path disclosures problems have also been fixed in version 2.5.2. * "Information encoding weakness" We believe that an exploit for this weakness would be difficult to achieve. However version 2.5.2 now encrypts the password with the well-known blowfish algorithm. [8.2] Security alert, dated 2004-06-29. Last update of this FAQ: 2004-06-30. The phpMyAdmin development team received notice of this security alert: h ttp://securityfocus.com/archive/1/367486/2004-06-26/2004-07-02/0 We would like to put emphasis on the disappointment we feel when a bugrep orter does not contact the authors of a software first, before posting a ny exploits. The common way to report this, is to give the developers a reasonable amount of time to respond to an exploit before it is made pub lic. We acknowledge that phpMyAdmin versions 2.5.1 to 2.5.7 are vulnerable to this problem, if each of the following conditions are met: * The Web server hosting phpMyAdmin is not running in safe mode. * In config.inc.php, $cfg['LeftFrameLight'] is set to FALSE (the defaul t value of this parameter is TRUE). * There is no firewall blocking requests from the Web server to the att acking host. Version 2.5.7-pl1 was released with a fix for this vulnerability. [8.3] About new security alerts Please refer to http://www.phpmyadmin.net for the complete list of securi ty alerts. Developers Information phpMyAdmin is Open Source, so you're invited to contribute to it. Many gr eat features have been written by other people and you too can help to m ake phpMyAdmin a useful tool. If you're planning to contribute source, please read the following inform ation: * All files include header.inc.php (layout), libraries/common.lib.php ( common functions) and config.inc.php. Only configuration data should go in config.inc.php. Please keep it free from other code. Commonly used functions should be added to libraries/common.lib.php and more specific ones may be added within a library stored into the libraries sub-directory. * Obviously, you're free to use whatever coding style you want. But ple ase try to keep your code as simple as possible: beginners are using phpMyAdmin as an example application. As far as possible, we want the scripts to be XHTML1.0 and CSS2 compliant on one hand, they fit the PEAR coding standards on the other hand. Please pay attention to this. * Please try to keep up the file-naming conventions. Table-related stuf f goes to tbl_*.php, db-related code to db_*.php, server-related tools to server_*.php and so on. * Please don't use verbose strings in your code, instead add the string (at least) to english-iso-8859-1.inc.php and print() it out. * If you want to be really helpful, write an entry for the ChangeLog. * The DBG extension (PHP Debugger DBG) is now supported by phpMyAdmin f or developers to better debug and profile their code. Please see the $cfg['DBG']* configuration options for more information. This is in memoriam of the Space Shuttle Columbia (STS-107) which was lost during its re-entry into Earth's atmosphere and in memory of the brave men and women who gave their lives for the people of Earth. Credits phpMyAdmin - Credits ==================== CREDITS, in chronological order ------------------------------- - Tobias Ratschiller * creator of the phpmyadmin project * maintainer from 1998 to summer 2000 - Marc Delisle * multi-language version * various fixes and improvements * SQL analyser (most of it) * current project maintainer - Olivier M[ller * started SourceForge phpMyAdmin project in March 2001 * sync'ed different existing CVS trees with new features and bugfixes * multi-language improvements, dynamic language selection * current project maintainer * many bugfixes and improvements - LoNc Chapeaux * rewrote and optimized javascript, DHTML and DOM stuff * rewrote the scripts so they fit the PEAR coding standards and generate XHTML1.0 and CSS2 compliant codes * improved the language detection system * many bugfixes and improvements - Robin Johnson * database maintenance controls * table type code * Host authentication IP Allow/Deny * DB-based configuration (Not completed) * SQL parser and pretty-printer * SQL validator * many bugfixes and improvements - Armel Fauveau * bookmarks feature * multiple dump feature * gzip dump feature * zip dump feature - Geert Lund * various fixes * moderator of the phpMyAdmin users forum at phpwizard.net - Korakot Chaovavanich * "insert as new row" feature - Pete Kelly * rewrote and fix dump code * bugfixes - Steve Alberty * rewrote dump code for PHP4 * mySQL table statistics * bugfixes - Benjamin Gandon * main author of the version 2.1.0.1 * bugfixes - Alexander M. Turek * MySQL 4.0 / 4.1 / 5.0 compatibility * abstract database interface (PMA_DBI) with MySQLi support * privileges administration * XML exports * various features and fixes * German language file updates - Mike Beck * automatic joins in QBE * links column in printview * Relation view - Michal ihaE * enhanced index creation/display feature * feature to use a different charset for HTML than for MySQL * improvements of export feature * various features and fixes * Czech language file updates - Christophe GeschH from the "MySQL Form Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/) * suggested the patch for multiple table printviews - Garvin Hicking * built the patch for vertical display of table rows * built the Javascript based Query window + SQL history * Improvement of column/db comments * (MIME)-Transformations for columns * Use custom alias names for Databases in left frame * hierarchical/nested table display * PDF-scratchboard for WYSIWYG-distribution of PDF relations * new icon sets * vertical display of column properties page * some bugfixes, features, support, German language additions - Yukihiro Kawada * japanese kanji encoding conversion feature - Piotr Roszatycki and Dan Wilson * the Cookie authentication mode - Axel Sander * table relation-links feature - Maxime Delorme * PDF schema output, thanks also to Olivier Plathey for the "FPDF" library (see http://www.fpdf.org/) and Steven Wittens for the "UFPDF" library (see http://www.acko.net/node/56). - Olof Edlund * SQL validator server - Ivan R. Lanin * phpMyAdmin logo (until June 2004) - Mike Cochrane * blowfish library from the Horde project - Marcel Tschopp * mysqli support * many bugfixes and improvements - Michael Keck * redesign for 2.6.0 * phpMyAdmin sailboat logo (June 2004) - Mathias LandhCuEer * Representation at conferences And also to the following people who have contributed minor changes, enhancements, bugfixes or support for a new language since version 2.1.0: Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, PHter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas KlCger, Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley, Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna, www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec, Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, LuLs V., Martijn W. van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "Manuzhai". Original Credits of Version 2.1.0 --------------------------------- This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea to create a web-based interface to MySQL using PHP3. Although I have not used any of his source-code, there are some concepts I've borrowed from him. phpMyAdmin was created because Peter told me he wasn't going to further develop his (great) tool. Thanks go to - Amalesh Kempf who contributed the code for the check when dropping a table or database. He also suggested that you should be able to specify the primary key on tbl_create.php3. To version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as well as a bug-report. Plus many smaller improvements. - Jan Legenhausen : He made many of the changes that were introduced in 1.3.0 (including quite significant ones like the authentication). For 1.4.1 he enhanced the table-dump feature. Plus bug-fixes and help. - Marc Delisle made phpMyAdmin language-independent by outsourcing the strings to a separate file. He also contributed the French translation. - Alexandr Bravo who contributed tbl_select.php3, a feature to display only some fields from a table. - Chris Jackson added support for MySQL functions in tbl_change.php3. He also added the "Query by Example" feature in 2.0. - Dave Walton added support for multiple servers and is a regular contributor for bug-fixes. - Gabriel Ash contributed the random access features for 2.0.6. The following people have contributed minor changes, enhancements, bugfixes or support for a new language: Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann, Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov, Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns, G. Wieggers. And thanks to everyone else who sent me email with suggestions, bug-reports and or just some feedback. Valid XHTML 1.0! Valid CSS! GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ********************************************************************** * TCPDF LICENSE ********************************************************************** TCPDF is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ********************************************************************** ********************************************************************** GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. ********************************************************************** ********************************************************************** GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ********************************************************************** ********************************************************************** ______________________________________________________________________ Top - Requirements - Introduction - Installation - Configuration Transformations - FAQ - Developers - Credits - Translators ______________________________________________________________________ phpMyAdmin 2.6.3-pl1 Documentation * SourceForge phpMyAdmin project page [ http://www.phpmyadmin.net/ ] * Local documents: + Version history: ChangeLog + General notes: README + License: LICENSE * Documentation version: $Id: Documentation.html,v 2.131.2.4 2005/07/04 21:50:18 lem9 Exp $ Requirements * PHP + You need PHP 4.1.0 or newer (*) + If you want to display inline thumbnails of JPEGs with the original aspect ratio, you also need GD2 support in PHP + Starting with phpMyAdmin 2.6.1, MIME-based transformations that use an external program need PHP 4.3.0 or newer * MySQL 3.23.32 or newer (details); * Not really a requirement but a strong suggestion: if you are using th e "cookie" authentication method, having the mcrypt PHP extension on your web server accelerates not only the login phase but every other action that you do in phpMyAdmin. * a web-browser (doh!). Introduction phpMyAdmin can manage a whole MySQL server (needs a super-user) as well a s a single database. To accomplish the latter you'll need a properly set up MySQL user who can read/write only the desired database. It's up to you to look up the appropriate part in the MySQL manual. Currently phpMyAdmin can: * create and drop databases * create, copy, drop, rename and alter tables * do table maintenance * delete, edit and add fields * execute any SQL-statement, even batch-queries * manage keys on fields * load text files into tables * create (*) and read dumps of tables * export (*) data to CSV, XML and Latex formats * administer multiple servers * manage MySQL users and privileges * check referential integrity in MyISAM tables * using Query-by-example (QBE), create complex queries automatically co nnecting required tables * create PDF graphics of your Database layout * search globally in a database or a subset of it * transform stored data into any format using a set of predefined funct ions, like displaying BLOB-data as image or download-link or ... * support InnoDB tables and foreign keys (see FAQ 3.6) * support mysqli, the improved MySQL extension (see FAQ 1.17) * communicate in 50 different languages (*) phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats) dump s and CSV exports if you use PHP4 >= 4.0.4 with Zlib support (--with-zli b) and/or Bzip2 support (--with-bz2). Installation NOTE: phpMyAdmin does not apply any special security methods to the MySQL database server. It is still the system administrator's job to grant pe rmissions on the MySQL databases properly. phpMyAdmin's "Privileges" pag e can be used for this. Warning for Mac users:if you are on a MacOS version before OS X, StuffIt unstuffs with Mac formats. So you'll have to resave as in BBEdit to Unix style ALL phpMyAdmin script s before uploading them to your server, as PHP seems not to like Mac-sty le end of lines character ("\r"). Quick Install 1. Untar or unzip the distribution (be sure to unzip the subdirectories) : tar -xzvf phpMyAdmin_x.x.x.tar.gz in your webserver's document root. If you don't have direct access to your document root, put the files in a directory on your local machine, and, after step 3, transfer the directory on your web server using, for example, ftp. 2. Ensure that all the scripts have the appropriate owner (if PHP is run ning in safe mode, having some scripts with an owner different from the owner of other scripts will be a problem). See FAQ 4.2 for suggestions. 3. Open the file config.inc.php in your favorite editor and change the v alues for host, user, password and authentication mode to fit your environment. Here, "host" means the MySQL server. Have a look at Configuration section for an explanation of all values. Please also read the remaining of this Installation section for information about authentication modes and the linked-tables infrastructure. 4. It is recommended that you protect the directory in which you install ed phpMyAdmin (unless it's on a closed intranet, or you wish to use HTTP or cookie authentication), for example with HTTP-AUTH (in a .htaccess file). See the multi-user sub-section of the FAQ for additional information, especially FAQ 4.4. 5. Open the file //index.php in you r browser. phpMyAdmin should now display a welcome screen and your databases, or a login dialog if using HTTP or cookie authentication mode. Linked-tables infrastructure For a whole set of new features (bookmarks, comments, SQL-history, PDF-ge neration, field contents transformation, etc.) you need to create a set of special tables. Those tables can be located in your own database, or in a central database for a multi-user installation (this database would then be accessed by the controluser, so no other user should have right s to it). Please look at your scripts/ directory, where you should find a file call ed create_tables.sql. (If you are using a Windows server, pay special at tention to FAQ 1.23). If your MySQL server's version is 4.1.2 or later, please use create_table s_mysql_4_1_2+.sql instead, for a new installation. If you already had this infrastructure and upgraded to MySQL 4.1.2 or lat er, please use upgrade_tables_mysql_4_1_2+.sql. You can use your phpMyAdmin to create the tables for you. Please be aware that you may need special (administrator) privileges to create the data base and tables, and that the script may need some tuning, depending on the database name. After having imported the create_tables.sql file, you should specify the table names in your config.inc.php file. The directives used for that ca n be found in the Configuration section. You will also need to have a co ntroluser with the proper rights to those tables (see section Using auth entication modes below). Upgrading from an older version * You can safely copy your older config.inc.php over a new one, if you can live with default values for possible new parameters (you can check release notes to see what new features were added). This compatibility will stay for long time, current version supports importing config files from 2.2 and maybe even older (nobody has tried that). Using authentication modes * HTTP and cookie authentication modes are recommended in a multi-user environment where you want to give users access to their own database and don't want them to play around with others. Nevertheless be aware that MS Internet Explorer seems to be really buggy about cookies, at least till version 6. And PHP 4.1.1 is also a bit buggy in this area! Even in a single-user environment, you might prefer to use HTTP or cookie mode so that your user/password pair are not in clear in the configuration file. * HTTP and cookie authentication modes are more secure: the MySQL login information does not need to be set in the phpMyAdmin configuration file (except possibly for the controluser). However, keep in mind that the password travels in plain text, unless you are using the HTTPS protocol. In cookie mode, the password is stored, encrypted with the blowfish algorithm, in a temporary cookie. * Note: starting with phpMyAdmin 2.6.1, configuring the controluser to enable HTTP and cookie authentication applies only to MySQL servers older than 4.1.2. For 'HTTP' and 'cookie' modes, phpMyAdmin needs a controluser that has only the SELECT privilege on the mysql.user (all columns except "Password"), mysql.db (all columns), mysql.host (all columns) and mysql.tables_priv (all columns except "Grantor" & "Timestamp") tables. You must specify the details for the controluser in the config.inc.php file under the $cfg['Servers'][$i]['controluser']& $cfg['Servers'][$i]['controlpass'] settings. The following example assumes you want to use pma as the controluser and pmapass as the controlpass, but this is only an example: use something else in your file! Of course you have to replace localhost by the webserver's host if it's not the same as the MySQL server's one. GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY 'pmapass'; GRANT SELECT ( Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv, Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv, File_priv, Grant_priv, References_priv, Index_priv, Alter_priv, Show_db_priv, Super_priv, Create_tmp_table_priv, Lock_tables_priv, Execute_priv, Repl_slave_priv, Repl_client_priv ) ON mysql.user TO 'pma'@'localhost'; GRANT SELECT ON mysql.db TO 'pma'@'localhost'; GRANT SELECT ON mysql.host TO 'pma'@'localhost'; GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv) ON mysql.tables_priv TO 'pma'@'localhost'; If you are using an old MySQL version (below 4.0.2), please replace the first GRANT SELECT query by this one: GRANT SELECT ( Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv, Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv, File_priv, Grant_priv, References_priv, Index_priv, Alter_priv ) ON mysql.user TO 'pma'@'localhost'; ... and if you want to use the many new relation and bookmark features: GRANT SELECT, INSERT, UPDATE, DELETE ON .* TO 'pma'@'localhost'; (this of course requires you to have a special DB for phpMyAdmin, the contents will be explained later) Of course, the above queries only work if your MySQL version supports the GRANT command. This is the case since 3.22.11. * Then each of the true users should be granted a set of privileges on a set of particular databases. Normally you shouldn't give global privileges to an ordinary user, unless you understand the impact of those privileges (for example, you are creating a superuser). For example, to grant the user real_user with all privileges on the database user_base: GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real_password'; What the user may now do is controlled entirely by the MySQL user management system. With HTTP or cookie authentication mode, you don't need to fill the user/password fields inside the $cfg['Servers'] array. 'http' authentication mode * Was called 'advanced' in versions before 2.2.3. * Introduced in 1.3.0, it uses Basic HTTP authentication method and all ows you to login as any valid MySQL user. * Is supported with PHP running as an Apache module. For IIS (ISAPI) su pport using CGI PHP, see FAQ 1.32. * See also FAQ 4.4 about not using the .htaccess mechanism along with ' http' authentication mode. 'cookie' authentication mode * You can use this method as a replacement for the HTTP authentication (for example, if you're running IIS). * Obviously, the user must enable cookies in the browser. * With this mode, the user can truly logout of phpMyAdmin and login bac k with the same username. * If you want to login to arbitrary server see $cfg['AllowArbitraryServ er'] directive. * See also the requirements section for a way to improve the interface speed while using this mode. 'config' authentication mode * This mode is the less secure one because it requires you to fill the $cfg['Servers'][$i]['user'] and $cfg['Servers'][$i]['password'] fields. But you don't need to setup a "controluser" here: using the $cfg['Servers'][$i]['only_db'] might be enough. * In the ISP FAQ section, there is an entry explaining how to protect y our configuration file. * For additional security in this mode, you may wish to consider the Ho st authentication $cfg['Servers'][$i]['AllowDeny']['order'] and $cfg['Servers'][$i]['AllowDeny']['rules'] configuration directives. Configuration Warning for Mac users: PHP seems not to like Mac end of lines character ( "\r"). So ensure you choose the option that allows to use the *nix end o f line character ("\n") in your text editor before registering a script you have modified. Configuration note: Almost all configurable data is placed in config.inc. php. The parameters which relate to design (like colors) are placed in t hemes/themename/layout.inc.php. You might also want to modify config.foo ter.inc.php and config.header.inc.php files to add your site specific co de to be included on start and end of each page. $cfg['PmaAbsoluteUri'] string Sets here the complete URL (with full path) to your phpMyAdmin installation's directory. E.g. http://www.your_web.net/path_to_your_phpMyAdmin_directory/. Starting with version 2.3.0, it is advisable to try leaving this blank. In most cases phpMyAdmin automatically detects the proper setting. Additional details are in the configuration file. If you leave it blank, see the notes for $cfg['PmaAbsoluteUri_DisableWarning']; you probably want to change that to TRUE. Don't forget the slash at the end of your URL. The URL must contain characters that are valid for a URL, and on some servers, the path is case-sensitive. $cfg['PmaAbsoluteUri_DisableWarning'] boolean By default, when you leave $cfg['PmaAbsoluteUri'] empty, and the system detects your absolute URI automatically, we display a warning to remind you. If you have tested the automatic detection, and it works perfectly for your setup, then you can set this variable to squelch the warning. $cfg['PmaNoRelation_DisableWarning'] boolean Starting with version 2.3.0 phpMyAdmin offers a lot of features to work with master / foreign - tables (see $cfg['Servers'][$i]['pmadb']). If you tried to set this up and it does not work for you, have a look on the "Structure" page of one database where you would like to use it. You will find a link that will analyze why those features have been disabled. If you do not want to use those features set this variable to TRUE to stop this message from appearing. $cfg['blowfish_secret'] string Starting with version 2.5.2, the 'cookie' auth_type uses blowfish algorithm to encrypt the password. If you are using the 'cookie' auth_type, enter here a random passphrase of your choice. It will be used internally by the blowfish algorithm: you won't be prompted for this passphrase. The maximum number of characters for this parameter seems to be 46. $cfg['Servers'] array Since version 1.4.2, phpMyAdmin supports the administration of multiple MySQL servers. Therefore, a $cfg['Servers']-array has been added which contains the login information for the different servers. The first $cfg['Servers'][$i]['host'] contains the hostname of the first server, the second $cfg['Servers'][$i]['host'] the hostname of the second server, etc. If you have only one server to administer, simply leave free the hostname of the other $cfg['Server']-entries. $cfg['Servers'][$i]['host'] string The hostname or IP address of your $i-th MySQL-server. E.g. localhost. $cfg['Servers'][$i]['port'] string The port-number of your $i-th MySQL-server. Default is 3306 (leave blank). If you use "localhost" as the hostname, MySQL ignores this port number and connects with the socket, so if you want to connect to a port different from the default port, use "127.0.0.1" or the real hostname in $cfg['Servers'][$i]['host']. $cfg['Servers'][$i]['socket'] string The path to the socket to use. Leave blank for default. To use the socket feature you must run PHP 3.0.10 or more. $cfg['Servers'][$i]['connect_type'] string What type connection to use with the MySQL server. Your options are 'socket' & 'tcp'. It defaults to 'tcp' as that is nearly guaranteed to be available on all MySQL servers, while sockets are not supported on some platforms. To use the socket mode, your MySQL server must be on the same machine as the Web server. $cfg['Servers'][$i]['extension'] string What php MySQL extension to use for the connection. Valid options are: mysql : The classic MySQL extension. This is the recommended and default method at this time. mysqli : The improved MySQL extension. This extension became available with php 5.0.0 and is the recommended way to connect to a server running MySQL 4.1.x. Note: phpMyAdmin's MySQL 4.1 support is experimental! $cfg['Servers'][$i]['compress'] boolean Whether to use a compressed protocol for the MySQL server connection or not (experimental). This feature requires PHP >= 4.3.0. $cfg['Servers'][$i]['controluser'] string $cfg['Servers'][$i]['controlpass'] string Note: starting with phpMyAdmin 2.6.1, configuring the controluser to enable HTTP and cookie authentication applies only to MySQL servers older than 4.1.2. This special account is used for 2 distinct purposes: to make possible all relational features (see $cfg['Servers'][$i]['pmadb']) and, for a MySQL server older than 4.1.2, to enable a multi-user installation (http or cookie authentication mode). When using HTTP or cookie authentication modes (or 'config' authentication mode since phpMyAdmin 2.2.1), you need to supply the details of a MySQL account that has SELECT privilege on the mysql.user (all columns except "Password"), mysql.db (all columns) & mysql.tables_priv (all columns except "Grantor" & "Timestamp") tables. This account is used to check what databases the user will see at login. Please see the install section on "Using authentication modes" for more information. Note that if you try login to phpMyAdmin with this "controluser", you could get some errors, depending the exact privileges you gave to the "controluser". phpMyAdmin does not support a direct login with the "controluser". In phpMyAdmin versions before 2.2.5, those were called "stduser/stdpass". $cfg['Servers'][$i]['auth_type'] string ['http'|'cookie'|'config'] Whether config or cookie or http authentication should be used for this server. + 'config' authentication ($auth_type = 'config') is the plain old way: username and password are stored in config.inc.php. + 'cookie' authentication mode ($auth_type = 'cookie') as introduced in 2.2.3 allows you to log in as any valid MySQL user with the help of cookies. Log name and password are stored in cookies during the session and password is deleted when it ends. This can also allow you to login in arbitrary server if $cfg['AllowArbitraryServer'] enabled. + 'http' authentication (was called 'advanced' in older versions) ($auth_type = 'http') as introduced in 1.3.0 allows you to log in as any valid MySQL user via HTTP-Auth. Please see the install section on "Using authentication modes" for more information. $cfg['Servers'][$i]['user'] string $cfg['Servers'][$i]['password'] string The user/password-pair which phpMyAdmin will use to connect to this MySQL-server. This user/password pair is not needed when HTTP or cookie authentication is used, and should be empty. $cfg['Servers'][$i]['only_db'] string or array If set to a (an array of) database name(s), only this (these) database(s) will be shown to the user. Since phpMyAdmin 2.2.1, this/these database(s) name(s) may contain MySQL wildcards characters ("_" and "%"): if you want to use literal instances of these characters, escape them (I.E. use 'my\_db' and not 'my_db'). This setting is an efficient way to lower the server load since the latter does not need to send MySQL requests to build the available database list. But it does not replace the privileges rules of the MySQL database server. If set, it just means only these databases will be displayed but not that all other databases can't be used. An example of using more that one database: $cfg['Servers'][$i]['only_db'] = array('db1', 'db2'); As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the databases in the left frame, so that you can individually arrange your databases. If you want to have certain databases at the top, but don't care about the others, you do not need to specify all other databases. Use: $cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*'); instead to tell phpMyAdmin that it should display db3 and db4 on top, and the rest in alphabetic order. $cfg['Servers'][$i]['verbose'] string Only useful when using phpMyAdmin with multiple server entries. If set, this string will be displayed instead of the hostname in the pull-down menu on the main page. This can be useful if you want to show only certain databases on your system, for example. $cfg['Servers'][$i]['pmadb'] string The name of the database containing the linked-tables infrastructure. See the Linked-tables infrastructure section in this document to see the benefits of this infrastructure, and for a quick way of creating this database and the needed tables. If you are the only user of this phpMyAdmin installation, you can use your current database to store those special tables; in this case, just put your current database name in $cfg['Servers'][$i]['pmadb']. For a multi-user installation, set this parameter to the name of your central database containing the linked-tables infrastructure. $cfg['Servers'][$i]['bookmarktable'] string Since release 2.2.0 phpMyAdmin allows to bookmark queries. This can be useful for queries you often run. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + enter the table name in $cfg['Servers'][$i]['bookmarktable'] $cfg['Servers'][$i]['relation'] string Since release 2.2.4 you can describe, in a special 'relation' table, which field is a key in another table (a foreign key). phpMyAdmin currently uses this to + make clickable, when you browse the master table, the data values that point to the foreign table; + display in an optional tool-tip the "display field" when browsing the master table, if you move the mouse to a column containing a foreign key (use also the 'table_info' table); (see FAQ 6.7) + in edit/insert mode, display a drop-down list of possible foreign keys (key value and "display field" are shown) (see FAQ 6.21) + display links on the table properties page, to check referential integrity (display missing foreign keys) for each described key; + in query-by-example, create automatic joins (see FAQ 6.6) + enable you to get a PDF schema of your database (also uses the table_coords table). The keys can be numeric or character. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the relation table name in $cfg['Servers'][$i]['relation'] + now as normal user open phpMyAdmin and for each one of your tables where you want to use this feature, click "Structure/Relation view/" and choose foreign fields. Please note that in the current version, master_db must be the same as foreign_db. Those fields have been put in future development of the cross-db relations. $cfg['Servers'][$i]['table_info'] string Since release 2.3.0 you can describe, in a special 'table_info' table, which field is to be displayed as a tool-tip when moving the cursor over the corresponding key. This configuration variable will hold the name of this special table. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the table name in $cfg['Servers'][$i]['table_info'] + then for each table where you want to use this feature, click "Structure/Relation view/Choose field to display" to choose the field. Usage tip: Display field. $cfg['Servers'][$i]['table_coords'] string $cfg['Servers'][$i]['pdf_pages'] string Since release 2.3.0 you can have phpMyAdmin create PDF pages showing the relations between your tables. To do this it needs two tables "pdf_pages" (storing information about the available PDF pages) and "table_coords" (storing coordinates where each table will be placed on a PDF schema output). You must be using the "relation" feature. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the correct table names in $cfg['Servers'][$i]['table_coords'] and $cfg['Servers'][$i]['pdf_pages'] Usage tips: PDF output. $cfg['Servers'][$i]['column_info'] string Since release 2.3.0 you can store comments to describe each column for each table. These will then be shown on the "printview". Starting with release 2.5.0, comments are consequently used on the table property pages and table browse view, showing up as tool-tips above the column name (properties page) or embedded within the header of table in browse view. They can also be shown in a table dump. Please see the relevant configuration directives later on. Also new in release 2.5.0 is a MIME-transformation system which is also based on the following table structure. See Transformations for further information. To use the MIME-transformation system, your column_info table has to have the three new fields 'mimetype', 'transformation', 'transformation_options'. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the table name in $cfg['Servers'][$i]['column_info'] + to update your PRE-2.5.0 Column_comments Table use this: ALTER TABLE `pma_column_comments` ADD `mimetype` VARCHAR( 255 ) NOT NULL , ADD `transformation` VARCHAR( 255 ) NOT NULL , ADD `transformation_options` VARCHAR( 255 ) NOT NULL ; and remember that the Variable in config.inc.php has been renamed from $cfg['Servers'][$i]['column_comments'] to $cfg['Servers'][$i]['column_info'] $cfg['Servers'][$i]['history'] string Since release 2.5.0 you can store your SQL history, which means all queries you entered manually into the phpMyAdmin interface. If you don't want to use a table- based history, you can use the JavaScript-based history. Using that, all your history items are deleted when closing the window. Using $cfg['QueryHistoryMax'] you can specify an amount of history items you want to have on hold. On every login, this list gets cut to the maximum amount. The query history is only available if you use the JavaScript-based query window, see $cfg['QueryFrame']. To allow the usage of this functionality: + set up pmadb and the linked-tables infrastructure + put the table name in $cfg['Servers'][$i]['history'] $cfg['Servers'][$i]['verbose_check'] boolean Because release 2.5.0 introduced the new MIME-transformation support, the column_info table got enhanced with three new fields. If the above variable is set to TRUE (default) phpMyAdmin will check if you have the latest table structure available. If not, it will emit a warning to the superuser. You can disable this checking behavior by setting the variable to false, which should offer a performance increase. Recommended to set to FALSE, when you are sure, your table structure is up to date. $cfg['Servers'][$i]['AllowRoot'] boolean Whether to allow root access, This is just simplification of rules below. $cfg['Servers'][$i]['AllowDeny']['order'] string If your rule order is empty, then IP authentication is disabled. If your rule order is set to 'deny,allow' then the system applies all deny rules followed by allow rules. Access is allowed by default. Any client which does not match a Deny command or does match an Allow command will be allowed access to the server. If your rule order is set to 'allow,deny' then the system applies all allow rules followed by deny rules. Access is denied by default. Any client which does not match an Allow directive or does match a Deny directive will be denied access to the server. If your rule order is set to 'explicit', the authentication is performed in a similar fashion to rule order 'deny,allow', with the added restriction that your host/username combination must be listed in the allow rules, and not listed in the deny rules. This is the most secure means of using Allow/Deny rules, and was available in Apache by specifying allow and deny rules without setting any order. $cfg['Servers'][$i]['AllowDeny']['rules'] array of strings The general format for the rules is as such: <'allow' | 'deny'> [from] If you wish to match all users, it is possible to use a '%' as a wildcard in the username field. There are a few shortcuts you can use in the ipmask field as well: 'all' -> 0.0.0.0/0 'localhost' -> 127.0.0.1/8 Having an empty rule list is equivalent to either using 'allow % from all' if your rule order is set to 'deny,allow' or 'deny % from all' if your rule order is set to 'allow,deny' or 'explicit'. For the IP matching system, the following work: xxx.xxx.xxx.xxx (an exact IP address) xxx.xxx.xxx.[yyy-zzz] (an IP address range) xxx.xxx.xxx.xxx/nn (CIDR, Classless Inter-Domain Routing type IP addresses) But the following does not work: xxx.xxx.xxx.xx[yyy-zzz] (partial IP address range) $cfg['ServerDefault'] integer If you have more than one server configured, you can set $cfg['ServerDefault'] to any one of them to autoconnect to that server when phpMyAdmin is started, or set it to 0 to be given a list of servers without logging in. If you have only one server configured, $cfg['ServerDefault'] MUST be set to that server. $cfg['OBGzip'] string/boolean Defines whether to use GZip output buffering for increased speed in HTTP transfers. Set to true/false for enabling/disabling. When set to 'auto' (string), phpMyAdmin tries to enable output buffering and will automatically disable it, if your browser has some problems with buffering. IE6 with a certain patch is known to cause data corruption having enabled buffering. $cfg['PersistentConnections'] boolean Whether persistent connections should be used or not (mysql_connect or mysql_pconnect). $cfg['ExecTimeLimit'] integer [number of seconds] Set the number of seconds a script is allowed to run. If seconds is set to zero, no time limit is imposed. This setting is used while importing/exporting dump files but has no effect when PHP is running in safe mode. $cfg['SkipLockedTables'] boolean Mark used tables and make it possible to show databases with locked tables (since 3.23.30). $cfg['ShowSQL'] boolean Defines whether SQL-queries generated by phpMyAdmin should be displayed or not. $cfg['AllowUserDropDatabase'] boolean Defines whether normal users (non-administrator) are allowed to delete their own database or not. If set as FALSE, the link "Drop Database" will not be shown, and even a "DROP DATABASE mydatabase" will be rejected. Quite practical for ISP's with many customers. $cfg['Confirm'] boolean Whether a warning ("Are your really sure...") should be displayed when you're about to lose data. $cfg['LoginCookieRecall'] boolean Define whether the previous login should be recalled or not in cookie authentication mode. $cfg['UseDbSearch'] boolean Define whether the "search string inside database" is enabled or not. $cfg['IgnoreMultiSubmitErrors'] boolean Define whether phpMyAdmin will continue executing a multi-query statement if one of the queries fails. Default is to abort execution. $cfg['VerboseMultiSubmit'] boolean Define whether phpMyAdmin will output the results of each query of a multi-query statement embedded into the SQL output as inline comments. Defaults to TRUE. $cfg['AllowArbitraryServer'] boolean If enabled allows you to login to arbitrary server using cookie auth. NOTE: Please use this carefully, as this may allow to access MySQL servers behind firewall where your http server is placed. $cfg['LeftFrameLight'] boolean Defines whether to use select-based menu and display only the current tables in the left frame (smaller page). Only in Non-Lightmode you can use the feature to display nested folders using $cfg['LeftFrameTableSeparator'] $cfg['LeftFrameTableSeparator'] string Defines a string to be used to nest table spaces. Defaults to '__'. This means if you have tables like 'first__second__third' this will be shown as a three-level hierarchie like: first > second > third. If set to FALSE or empty, the feature is disabled. NOTE: You shall not use this Separator in a table name at the beginning or end of a table name, or multiple times after another without any other characters in between. $cfg['LeftFrameTableLevel'] string Defines how many sublevels should be displayed when splitting up tables by the above Separator. $cfg['ShowTooltip'] boolean Defines whether to display table comment as tool-tip in left frame or not. $cfg['ShowTooltipAliasDB'] boolean If tool-tips are enabled and a DB comment is set, this will flip the comment and the real name. That means, if you have a table called 'user0001' and add the comment 'MyName' on it, you will see the name 'MyName' used consequently in the left frame and the tool-tip shows the real name of the DB. $cfg['ShowTooltipAliasTB'] boolean/string Same as $cfg['ShowTooltipAliasDB'], except this works for table names. When setting this to 'nested', the Alias of the Tablename is only used to split/nest the tables according to the $cfg['LeftFrameTableSeparator'] directive. So only the folder is called like the Alias, the tablename itself stays the real tablename. $cfg['LeftDisplayLogo'] boolean Defines whether to display the phpMyAdmin logo at the top of the left frame or not. Defaults to TRUE. $cfg['LeftDisplayServers'] boolean Defines whether to display a server choice at the top of the left frame or not. Defaults to FALSE. $cfg['DisplayServersList'] boolean Defines whether to display this server choice as links instead of in a drop-down. Defaults to FALSE (drop-down). $cfg['ShowStats'] boolean Defines whether to display space usage and statistics about databases and tables or not. Note that statistics requires at least MySQL 3.23.3 and that, at this date, MySQL doesn't return such information for Berkeley DB tables. $cfg['ShowMysqlInfo'] boolean $cfg['ShowMysqlVars'] boolean $cfg['ShowPhpInfo'] boolean $cfg['ShowChgPassword'] boolean Defines whether to display the "MySQL runtime information", "MySQL system variables", "PHP information" and "Change password " links or not for simple users at the starting main (right) frame. This setting does not check MySQL commands entered directly. Please note that to block the usage of phpinfo() in scripts, you have to put this in your php.ini: disable_functions = phpinfo() Also note that enabling the "Change password " link has no effect with "config" authentication mode: because of the hard coded password value in the configuration file, end users can't be allowed to change their passwords. $cfg['SuggestDBName'] boolean Defines whether to suggest a database name on the "Create Database" form or to keep the textfield empty. $cfg['ShowBlob'] boolean Defines whether BLOB fields are shown when browsing a table's content or not. $cfg['NavigationBarIconic'] boolean Defines whether navigation bar buttons contain text or symbols only. $cfg['ShowAll'] boolean Defines whether an user should be displayed a "show all (records)" button in browse mode or not. $cfg['MaxRows'] integer Number of rows displayed when browsing a result set. If the result set contains more rows, Previous/Next links will be shown. $cfg['Order'] string [DESC|ASC|SMART] Defines whether fields are displayed in ascending (ASC) order, in descending (DESC) order or in a "smart" (SMART) order - I.E. descending order for fields of type TIME, DATE, DATETIME & TIMESTAMP, ascending order else- by default. $cfg['ProtectBinary'] boolean or string Defines whether BLOB or BINARY fields are protected from edition when browsing a table's content or not. Valid values are: - FALSE to allow edition of all fields; - blob to allow edition of all fields except BLOBS; - all to disallow edition of all BINARY or BLOB fields. $cfg['ShowFunctionFields'] boolean Defines whether MySQL functions fields should be displayed or not in edit/insert mode. $cfg['CharEditing'] string Defines which type of editing controls should be used for CHAR and VARCHAR fields. Possible values are: + input - this allows to limit size of text to size of field in MySQL, but has problems with newlines in fields + textarea - no problems with newlines in fields, but also no length limitations Default is old behavior so input. $cfg['ZipDump'] boolean $cfg['GZipDump'] boolean $cfg['BZipDump'] boolean Defines whether to allow the use of zip/GZip/BZip2 compression when creating a dump file or not. $cfg['CompressOnFly'] boolean Defines whether to allow on the fly compression for GZip/BZip2 compressed exports. This doesn't affect smaller dumps and allows to create larger dumps, that won't fit otherwise in memory due to php memory limit. Produced files contain more GZip/BZip2 headers, but all normal programs handle this correctly. $cfg['LightTabs'] string If set to True, do use less graphically intense tabs on the top of the mainframe. $cfg['PropertiesIconic'] string If set to True, will display icons instead of text for db and table properties links (like 'Browse', 'Select', 'Insert', ...). Can be set to 'both' if you want icons AND text. When set to False, will only show text. $cfg['PropertiesNumColumns'] integer How many columns will be utilized to display the tables on the database property view? Default is 1 column. When setting this to a value larger than 1, the type of the database will be omitted for more display space. $cfg['DefaultTabServer'] string Defines the tab displayed by default on server view. Possible values: "main.php" (recommended for multi-user setups), "server_databases.php","server_status.php","server_variables.php", "server_privileges.php" or "server_processlist.php". $cfg['DefaultTabDatabase'] string Defines the tab displayed by default on database view. Possible values: "db_details_structure.php", "db_details.php" or "db_search.php". $cfg['DefaultTabTable'] string Defines the tab displayed by default on table view. Possible values: "tbl_properties_structure.php", "tbl_properties.php", "tbl_select.php" or "tbl_change.php". $cfg['MySQLManualBase'] string If set to an URL which points to the MySQL documentation (type depends on $cfg['MySQLManualType']), appropriate help links are generated. See MySQL Documentation page for more information about MySQL manuals and their types. $cfg['MySQLManualType'] string Type of MySQL documentation: + old - old style used in phpMyAdmin 2.3.0 and earlier + searchable - "Searchable, with user comments" + chapters - "HTML, one page per chapter" + big - "HTML, all on one page" + none - do not show documentation links $cfg['DefaultLang'] string Defines the default language to use, if not browser-defined or user-defined. See the select_lang.lib.php script to know the valid values for this setting. $cfg['Lang'] string Force: always use this language (must be defined in the select_lang.lib.php script). $cfg['DefaultCharset'] string Default character set to use for recoding of MySQL queries. This must be enabled and it's described by $cfg['AllowAnywhereRecoding'] option. You can give here any character set which is in $cfg['AvailableCharsets'] array and this is just default choice, user can select any of them. $cfg['AllowAnywhereRecoding'] boolean Allow character set recoding of MySQL queries. You need recode or iconv support (compiled in or module) in PHP to allow MySQL queries recoding and used language file must have it enabled (by default only these which are in Unicode, just to avoid losing some characters). $cfg['RecodingEngine'] string You can select here which functions will be used for character set conversion. Possible values are: + auto - automatically use available one (first is tested iconv, then recode) + iconv - use iconv or libiconv functions + recode - use recode_string function Default is auto. $cfg['IconvExtraParams'] string Specify some parameters for iconv used in charset conversion. See iconv documentation for details. $cfg['AvailableCharsets'] array Available character sets for MySQL conversion. You can add your own (any of supported by recode/iconv) or remove these which you don't use. Character sets will be shown in same order as here listed, so if you frequently use some of these move them to the top. $cfg['GD2Available'] string Specifies whether GD >= 2 is available. If yes it can be used for MIME transformations. Possible values are: + auto - automatically detect, this is a bit expensive operation for php < 4.3.0 so it is preferred to change this according to your server real possibilities + yes - GD 2 functions can be used + no - GD 2 function cannot be used Default is auto. $cfg['LeftWidth'] integer Left frame width in pixel. See themes/themename/layout.inc.php. $cfg['LeftBgColor'] string [HTML color] $cfg['RightBgColor'] string [HTML color] The background colors (HTML) used for both the frames. See themes/themename/layout.inc.php. $cfg['RightBgImage'] string The URI of the background image used for the right frame. It must be an absolute URI. See themes/themename/layout.inc.php. $cfg['LeftPointerColor'] string [HTML color] The color (HTML) used for the pointer in the left frame (does not work with Netscape 4). See themes/themename/layout.inc.php. $cfg['LeftPointerEnable'] boolean A value of TRUE activates the left pointer (when LeftFrameLight is FALSE). $cfg['Border'] integer The size of a table's border. See themes/themename/layout.inc.php. $cfg['ThBgcolor'] string [HTML color] The color (HTML) used for table headers. See themes/themename/layout.inc.php. $cfg['BgcolorOne'] string [HTML color] The color (HTML) #1 for table rows. See themes/themename/layout.inc.php. $cfg['BgcolorTwo'] string [HTML color] The color (HTML) #2 for table rows. See themes/themename/layout.inc.php. $cfg['BrowsePointerColor'] string [HTML color] $cfg['BrowseMarkerColor'] string [HTML color] The colors (HTML) uses for the pointer and the marker in browse mode (does not work with Netscape 4). The former feature highlights the row over which your mouse is passing and the latter lets you visually mark/unmark rows by clicking on them. See themes/themename/layout.inc.php. $cfg['BrowsePointerEnable'] boolean Whether to activate the browse pointer or not. $cfg['BrowseMarkerEnable'] boolean Whether to activate the browse marker or not. $cfg['TextareaCols'] integer $cfg['TextareaRows'] integer $cfg['CharTextareaCols'] integer $cfg['CharTextareaRows'] integer Number of columns and rows for the textareas. This value will be emphasized (*2) for SQL query textareas and (*1.25) for SQL textareas inside the query window. The Char* values are used for CHAR and VARCHAR editing (if configured via $cfg['CharEditing']). $cfg['LongtextDoubleTextarea'] boolean Defines whether textarea for LONGTEXT fields should have double size. $cfg['TextareaAutoSelect'] boolean Defines if the whole textarea of the query box will be selected on click. $cfg['CtrlArrowsMoving'] boolean Enable Ctrl+Arrows (Option+Arrows in Safari) moving between fields when editing? $cfg['LimitChars'] integer Maximal number of Chars showed in any non-numeric field on browse view. Can be turned off by a toggle button on the browse page. $cfg['ModifyDeleteAtLeft'] boolean $cfg['ModifyDeleteAtRight'] boolean Defines the place where modify and delete links would be put when tables contents are displayed (you may have them displayed both at the left and at the right). "Left" and "right" are parsed as "top" and "bottom" with vertical display mode. $cfg['DefaultDisplay'] string $cfg['HeaderFlipType'] string There are 3 display modes: horizontal, horizontalflipped and vertical. Define which one is displayed by default. The first mode displays each row on a horizontal line, the second rotates the headers by 90 degrees, so you can use descriptive headers even though fields only contain small values and still print them out. The vertical mode sorts each row on a vertical lineup. The HeaderFlipType can be set to 'css' or 'faked'. When using 'css' the rotation of the header for horizontalflipped is done via CSS. If set to 'faked' PHP does the transformation for you, but of course this does not look as good as CSS. $cfg['DefaultPropDisplay'] string When editing/creating new columns in a table all fields normally get lined up one field a line. (default: 'horizontal'). If you set this to 'vertical' you can have each field lined up vertically beneath each other. You can save up a lot of place on the horizontal direction and no longer have to scroll. $cfg['ShowBrowseComments'] boolean $cfg['ShowPropertyComments'] boolean By setting the corresponding variable to TRUE you can enable the display of column comments in Browse or Property display. In browse mode, the comments are show inside the header. In property mode, comments are displayed using a CSS-formatted dashed-line below the name of the field. The comment is shown as a tool-tip for that field. $cfg['UploadDir'] string The name of the directory, where SQL files have been uploaded by other means than phpMyAdmin (for example, ftp). Those files are available under a drop-down box when you click the database name, then the SQL tab. Please note that the file names must have the suffix ".sql" (or ".sql.bz2" or ".sql.gz" if support for compressed formats is enabled). This feature is useful when your file is too big to be uploaded via HTTP, or when file uploads are disabled in PHP. Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. See also FAQ 1.16 for alternatives. $cfg['docSQLDir'] string The name of the directory, where docSQL files can be uploaded for import into phpMyAdmin. Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. $cfg['SaveDir'] string The name of the directory, where dumps can be saved. Please note that the directory has to be writable for user running webserver. Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. $cfg['TempDir'] string The name of the directory, where temporary files can be stored. This is needed for native MS Excel export, see FAQ 6.23 $cfg['Export'] array In this array are defined default parameters for export, names of items are similar to texts seen on export page, so you can easily identify what they mean. $cfg['RepeatCells'] integer Repeat the headers every X cells, or 0 to deactivate. $cfg['QueryFrame'] boolean $cfg['QueryFrameJS'] boolean $cfg['QueryWindowWidth'] integer $cfg['QueryWindowHeight'] integer $cfg['QueryHistoryDB'] boolean $cfg['QueryWindowDefTab'] string $cfg['QueryHistoryMax'] integer All those variables affect the query box feature. When $cfg['QueryFrame'] is set to true, a link or icon is displayed on the left panel. Clicking on it opens the query box, a direct interface to enter SQL queries. When $cfg['QueryFrameJS'] is set to true, clicking on that link opens the query box, a new custom sized browser window ($cfg['QueryWindowWidth'], $cfg['QueryWindowWidth'] - both integers for the size in pixels). Also, a click on [Edit] from the results page (in the "Showing Rows" section) opens the query box and puts the current query inside it. If set to false, clicking on the link only opens the SQL input in the main frame. The usage of the JavaScript query window is recommended if you have a JavaScript enabled browser. Basic functions are used to exchange quite a few variables, so most 4th generation browsers should be capable to use that feature. It currently is only tested with Internet Explorer 6 and Mozilla 1.x. If $cfg['QueryHistoryDB'] is set to TRUE, all your Queries are logged to a table, which has to be created by you (see $cfg['Servers'][$i]['history']). If set to FALSE, all your queries will be appended to the form, but only as long as your window is opened they remain saved. When using the JavaScript based query window, it will always get updated when you click on a new table/db to browse and will focus if you click on "Edit SQL" after using a query. You can suppress updating the query window by checking the box "Do not overwrite this query from outside the window" below the query textarea. Then you can browse tables/databases in the background without losing the contents of the textarea, so this is especially useful when composing a query with tables you first have to look in. The checkbox will get automatically checked whenever you change the contents of the textarea. Please uncheck the button whenever you definitely want the query window to get updated even though you have made alterations. If $cfg['QueryHistoryDB'] is set to TRUE you can specify the amount of saved history items using $cfg['QueryHistoryMax']. The query window also has a custom tabbed look to group the features. Using the variable $cfg['QueryWindowDefTab'] you can specify the default tab to be used when opening the query window. It can be set to either 'sql', 'files', 'history' or 'full'. $cfg['BrowseMIME'] boolean Enable MIME-transformations. $cfg['MaxExactCount'] integer Determines for how large tables phpMyAdmin should get exact row count by SELECT COUNT. If approximate row count is smaller than this value, SELECT COUNT will be used, otherwise only value returned by SHOW TABLE STATUS. This has currently an impact only on InnoDB tables. $cfg['WYSIWYG-PDF'] boolean Utilizes a WYSIWYG editing control to easily place elements of a PDF page. By clicking on the button 'toggle scratchboard' on the page where you edit x/y coordinates of those elements you can activate a scratchboard where all your elements are placed. By clicking on an element, you can move them around in the pre-defined area and the x/y coordinates will get updated dynamically. Likewise, when entering a new position directly into the input field, the new position in the scratchboard changes after your cursor leaves the input field. You have to click on the 'OK'-button below the tables to save the new positions. If you want to place a new element, first add it to the table of elements and then you can drag the new element around. By changing the paper size and the orientation you can change the size of the scratchboard as well. You can do so by just changing the dropdown field below, and the scratchboard will resize automatically, without interfering with the current placement of the elements. If ever an element gets out of range you can either enlarge the paper size or click on the 'reset' button to place all elements below each other. NOTE: You have to use a recent browser like IE6 or Mozilla to get this control to work. The basic Drag&Drop script functionality was kindly borrowed from www.youngpup.net and is underlying so specific license. $cfg['NaturalOrder'] boolean Sorts database and table names according to natural order (for example, t1, t2, t10). Currently implemented in the left panel (Light mode) and in Database view, for the table list. $cfg['ShowHttpHostTitle'] boolean Shows the HTTP host name in window's title bar. $cfg['SetHttpHostTitle'] string If $cfg['ShowHttpHostTitle'] is TRUE, it shows the real HTTP host name, unless an alternate name is set here. $cfg['ErrorIconic'] boolean Uses icons for warnings, errors and informations. $cfg['MainPageIconic'] boolean Uses icons on main page in lists, on right panel top menu and menu tabs. $cfg['ReplaceHelpImg'] boolean Shows a help button instead of the "Documentation" message. $cfg['ThemePath'] string If theme manager is active, use this as the path of the subdirectory containing all the themes. $cfg['ThemeManager'] boolean Enables user-selectable themes. See FAQ 2.7. $cfg['ThemeDefault'] string The default theme (a subdirectory under cfg['ThemePath']). $cfg['DefaultQueryTable'] string $cfg['DefaultQueryDatabase'] string Default queries that will be displayed in query boxes when user didn't specify any. Use %d for database name, %t for table name and %f for a comma separated list of field names. Note that %t and %f are only applicable to $cfg['DefaultQueryTable']. $cfg['SQP']['fmtType'] string [html|none] The main use of the new SQL Parser is to pretty-print SQL queries. By default we use HTML to format the query, but you can disable this by setting this variable to 'none'. $cfg['SQP']['fmtInd'] float $cfg['SQP']['fmtIndUnit'] string [em|px|pt|ex] For the pretty-printing of SQL queries, under some cases the part of a query inside a bracket is indented. By changing $cfg['SQP']['fmtInd'] you can change the amount of this indent. Related in purpose is $cfg['SQP']['fmtIndUnit'] which specifies the units of the indent amount that you specified. This is used via stylesheets. $cfg['SQP']['fmtColor'] array of string tuples This array is used to define the colours for each type of element of the pretty-printed SQL queries. The tuple format is class => [HTML colour code | empty string] If you specify an empty string for the color of a class, it is ignored in creating the stylesheet. You should not alter the class names, only the colour strings. Class name key: + comment Applies to all comment sub-classes + comment_mysql Comments as "#...\n" + comment_ansi Comments as "-- ...\n" + comment_c Comments as "/*...*/" + digit Applies to all digit sub-classes + digit_hex Hexadecimal numbers + digit_integer Integer numbers + digit_float Floating point numbers + punct Applies to all punctuation sub-classes + punct_bracket_open_round Opening brackets"(" + punct_bracket_close_round Closing brackets ")" + punct_listsep List item Separator "," + punct_qualifier Table/Column Qualifier "." + punct_queryend End of query marker ";" + alpha Applies to all alphabetic classes + alpha_columnType Identifiers matching a column type + alpha_columnAttrib Identifiers matching a database/table/column attribute + alpha_functionName Identifiers matching a MySQL function name + alpha_reservedWord Identifiers matching any other reserved word + alpha_variable Identifiers matching a SQL variable "@foo" + alpha_identifier All other identifiers + quote Applies to all quotation mark classes + quote_double Double quotes " + quote_single Single quotes ' + quote_backtick Backtick quotes ` $cfg['SQLValidator']['use'] boolean phpMyAdmin now supports use of the Mimer SQL Validator service, as originally published on Slashdot. For help in setting up your system to use the service, see the FAQ #6.14. $cfg['SQLValidator']['username'] string $cfg['SQLValidator']['password'] string The SOAP service allows you to login with anonymous and any password, so we use those by default. Instead, if you have an account with them, you can put your login details here, and it will be used in place of the anonymous login. $cfg['DBG']['enable'] boolean DEVELOPERS ONLY! Enable the DBG extension for debugging phpMyAdmin. Required for profiling the code. For help in setting up your system to this, see the Developers section. $cfg['DBG']['profile']['enable'] boolean DEVELOPERS ONLY! Enable profiling support for phpMyAdmin. This will append a chunk of data to the end of every page displayed in the main window with profiling statistics for that page. You may need to increase the maximum execution time for this to complete successfully. $cfg['DBG']['profile']['threshold'] float (units in milliseconds) DEVELOPERS ONLY! When profiling data is displayed, this variable controls the threshold of display for any profiling data, based on the average time each time has taken. If it is over the threshold it is displayed, otherwise it is not displayed. This takes a value in milliseconds. In most cases you don't need to edit this. $cfg['ColumnTypes'] array All possible types of a MySQL column. In most cases you don't need to edit this. $cfg['AttributeTypes'] array Possible attributes for fields. In most cases you don't need to edit this. $cfg['Functions'] array A list of functions MySQL supports. In most cases you don't need to edit this. $cfg['RestrictColumnTypes'] array Mapping of column types to meta types used for preferring displayed functions. In most cases you don't need to edit this. $cfg['RestrictFunctions'] array Functions preferred for column meta types as defined in $cfg['RestrictColumnTypes']. In most cases you don't need to edit this. $cfg['DefaultFunctions'] array Functions selected by default when insering/changing row, Functions are defined for meta types from $cfg['RestrictColumnTypes'] and for first_timestamp, which is used for first timestamp column in table. $cfg['NumOperators'] array Operators available for search operations on numeric and date fields. $cfg['TextOperators'] array Operators available for search operations on character fields. Note that we put LIKE by default instead of LIKE %...%, to avoid unintended performance problems in case of huge tables. $cfg['EnumOperators'] array Operators available for search operations on enum fields. $cfg['NullOperators'] array Additionnal operators available for search operations when the field can be null. Transformations Introduction - Usage - File structure [1. Introduction] To enable transformations, you have to setup the column_info table and th e proper directives. Please see the Configuration section on how to do s o. You can apply different transformations to the contents of each field. Th e transformation will take the content of each field and transform it wi th certain rules defined in the selected transformation. Say you have a field 'filename' which contains a filename. Normally you w ould see in phpMyAdmin only this filename. Using transformations you can transform that filename into a HTML link, so you can click inside of th e phpMyAdmin structure on the field's link and will see the file display ed in a new browser window. Using transformation options you can also sp ecify strings to append/prepend to a string or the format you want the o utput stored in. For a general overview of all available transformations and their options , you can consult your //libraries/ transformations/overview.php installation. For a tutorial on how to effectively use transformations, see our Link se ction on the official phpMyAdmin-homepage. [2. Usage] Go to your tbl_properties.inc.php page (i.e. reached through clicking on the 'properties' link for a table). There click on "Change" (or change i con) and there you will see three new fields at the end of the line. The y are called 'MIME-type', 'Browser transformation' and 'Transformation o ptions'. * The field 'MIME-type' is a dropdown field. You have the options to le ave that field empty or to use 'auto' [this feature is not yet available]. Please note that transformations are inactive as long as no MIME-type is selected. * The field 'Browser transformation' is a drop-down field. You can choo se from a hopefully growing amount of pre-defined transformations. See below for information on how to build your own transformation. There are global transformations and mimetype-bound transformations. Global transformations can be used for any mimetype. They will take the mimetype, if necessary, into regard. Mimetype-bound transformations usually only operate on a certain mimetype. There are transformations which operate on the main mimetype (like 'image'), which will most likely take the subtype into regard, and those who only operate on a specific subtype (like 'image/jpeg'). You can use transformations on mimetypes for which the function was not defined for. There is no security check for you selected the right transformation, so take care of what the output will be like. * The field 'Transformation options' is a free-type textfield. You have to enter transform-function specific options here. Usually the transforms can operate with default options, but it is generally a good idea to look up the overview to see which options are necessary. Much like the ENUM/SET-Fields, you have to split up several options using the format 'a','b','c',...(NOTE THE MISSING BLANKS). This is because internally the options will be parsed as an array, leaving the first value the first element in the array, and so forth. If you want to specify a MIME character set you can define it in the transformation_options. You have to put that outside of the pre-defined options of the specific mime-transform, as the last value of the set. Use the format "'; charset=XXX'". If you use a transform, for which you can specify 2 options and you want to append a character set, enter "'first parameter','second parameter','charset=us-ascii'". You can, however use the defaults for the parameters: "'','','charset=us-ascii'". [3. File structure] All mimetypes and their transformations are defined through single files in the directory 'libraries/transformations/'. They are stored in files to ease up customization and easy adding of new transformations. Because the user cannot enter own mimetypes, it is kept sure that transfo rmations always work. It makes no sense to apply a transformation to a m imetype, the transform-function doesn't know to handle. One can, however, use empty mime-types and global transformations which s hould work for many mimetypes. You can also use transforms on a differen t mimetype they where built for, but pay attention to option usage as we ll as what the transformation does to your field. There is a basic file called 'global.inc.php'. This function can be inclu ded by any other transform function and provides some basic functions. There are 5 possible file names: 1. A mimetype+subtype transform: [mimetype]_[subtype]__[transform].inc.php Please not that mimetype and subtype are separated via '_', which shall not be contained in their names. The transform function/filename may contain only characters which cause no problems in the file system as well as the PHP function naming convention. The transform function will the be called 'PMA_transform_[mimetype]_[subtype]__[transform]()'. Example: text_html__formatted.inc.php PMA_transform_text_html__formatted() 2. A mimetype (w/o subtype) transform: [mimetype]__[transform].inc.php Please note that there are no single '_' characters. The transform function/filename may contain only characters which cause no problems in the file system as well as the PHP function naming convention. The transform function will the be called 'PMA_transform_[mimetype]__[transform]()'. Example: text__formatted.inc.php PMA_transform_text__formatted() 3. A mimetype+subtype without specific transform function [mimetype]_[subtype].inc.php Please note that there are no '__' characters in the filename. Do not use special characters in the filename causing problems with the file system. No transformation function is defined in the file itself. Example: text_plain.inc.php (No function) 4. A mimetype (w/o subtype) without specific transform function [mimetype].inc.php Please note that there are no '_' characters in the filename. Do not use special characters in the filename causing problems with the file system. No transformation function is defined in the file itself. Example: text.inc.php (No function) 5. A global transform function with no specific mimetype global__[transform].inc.php The transform function will the be called 'PMA_transform_global__[transform]()'. Example: global__formatted PMA_transform_global__formatted() So generally use '_' to split up mimetype and subtype, and '__' to provid e a transform function. All filenames containing no '__' in themselves are not shown as valid tra nsform functions in the dropdown. Please see the libraries/transformations/TEMPLATE file for adding your ow n transform function. See the libraries/transformations/TEMPLATE_MIMETYP E for adding a mimetype without a transform function. Also note the intr oduction of a function description in the language files. For each funct ion a $strTransformation_[filename without .inc.php] has to exist. You can use the template generator to generate new functions and entries in the language file. To create a new transform function please see libraries/transformations/t emplate_generator.sh. To create a new, empty mimetype please see librari es/transformations/template_generator_mimetype.sh. A transform function always gets passed three variables: 1. $buffer - Contains the text inside of the column. This is the text, y ou want to transform. 2. $options - Contains any user-passed options to a transform function a s an array. 3. $meta - Contains an object with field information to your column. The data is drawn from the output of the mysql_fetch_field() function. This means, all object properties described on the manual page are available in this variable and can be used to transform a field accordingly to unsigned/zerofill/not_null/... properties. The $meta->mimetype variable contains the original MIME-type of the field (i.e. 'text/plain', 'image/jpeg' etc.) FAQ - Frequently Asked Questions Server - Configuration - Limitations - Multi-user - Browsers - Usage tips - Project - Security Please have a look at our Link section on the official phpMyAdmin homepag e for in-depth coverage of phpMyAdmin's features and/or interface. [1. Server] [1.1] I'm running PHP 4+ and my server is crashing each time a specific action is required or phpMyAdmin sends a blank page or a page full of cryptic characters to my browser, what can I do? There are some known PHP bugs with output buffering and compression. Try to set the $cfg['OBGzip'] directive to FALSE in your config.inc.php f ile and the zlib.output_compression directive to Off in your php configu ration file. Furthermore, we know about such problems connected to the release candida tes of PHP 4.2.0 (tested with PHP 4.2.0 RC1 to RC4) together with MS Int ernet Explorer. Please upgrade to the release version PHP 4.2.0. [1.2] My Apache server crashes when using phpMyAdmin. You should first try the latest versions of Apache (and possibly MySQL). See also the other FAQ entry about PHP bugs with output buffering. If your server keeps crashing, please ask for help in the various Apache support groups. [1.3] I'm running phpMyAdmin with "cookie" authentication mode under PHP 4.2.0 or 4.2.1 loaded as an Apache 2+ module but can't enter the script: I'm always displayed the login screen. This is a known PHP bug (see this bug report) from the official PHP bug d atabase. It means there is and won't be any phpMyAdmin fix against it be cause there is no way to code a fix. [1.4] Using phpMyAdmin on IIS, I'm displayed the error message: "The specified CGI application misbehaved by not returning a complete set of HTTP headers...". You just forgot to read the install.txt file from the php distribution. H ave a look at the last message in this bug report from the official PHP bug database. [1.5] Using phpMyAdmin on IIS, I'm facing crashes and/or many error messages with the HTTP or advanced authentication mode. This is a known problem with the PHP ISAPI filter: it's not so stable. Fo r some more information and complete testings see the messages posted by AndrH B. aka "djdeluxe76" in this thread from the phpWizard forum. Please use instead the cookie authentication mode. [1.6] I can't use phpMyAdmin on PWS: nothing is displayed! This seems to be a PWS bug. Filippo Simoncini found a workaround (at this time there is no better fix): remove or comment the DOCTYPE declaration s (2 lines) from the scripts header.inc.php, header_printview.inc.php, i ndex.php, left.php and libraries/common.lib.php. [1.7] How can I GZip or Bzip a dump or a CSV export. It does not seem to work. These features are based on the gzencode() and bzcompress() PHP functions to be more independent of the platform (Unix/Windows, Safe Mode or not, and so on). So, you must have PHP4 >= 4.0.4 and Zlib/Bzip2 support (--w ith-zlib and --with-bz2). We faced PHP crashes when trying to download a dump with MS Internet Expl orer when phpMyAdmin is run with a release candidate of PHP 4.2.0. In th is case you should switch to the release version of PHP 4.2.0. [1.8] I cannot insert a text file in a table, and I get an error about safe mode being in effect. Your uploaded file is saved by PHP in the "upload dir", as defined in php .ini by the variable upload_tmp_dir (usually the system default is /tmp) . We recommend the following setup for Apache servers running in safe mode, to enable uploads of files while being reasonably secure: * create a separate directory for uploads: mkdir /tmp/php * give ownership to the Apache server's user.group: chown apache.apache /tmp/php * give proper permission: chmod 600 /tmp/php * put upload_tmp_dir = /tmp/php in php.ini * restart Apache [1.9] I'm having troubles when uploading files. In general file uploads don't work on my system and uploaded files have a Content-Type: header in the first line. It's not really phpMyAdmin related but RedHat 7.0. You have a RedHat 7.0 and you updated your PHP RPM to php-4.0.4pl1-3.i386.rpm, didn't you? So the problem is that this package has a serious bug that was corrected ages ago in PHP (2001-01-28: see PHP's bug tracking system for more deta ils). The problem is that the bugged package is still available though i t was corrected (see RedHat's BugZilla for more details). So please download the fixed package (4.0.4pl1-9) and the problem should go away. And that fixes the \r\n problem with file uploads! [1.10] I'm having troubles when uploading files with phpMyAdmin running on a secure server. My browser is Internet Explorer and I'm using the Apache server. As suggested by "Rob M" in the phpWizard forum, add this line to your htt pd.conf: SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown It seems to clear up many problems between Internet Explorer and SSL. [1.11] I get an 'open_basedir restriction' while uploading a file from the query box. Since version 2.2.4, phpMyAdmin supports servers with open_basedir restri ctions. Assuming that the restriction allows you to open files in the cu rrent directory ('.'), all you have to do is create a 'tmp' directory un der the phpMyAdmin install directory, with permissions 777 and the same owner as the owner of your phpMyAdmin directory. The uploaded files will be moved there, and after execution of your SQL commands, removed. [1.12] I have lost my MySQL root password, what can I do? The MySQL manual explains how to reset the permissions. [1.13] I get an error 'No SQL query' when trying to execute a bookmark. If PHP does not have read/write access to its upload_tmp_dir, it cannot a ccess the uploaded query. [1.14] I get an error 'No SQL query' when trying to submit a query from the convenient text area. Check the post_max_size directive from your PHP configuration file and tr y to increase it. [1.15] I have problems with mysql.user field names. In older MySQL versions, the User and Password fields were named user and password. Please modify your field names to align with current standard s. [1.16] I cannot upload big dump files (memory, http or timeout problems). The first things to check (or ask your host provider to check) are the va lues of upload_max_filesize, memory_limit and post_max_size in the php.i ni configuration file. All of these three settings limit the maximum siz e of data that can be submitted and handled by PHP. One user also said t hat post_max_size and memory_limit need to be larger than upload_max_fil esize. There exist several workarounds if your upload is too big or your hosting provider is unwilling to change the settings: * Look at the $cfg['UploadDir'] feature. This allows one to upload a fi le to the server via scp, ftp, or your favorite file transfer method. PhpMyAdmin is then able to import the files from the temporary directory. More information is available in the Configuration section of this document. * Using a utility (such as BigDump) to split the files before uploading . We cannot support this or any third party applications, but are aware of users having success with it. * If you have shell (command line) access, use MySQL to import the file s directly. You can do this by issuing the "source" command from within MySQL: source filename.sql. [1.17] Which MySQL versions does phpMyAdmin support? All MySQL versions from 3.23.32 till 5.0 (except for 4.1.0 and 4.1.1) are fully supported. Please note that the older your MySQL version is, the more limitations you will have to face. phpMyAdmin may connect to your MySQL server using php's classic MySQL ext ension as well as the improved MySQL extension (MySQLi) that is availabl e in php 5.0. Either way, the developers of both extensions recommend to use the classi c extension for MySQL 4.0 and below and MySQLi for MySQL 4.1 and newer. When compiling php, we strongly recommend that you manually link the MySQ L extension of your choice to a MySQL client library of at least the sam e minor version since the one that is bundled with some php distribution s is rather old and might cause problems (see also FAQ 1.17a). MySQL 5.1 is not yet supported. [1.17a] I cannot connect to the MySQL server. It always returns the error message, "Client does not support authentication protocol requested by server; consider upgrading MySQL client" You tried to access MySQL with an old MySQL client library. The version o f your MySQL client library can be checked in your phpinfo() output. In general, it should have at least the same minor version as your server - as mentioned in FAQ 1.17. The only way to fix this problem is manually compiling php and its MySQL extension against a current MySQL client library. If you still face this problem, please compile your MySQL client library against the same or a newer MySQL release. [1.18] I'm running MySQL <= 4.0.1 having lower_case_table_names set to 1. If I create a new table with a capital letter in its name it is changed to lowercase as it should. But if I try to DROP this table MySQL is unable to find the corresponding file. This is a bug of MySQL <= 4.0.1. Please upgrade to at least MySQL 4.0.2 o r turn off your lower_case_table_names directive. [1.19] I can't run the "display relations" feature because the script seems not to know the font face I'm using! The "FPDF" library we're using for this feature requires some special fil es to use font faces. Please refers to the FPDF manual to build these files. [1.20] I receive the error "cannot load MySQL extension, please check PHP Configuration". To connect to a MySQL server, PHP needs a set of MySQL functions called " MySQL extension". This extension may be part of the PHP distribution (co mpiled-in), otherwise it needs to be loaded dynamically. Its name is pro bably mysql.so or php_mysql.dll. phpMyAdmin tried to load the extension but failed. Usually, the problem is solved by installing a software package called "P HP-MySQL" or something similar. [1.21] I am running the CGI version of PHP under Unix, and I cannot login using cookie auth. In php.ini, set mysql.max_links higher than 1. [1.22] I don't see the "Location of text file" field, so I cannot upload. This is most likely because in php.ini, your file_uploads parameter is no t set to "on". [1.23] I'm running MySQL on a Win32 machine. Each time I create a new table the table and field names are changed to lowercase! This happens because the MySQL directive lower_case_table_names defaults to 1 (ON) in the Win32 version of MySQL. You can change this behavior by simply changing the directive to 0 (OFF): Just edit your my.ini file that should be located in your Windows directo ry and add the following line to the group [mysqld]: set-variable = lower_case_table_names=0 Next, save the file and restart the MySQL service. You can always check t he value of this directive using the query SHOW VARIABLES LIKE 'lower_case_table_names'; [1.24] Some characters are being truncated in my queries, or I get characters randomly added. I am running PHP 4.2.3. This is a PHP 4.2.3 bug. [1.25] I am running Apache with mod_gzip-1.3.26.1a on Windows XP, and I get problems, such as undefined variables when I run a SQL query. A tip from Jose Fandos: put a comment on the following two lines in httpd .conf, like this: # mod_gzip_item_include file \.php$ # mod_gzip_item_include mime "application/x-httpd-php.*" as this version of mod_gzip on Apache (Windows) has problems handling PHP scripts. Of course you have to restart Apache. [1.26] I just installed phpMyAdmin in my document root of IIS but I get the error "No input file specified" when trying to run phpMyAdmin. This is a permission problem. Right-click on the phpmyadmin folder and ch oose properties. Under the tab Security, click on "Add" and select the u ser "IUSR_machine" from the list. Now set his permissions and it should work. [1.27] I get empty page when I want to view huge page (eg. db_details_structure.php with plenty of tables). This is a PHP bug that occur when GZIP output buffering is enabled. If yo u turn off it (by $cfg['OBGzip'] = FALSE in config.inc.php), it should w ork. This bug will be fixed in PHP 5.0.0. [1.28] My MySQL server sometimes refuses queries and returns the message 'Errorcode: 13'. What does this mean? This can happen due to a MySQL bug when having database / table names wit h upper case characters although lower_case_table_names is set to 1. To fix this, turn off this directive, convert all database and table names to lower case and turn it on again. Alternatively, there's a bug-fix ava ilable starting with MySQL 3.23.56 / 4.0.11-gamma. [1.29] When I create a table or modify a field, I get an error and the fields are duplicated. It is possible to configure Apache in such a way that PHP has problems in terpreting .php files. The problems occur when two different (and conflicting) set of directives are used: SetOutputFilter PHP SetInputFilter PHP & AddType application/x-httpd-php .php In the case we saw, one set of directives was in /etc/httpd/conf/httpd.co nf, while the other set was in /etc/httpd/conf/addon-modules/php.conf. The recommended way is with AddType, so just comment out the first set of lines and restart Apache: #SetOutputFilter PHP #SetInputFilter PHP [1.30] I get the error "left.php: Missing hash". This problem is known to happen when the server is running Turck MMCache but upgrading MMCache to version 2.3.21 solves the problem. [1.31] Does phpMyAdmin support php5? Yes. However, phpMyAdmin needs to be backwards compatible to php4. This is why you won't be able to run phpMyAdmin having enabled E_STRICT in your err or_reporting settings. [1.32] Can I use HTTP authentication with IIS? Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in ISAPI mode under IIS 5.1. 1. In your php.ini file, set cgi.rfc2616_headers = 0 2. In Web Site Properties -> File/Directory Security -> Anonymous Access dialog box, check the Anonymous access checkbox and uncheck any other checkboxes (i.e. uncheck Basic authentication, Integrated Windows authentication, and Digest if it's enabled.) Click OK. 3. In Custom Errors, select the range of 401;1 through 401;5 and click t he Set to Default button. [2. Configuration] [2.1] The error message "Warning: Cannot add header information - headers already sent by ..." is displayed, what's the problem? Edit your config.inc.php or .php file and ensure there is nothing (I.E. n o blank lines, no spaces, no characters...) neither before the tag at the end. [2.2] phpMyAdmin can't connect to MySQL. What's wrong? Either there is an error with your PHP setup or your username/password is wrong. Try to make a small script which uses mysql_connect and see if i t works. If it doesn't, it may be you haven't even compiled MySQL suppor t into PHP. [2.3] The error message "Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (111)..." is displayed. What can I do? For RedHat users, Harald Legner suggests this on the mailing list: On my RedHat-Box the socket of MySQL is /var/lib/mysql/mysql.sock. In you r php.ini you will find a line mysql.default_socket = /tmp/mysql.sock change it to mysql.default_socket = /var/lib/mysql/mysql.sock Then restart apache and it will work. Here is a fix suggested by Brad Ummer in the phpwizard forum: * First, you need to determine what socket is being used by MySQL. To do this, telnet to your server and go to the MySQL bin directory. In this directory there should be a file named mysqladmin. Type ./mysqladmin variables, and this should give you a bunch of info about your MySQL server, including the socket (/tmp/mysql.sock, for example). * Then, you need to tell PHP to use this socket. Assuming you are using PHP 3.0.10 or better, you can specify the socket to use when you open the connection. To do this in phpMyAdmin, you need to complete the socket information in the config.inc.php. For example: $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock'; Please also make sure that the permissions of this file allow to be readable by your webserver (i.e. '0755'). Have also a look at the corresponding section of the MySQL documentation. [2.4] Nothing is displayed by my browser when I try to run phpMyAdmin, what can I do? Try to set the $cfg['OBGZip'] directive to FALSE in the phpMyAdmin config uration file. It helps sometime. Also have a look at your PHP version number: if it contains "4.0b..." it means you're running a beta version of PHP. That's not a so good idea, p lease upgrade to a plain revision. [2.5] Each time I want to insert or change a record or drop a database or a table, an error 404 (page not found) is displayed or, with HTTP or cookie authentication, I'm asked to login again. What's wrong? Check the value you set for the $cfg['PmaAbsoluteUri'] directive in the p hpMyAdmin configuration file. [2.6] I get an "Access denied for user: 'root@localhost' (Using password: YES)"-error when trying to access a MySQL-Server on a host which is port-forwarded for my localhost. When you are using a port on your localhost, which you redirect via port- forwarding to another host, MySQL is not resolving the localhost as expe cted. Erik Wasser explains: The solution is: if your host is "localhost" MySQL (the commandline tool 'mysql' as well) always tries to use the socket co nnection for speeding up things. And that doesn't work in this configura tion with port forwarding. If you enter "127.0.0.1" as hostname, everything is right and MySQL uses the TCP connection. [2.7] Using and creating themes Themes are configured with $cfg['ThemePath'], $cfg['ThemeManager'] and $c fg['ThemeDefault']. Under $cfg['ThemePath'], you should not delete the directory "original" o r its underlying structure, because this is the system theme used by php MyAdmin. "original" contains all images and styles, for backwards compat ibility and for all themes that would not include images or css-files. If $cfg['ThemeManager'] is enabled, you can select your favorite theme on the main page. Your selected theme will be stored in a cookie. To create a theme: * make a new subdirectory (for example "your_theme_name") under $cfg['T hemePath'] (by default themes) * copy the files and directories from "original" to "your_theme_name" * edit the css-files in "your_theme_name/css" * put your new images in "your_theme_name/img" * edit layout.inc.php in "your_theme_name" * edit info.inc.php in "your_theme_name" to contain your chosen theme n ame, that will be visible in user interface * make a new screenshot of your theme and save it under "your_theme_nam e/screen.png" In theme directory there is file info.inc.php which contains theme verbos e name, theme generation and theme version. These versions and generatio ns are enumerated from 1 and do not have any direct dependance on phpMyA dmin version. Themes within same generation should be backwards compatib le - theme with version 2 should work in phpMyAdmin requiring version 1. Themes with different generation are incompatible. If you do not want to use your own symbols and buttons, remove the direct ory "img" in "your_theme_name". phpMyAdmin will use the default icons an d buttons (from the system-theme "original"). [2.8] I get "Missing parameters" errors, what can I do? Here are a few points to check: * In config.inc.php, try to leave the $cfg['PmaAbsoluteUri']directive e mpty. See also FAQ 4.7. * Maybe you have a broken PHP installation or you need to upgrade your Zend Optimizer. See http://bugs.php.net/bug.php?id=31134. * If you are using Hardened PHP with the ini directive varfilter.max_re quest_variables set to the default (200) or another low value, you could get this error if your table has a high number of columns. Adjust this setting accordingly. (Thanks to Klaus Dorninger for the hint). [3. Known limitations] [3.1] When using HTTP authentication, an user who logged out can not relogin in with the same nick. This is related to the authentication mechanism (protocol) used by phpMyA dmin. To bypass this problem: just close all the opened browser windows and then go back to phpMyAdmin. You should be able to log in again. [3.2] When dumping a large table in compressed mode, I get a memory limit error or a time limit error. Compressed dumps are built in memory and because of this are limited to p hp's memory limit. For GZip/BZip2 exports this can be overcome since 2.5 .4 using $cfg['CompressOnFly'] (enabled by default). Zip exports can not be handled this way, so if you need Zip files for larger dump, you have to use another way. [3.3] With InnoDB tables, I lose foreign key relationships when I rename or alter a table. This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). [3.4] I am unable to import dumps I created with the mysqldump tool bundled with the MySQL server distribution. The problem is that mysqldump creates invalid comments like this: -- MySQL dump 8.22 -- -- Host: localhost Database: database --------------------------------------------------------- -- Server version 3.23.54 The invalid part of the code is the horizontal line made of dashes that a ppears once in every dump created with mysqldump. If you want to run you r dump you have to turn it into valid MySQL. This means, you have to add a whitespace after the first two dashes of the line or add a # before i t: -- ------------------------------------------------------- or #--------------------------------------------------------- [3.5] When using nested folders ($cfg['LeftFrameTableSeparator']) there are some multiple hierarchies displayed in a wrong manner?! Please note that you should not use the separating string multiple times without any characters between them, or at the beginning/end of your tab le name. If you have to, think about using another TableSeparator or dis abling that feature [3.6] What is currently not supported in phpMyAdmin about InnoDB? In Relation view, being able to choose a table in another database, or ha ving more than one index field in the foreign key. In Query-by-example (Query), automatic generation of the query LEFT JOIN from the foreign table. In PDF schema editing, automatic layout. [3.7] I have table with many (100+) fields and when I try to browse table I get series of errors like "Warning: unable to parse url". How can this be fixed? Your table neither have a primary key nor an unique one, so we must use a long expression to identify this row. This causes problems to parse_url function. The workaround is to create a primary or unique key. [3.8] I cannot use (clickable) HTML-forms in fields where I put a MIME-Transformation onto! Due to a surrounding form-container (for multi-row delete checkboxes), no nested forms can be put inside the table where phpMyAdmin displays the results. You can, however, use any form inside of a table if keep the pa rent form-container with the target to tbl_row_delete.php and just put y our own input-elements inside. If you use a custom submit input field, t he form will submit itself to the displaying page again, where you can v alidate the $HTTP_POST_VARS in a transformation. For a tutorial on how t o effectively use transformations, see our Link section on the official phpMyAdmin-homepage. [3.9] I get error messages when using "--sql_mode=ANSI" for the MySQL server When MySQL is running in ANSI-compatibility mode, there are some major di fferences in how SQL is structured (see http://dev.mysql.com/doc/mysql/e n/ANSI_mode.html). Most important of all, the quote-character (") is int erpreted as an identifier quote character and not as a string quote char acter, which makes many internal phpMyAdmin operations into invalid SQL statements. There is no workaround to this behaviour. News to this item will be posted in Bug report #816858 [3.10] Homonyms and no primary key: When the results of a SELECT display more that one column with the same value (for example SELECT lastname from employees where firstname like 'A%' and two "Smith" values are displayed), if I click Edit I cannot be sure that I am editing the intended row. Please make sure that your table has a primary key, so that phpMyAdmin ca n use it for the Edit and Delete links. [3.11] The number of records for InnoDB tables is not correct. phpMyAdmin uses a quick method to get the row count, and this method only returns an approximate count in the case of InnoDB tables. See $cfg['Ma xExactCount'] for a way to modify those results, but this could have a s erious impact on performance. [3.12] What are the phpMyAdmin limitations for MySQL 3? The number of records in queries containing COUNT and GROUP BY is not cor rectly calculated. Also, sorting results of a query like "SELECT * from table GROUP BY" ... is problematic. [3.13] I get an error when entering USE followed by a db name containing an hyphen. The tests I have made with current MySQL 4.1.11 API shows that the API do es not accept this syntax for the USE command. Enclosing the db name wit h backquotes works. For further confusion, no backquotes are needed with command-line mysql. [4. ISPs, multi-user installations ] [4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need to install it for each customer. Since version 2.0.3, you can setup a central copy of phpMyAdmin for all y our users. The development of this feature was kindly sponsored by NetCo logne GmbH. This requires a properly setup MySQL user management and php MyAdmin HTTP or cookie authentication. See the install section on "Using HTTP authentication". [4.2] What's the preferred way of making phpMyAdmin secure against evil access. This depends on your system. If you're running a server which cannot be accessed by other people, it's sufficient to use the directory protection bundled with your webserver (with Apache you can use .htaccess files, for example). If other people have telnet access to your server, you should use phpMyAd min's HTTP authentication feature. Suggestions: * Your config.inc.php file should be chmod 660. * All your phpMyAdmin files should be chown -R phpmy.apache, where phpm y is a user whose password is only known to you, and apache is the group under which Apache runs. * You should use PHP safe mode, to protect from other users that try to include your config.inc.php in their scripts. [4.3] I get errors about not being able to include a file in /lang or in /libraries. Check php.ini, or ask your sysadmin to check it. The include_path must co ntain "." somewhere in it, and open_basedir, if used, must contain "." a nd "./lang" to allow normal operation of phpMyAdmin. [4.4] phpMyAdmin always gives "Access denied" when using HTTP authentication. This could happen for several reasons: * $cfg['Servers'][$i]['controluser'] and/or $cfg['Servers'][$i]['contro lpass'] are wrong. * The username/password you specify in the login-dialog are invalid. * You have already setup a security mechanism for the phpMyAdmin-direct ory, eg. a .htaccess file. This would interfere with phpMyAdmin's authentication, so remove it. [4.5] Is it possible to let users create their own databases? Starting with 2.2.5, in the user management page, you can enter a wildcar d database name for a user (for example "joe%"), and put the privileges you want. For example, adding SELECT, INSERT, UPDATE, DELETE, CREATE, DR OP, INDEX, ALTER would let a user create/manage his/her database(s). [4.6] How can I use the Host-based authentication additions? If you have existing rules from an old .htaccess file, you can take them and add a username between the 'deny'/'allow' and 'from' strings. Using the username wildcard of '%' would be a major benefit here if your insta llation is suited to using it. Then you can just add those updated lines into the $cfg['Servers'][$i]['AllowDeny']['rules'] array. If you want a pre-made sample, you can try this fragment. It stops the 'r oot' user from logging in from any networks other than the private netwo rk IP blocks. //block root from logging in except from the private networks $cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow'; $cfg['Servers'][$i]['AllowDeny']['rules'] = array( 'deny root from all', 'allow root from localhost', 'allow root from 10.0.0.0/8', 'allow root from 192.168.0.0/16', 'allow root from 172.16.0.0/12', ); [4.7] Authentication window is displayed more than once, why? This happens if you are using a URL to start phpMyAdmin which is differen t than the one set in your $cfg['PmaAbsoluteUri']. For example, a missin g "www", or entering with an IP address while a domain name is defined i n the config file. [5. Browsers or client OS] [5.1] I get an out of memory error, and my controls are non-functional, when trying to create a table with more than 14 fields. We could reproduce this problem only under Win98/98SE. Testing under WinN T4 or Win2K, we could easily create more than 60 fields. A workaround is to create a smaller number of fields, then come back to y our table properties and add the other fields. [5.2] With Xitami 2.5b4, phpMyAdmin won't process form fields. This is not a phpMyAdmin problem but a Xitami known bug: you'll face it w ith each script/website that use forms. Upgrade or downgrade your Xitami server. [5.3] I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2). With Konqueror 2.1.1: plain dumps, zip and GZip dumps work ok, except tha t the proposed file name for the dump is always 'tbl_dump.php'. Bzip2 du mps don't seem to work. With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the use r's temporary directory, so they must be moved before closing Konqueror, or else they disappear. GZip dumps give an error message. Testing needs to be done for Konqueror 2.2.2. [5.4] I can't use the cookie authentication mode because Internet Explorer never stores the cookies. MS Internet Explorer seems to be really buggy about cookies, at least til l version 6. And thanks to Andrew Zivolup we've traced also a PHP 4.1.1 bug in this area! Then, if you're running PHP 4.1.1, try to upgrade or downgrade... it may work! [5.5] In Internet Explorer 5.0, I get JavaScript errors when browsing my rows. Upgrade to at least Internet Explorer 5.5 SP2. [5.6] In Internet Explorer 5.0, 5.5 or 6.0, I get an error (like "Page not found") when trying to modify a row in a table with many fields, or with a text field Your table neither have a primary key nor an unique one, so we must use a long URL to identify this row. There is a limit on the length of the UR L in those browsers, and this not happen in Netscape, for example. The w orkaround is to create a primary or unique key, or use another browser. [5.7] I refresh (reload) my browser, and come back to the welcome page. Some browsers support right-clicking into the frame you want to refresh, just do this in the right frame. [5.8] With Mozilla 0.9.7 I have problems sending a query modified in the query box. Looks like a Mozilla bug: 0.9.6 was OK. We will keep an eye on future Moz illa versions. [5.9] With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can't type a whitespace in the SQL-Query edit area: the page scrolls down. This is a Mozilla bug (see bug #26882 at BugZilla). [5.10] With Netscape 4.75 I get empty rows between each row of data in a CSV exported file. This is a known Netscape 4.75 bug: it adds some line feeds when exporting data in octet-stream mode. Since we can't detect the specific Netscape version, we cannot workaround this bug. [5.11] Extended-ASCII characters like German umlauts are displayed wrong. Please ensure that you have set your browser's character set to the one o f the language file you have selected on phpMyAdmin's start page. Altern atively, you can try the auto detection mode that is supported by the re cent versions of the most browsers. [5.12] Apple OS X: Safari browser changes special characters to "?". This issue has been reported by a OS X user, who adds that Chimera, Netsc ape and Mozilla do not have this problem. [5.13] With Internet Explorer 5.5 or 6, and HTTP authentication type, I cannot manage two servers: I login to the first one, then the other one, but if I switch back to the first, I have to login on each operation. This is a bug in Internet Explorer, other browsers do not behave this way . [5.14] Using Opera6, I can manage to get to the authentication, but nothing happens after that, only a blank screen. Having $cfg['QueryFrameJS'] set to TRUE, this leads to a bug in Opera6, b ecause it is not able to interpret frameset definitiions written by Java Script. Please upgrade to Opera7 at least. [5.15] I have display problems with Safari. Please upgrade to at least version 1.2.3. [5.16] With Internet Explorer, I get "Access is denied" Javascript errors. Or I cannot make phpMyAdmin work under Windows. Please check the following points: * Maybe you have defined your PmaAbsoluteUri setting in config.inc.php to an IP address and you are starting phpMyAdmin with a URL containing a domain name, or the reverse situation. * Security settings in IE and/or Microsoft Security Center are too high , thus blocking scripts execution. * The Windows Firewall is blocking Apache and MySQL. You must allow htt p ports (80 or 443) and MySQL port (usually 3306) in the "in" and "out" directions. [5.17] With Firefox, I cannot delete rows of data or drop a database. Many users have confirmed that the Tabbrowser Extensions plugin they inst alled in their Firefox is causing the problem. [6. Using phpMyAdmin] [6.1] I can't insert new rows into a table / I can't create a table - MySQL brings up a SQL-error. Examine the SQL error with care. Often the problem is caused by specifyin g a wrong field-type. Common errors include: * Using VARCHAR without a size argument * Using TEXT or BLOB with a size argument Also, look at the syntax chapter in the MySQL manual to confirm that your syntax is correct. [6.2] When I create a table, I click the Index checkbox for 2 fields and phpMyAdmin generates only one index with those 2 fields. In phpMyAdmin 2.2.0 and 2.2.1, this is the way to create a multi-fields i ndex. If you want two indexes, create the first one when creating the ta ble, save, then display the table properties and click the Index link to create the other index. [6.3] How can I insert a null value into my table? Since version 2.2.3, you have a checkbox for each field that can be null. Before 2.2.3, you had to enter "null", without the quotes, as the field 's value. Since version 2.5.5, you have to use the checkbox to get a rea l NULL value, so if you enter "NULL" this means you want a literal NULL in the field, and not a NULL value (this works in PHP4). [6.4] How can I backup my database or table? Click on a database or table name in the left frame, the properties will be displayed. Then on the menu, click "Export", you can dump the structu re, the data, or both. This will generate standard SQL statements that c an be used to recreate your database/table. You will need to choose "Save as file", so that phpMyAdmin can transmit t he resulting dump to your station. Depending on your PHP configuration, you will see options to compress the dump. See also the $cfg['ExecTimeLi mit'] configuration variable. For additional help on this subject, look for the word "dump" in this doc ument. [6.5] How can I restore (upload) my database or table using a dump? How can I run a ".sql" file. Click on a database name in the left frame, the properties will be local displayed. Then in the "Run SQL query" section, type in your dump filena me, or use the Browse button. Then click Go. For additional help on this subject, look for the word "upload" in this d ocument. [6.6] How can I use the relation table in Query-by-example? Here is an example with the tables persons, towns and countries, all loca ted in the database mydb. If you don't have a pma_relation table, create it as explained in the configuration section. Then create the example t ables: CREATE TABLE REL_countries ( country_code char(1) NOT NULL default '', description varchar(10) NOT NULL default '', PRIMARY KEY (country_code) ) TYPE=MyISAM; INSERT INTO REL_countries VALUES ('C', 'Canada'); CREATE TABLE REL_persons ( id tinyint(4) NOT NULL auto_increment, person_name varchar(32) NOT NULL default '', town_code varchar(5) default '0', country_code char(1) NOT NULL default '', PRIMARY KEY (id) ) TYPE=MyISAM; INSERT INTO REL_persons VALUES (11, 'Marc', 'S', ''); INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C'); CREATE TABLE REL_towns ( town_code varchar(5) NOT NULL default '0', description varchar(30) NOT NULL default '', PRIMARY KEY (town_code) ) TYPE=MyISAM; INSERT INTO REL_towns VALUES ('S', 'Sherbrooke'); INSERT INTO REL_towns VALUES ('M', 'MontrHal'); To setup appropriate links and display information: * on table "REL_persons" click Structure, then Relation view * in Links, for "town_code" choose "REL_towns->code" * in Links, for "country_code" choose "REL_countries->country_code" * on table "REL_towns" click Structure, then Relation view * in "Choose field to display", choose "description" * repeat the two previous steps for table "REL_countries" Then test like this: * Click on your db name in the left frame * Choose "Query" * Use tables: persons, towns, countries * Click "Update query" * In the fields row, choose persons.person_name and click the "Show" ti ckbox * Do the same for towns.description and countries.descriptions in the o ther 2 columns * Click "Update query" and you will see in the query box that the corre ct joins have been generated * Click "Submit query" [6.7] How can I use the "display field" feature? Starting from the previous example, create the pma_table_info as explaine d in the configuration section, then browse your persons table, and move the mouse over a town code or country code. See also FAQ 6.21 for an additionnal feature that "display field" enables : drop-down list of possible values. [6.8] How can I produce a PDF schema of my database? First the configuration variables "relation", "table_coords" and "pdf_pag es" have to be filled in. Then you need to think about your schema layout. Which tables will go on which pages? * Select your database in the left frame. * Choose "Operations" in the navigation bar at the top. * Choose "Edit PDF Pages" near the bottom of the page. * Enter a name for the first PDF page and click Go. If you like, you ca n use the "automatic layout," which will put all your linked tables onto the new page. * Select the name of the new page (the action choice being set to Edit) and click Go. * Select a table from the list, enter its coordinates and click Go. Coordinates are relative; your diagram will be automatically scaled to fit the page. When initially placing tables on the page, just pick any coordinates -- say, 50x50. After clicking Go, you can then use the graphical editor to position the element correctly. * When you'd like to look at your PDF, first be sure to click the Go bu tton beneath the list of tables and coordinates, to save any changes you made there. Then scroll all the way down, select the PDF options you want, and click Go. * Internet Explorer for Windows may suggest an incorrect filename when you try to save a generated PDF. When saving a generated PDF, be sure that the filename ends in ".pdf", for example "schema.pdf". Browsers on other operating systems, and other browsers on Windows, do not have this problem. [6.9] phpMyAdmin is changing the type of one of my columns! No, it's MySQL that is doing silent column type changing. [6.10] When creating a privilege, what happens with underscores in the database name? If you do not put a backslash before the underscore, this is a wildcard g rant, and the underscore means "any character". So, if the database name is "john_db", the user would get rights to john1db, john2db... If you put a backslash before the underscore, it means that the database name will have a real underscore. [6.11] What is the curious symbol W in the statistics pages? It means "average". [6.12] I want to understand some Export options. Structure: * "Add DROP TABLE" will add a line telling MySQL to drop the table, if it already exists during the import. It does NOT drop the table after your export, it only affects the import file. * "If Not Exists" will only create the table if it doesn't exist. Other wise, you may get an error if the table name exists but has a different structure. * "Add AUTO_INCREMENT value" ensures that AUTO_INCREMENT value (if any) will be included in backup. * "Enclose table and field names with backquotes" ensures that field an d table names formed with special characters are protected. * "Add into comments" includes column comments, relations, and MIME typ es set in the pmadb in the dump as SQL comments (/* xxx */). Data: * "Complete inserts" adds the column names on every INSERT command, for better documentation (but resulting file is bigger). * "Extended inserts" provides a shorter dump file by using only once th e INSERT verb and the table name. * "Delayed inserts" are best explained in the MySQL manual. * "Ignore inserts" treats errors as a warning instead. Again, more info is provided in the MySQL manual, but basically with this selected, invalid values are adjusted and inserted rather than causing the entire statement to fail. [6.13] I would like to create a database with a dot in its name. This is a bad idea, because in MySQL the syntax "database.table" is the n ormal way to reference a database and table name. Worse, MySQL will usua lly let you create a database with a dot, but then you cannot work with it, nor delete it. [6.14] How do I set up the SQL Validator? To use it, you need a very recent version of PHP, 4.3.0 recommended, with XML, PCRE and PEAR support. On your system command line, run "pear inst all Net_Socket Net_URL HTTP_Request Mail_Mime Net_DIME SOAP" to get the necessary PEAR modules for usage. On a more recent pear version, I had problems with the state of Net_DIME being beta, so this single command "pear -d preferred_state=beta install -a SOAP" installed all the needed modules. If you use the Validator, you should be aware that any SQL statement you submit will be stored anonymously (database/table/column names, strings, numbers replaced with generic values). The Mimer SQL Validator itself, is 2001 Upright Database Technology. We utilize it as free SOAP servic e. [6.15] I want to add a BLOB field and put an index on it, but MySQL says "BLOB column '...' used in key specification without a key length". The right way to do this, is to create the field without any indexes, the n display the table structure and use the "Create an index" dialog. On t his page, you will be able to choose your BLOB field, and set a size to the index, which is the condition to create an index on a BLOB field. [6.16] How can I simply move in page with plenty editing fields? You can use Ctrl+arrows (Option+Arrows in Safari) for moving on most page s with many editing fields (table structure changes, row editing, etc.) (must be enabled in configuration - see. $cfg['CtrlArrowsMoving']). You can also have a look at the directive $cfg['DefaultPropDisplay'] ('verti cal') and see if this eases up editing for you. [6.17] Transformations: I can't enter my own mimetype! WTF is this feature then useful for? Slow down :). Defining mimetypes is of no use, if you can't put transform ations on them. Otherwise you could just put a comment on the field. Bec ause entering your own mimetype will cause serious syntax checking issue s and validation, this introduces a high-risk false-user-input situation . Instead you have to initialize mimetypes using functions or empty mime type definitions. Plus, you have a whole overview of available mimetypes. Who knows all tho se mimetypes by heart so he/she can enter it at will? [6.18] Bookmarks: Where can I store bookmarks? Why can't I see any bookmarks below the query box? What is this variable for? Any query you have executed can be stored as a bookmark on the page where the results are displayed. You will find a button labeled 'Bookmark thi s query' just at the end of the page. As soon as you have stored a bookmark, it is related to the database you run the query on. You can now access a bookmark dropdown on each page, t he query box appears on for that database. Since phpMyAdmin 2.5.0 you are also able to store variables for the bookm arks. Just use the string /*[VARIABLE]*/ anywhere in your query. Everyth ing which is put into the value input box on the query box page will rep lace the string "/*[VARIABLE]*/" in your stored query. Just be aware of that you HAVE to create a valid query, otherwise your query won't be eve n able to be stored in the database. Also remember, that everything else inside the /*[VARIABLE]*/ string for your query will remain the way it is, but will be stripped of the /**/ c hars. So you can use: /*, [VARIABLE] AS myname */ which will be expanded to , VARIABLE as myname in your query, where VARIABLE is the string you entered in the input box. If an empty string is provided, no replacements are made. A more complex example. Say you have stored this query: SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE] %' */ Say, you now enter "phpMyAdmin" as the variable for the stored query, the full query will be: SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%' You can use multiple occurences of /*[VARIABLE]*/ in a single query. NOTE THE ABSENCE OF SPACES inside the "/**/" construct. Any spaces insert ed there will be later also inserted as spaces in your query and may lea d to unexpected results especially when using the variable expansion ins ide of a "LIKE ''" expression. Your initial query which is going to be stored as a bookmark has to yield at least one result row so you can store the bookmark. You may have tha t to work around using well positioned "/**/" comments. [6.19] How can I create simple LaTeX document to include exported table? You can simply include table in your LaTeX documents, minimal sample docu ment should look like following one (assuming you have table exported in file table.tex): \documentclass{article} % or any class you want \usepackage{longtable} % for displaying table \begin{document} % start of document \include{table} % including exported table \end{document} % end of document [6.20] In MySQL 4, I see a lot of databases which are not mine, and cannot access them. Upgrading to MySQL 4 usually gives users those global privileges: CREATE TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also ena bles users to see all the database names, until you upgrade the grant ta bles as described in the MySQL manual. See this bug report. So if your users do not need those privileges, you can remove them and th eir databases list will shorten. [6.21] In edit/insert mode, how can I see a list of possible values for a field, based on some foreign table? You have to setup appropriate links between the tables, and also setup th e "display field" in the foreign table. See FAQ 6.6 for an example. Then , if there are 200 values or less in the foreign table, a drop-down list of values will be available. You will see two lists of values, the firs t list containing the key and the display field, the second list contain ing the display field and the key. The reason for this is to be able to type the first letter of either the key or the display field. For 200 values or more, a distinct window will appear, to browse foreign key values and choose one. [6.22] Bookmarks: Can I execute a default bookmark automatically when entering Browse mode for a table? Yes. If a bookmark has the same label as a table name, it will be execute d. [6.23] Export: I heard phpMyAdmin can export Microsoft Excel files, how can I enable that? Current version does support direct export ot Microsoft Excel and Word ve rsions 2000 and newer. If you need export older versions, you can use CS V suitable for Microsoft Excel, which works out of the box or you can tr y native experimental MS Excel exporter. This export has several problem s, most important are limitation of cell content to 255 chars and no sup port for charsets, so think carefully whether you want to enable this.. For enabling this you need to set $cfg['TempDir'] to place where web ser ver user can write (for example './tmp') and install PEAR module Spreads heet_Excel_Writer into php include path. The installation can be done by following command: pear -d preferred_state=beta install -a Spreadsheet_Excel_Writer First part of switches set we want to install beta version of that module (no stable version available yet) and then we tell pear we want to sati sfy dependencies. If you are running in PHP safe mode, you will have to set in php.ini the safe_mode_include_dir to the directory where your PEAR modules are locat ed, for example: safe_mode_include_dir = /usr/local/lib/php To create the temporary directory on a UNIX-based system, you can do: cd phpMyAdmin mkdir tmp chmod o+rwx tmp [6.24] Now that phpMyAdmin supports native MySQL 4.1.x column comments, what happens to my column comments stored in pmadb? Automatic migration of a table's pmadb-style column comments to the nativ e ones is done whenever you enter Structure page for this table. [7. phpMyAdmin project] [7.1] I have found a bug. How do I inform developers? Our Bug Tracker is located at http://sourceforge.net/projects/phpmyadmin/ under the Bugs section. But please first discuss your bug with other users: http://sourceforge.net/projects/phpmyadmin/ (and choose Forums) [7.2] I want to translate the messages to a new language or upgrade an existing language, where do I start? Always use the current CVS version of your language file. For a new langu age, start from english-iso-8859-1.inc.php. If you don't know how to get the CVS version, please ask one of the developers. Please note that we try not to use HTML entities like é in the tra nslations, since we define the right character set in the file. With HTM L entities, the text on JavaScript messages would not display correctly. However there are some entities that need to be there, for quotes ,non- breakable spaces, ampersands, less than, greater than. You can then put your translations, as a zip file to avoid losing special characters, on the sourceforge.net translation tracker. It would be a good idea to subscribe to the phpmyadmin-translators mailin g list, because this is where we ask for translations of new messages. [7.3] I would like to help out with the development of phpMyAdmin. How should I proceed? The following method is preferred for new developers: 1. fetch the current CVS tree over anonymous CVS: cvs -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin login [Password: simply press the Enter key] cvs -z3 -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin checkout phpMyAdmin [This will create a new sub-directory named phpMyAdmin] 2. add your stuff 3. put the modified files (tar'ed and gzip'ed) inside the patch tracker of the phpMyAdmin SourceForge account. Write access to the CVS tree is granted only to experienced developers wh o have already contributed something useful to phpMyAdmin. Also, have a look at the Developers section. [8. Security ] [8.1] Security alert, dated 2003-06-18. Last update of this FAQ: 2003-07-22. The phpMyAdmin development team received notice of this security alert: h ttp://www.securityfocus.com/archive/1/325641. The team regrets that the author did not communicate with us before sendi ng this alert. However, here is our current reply to the points mentionn ed: * "Directory transversal attack" This problem had been fixed in version 2.5.0, even if the author reports the 2.5.2 development version as vulnerable, which we could not reproduce. * "Remote local file retrieving" This is a misleading title, as the author tells in his text: "Note that you can't request files ( only dirs )". * "Remote internal directory listing" It was possible to retrieve the list of phpMyAdmin's directory (which we doubt can cause any damage), but we fixed this in the 2.5.2 version. * "XSS and Path disclosures" Most of the XSS problems have been fixed in version 2.5.0. The rest have been fixed in the 2.5.2 version. We believe that the Path disclosures problems have also been fixed in version 2.5.2. * "Information encoding weakness" We believe that an exploit for this weakness would be difficult to achieve. However version 2.5.2 now encrypts the password with the well-known blowfish algorithm. [8.2] Security alert, dated 2004-06-29. Last update of this FAQ: 2004-06-30. The phpMyAdmin development team received notice of this security alert: h ttp://securityfocus.com/archive/1/367486/2004-06-26/2004-07-02/0 We would like to put emphasis on the disappointment we feel when a bugrep orter does not contact the authors of a software first, before posting a ny exploits. The common way to report this, is to give the developers a reasonable amount of time to respond to an exploit before it is made pub lic. We acknowledge that phpMyAdmin versions 2.5.1 to 2.5.7 are vulnerable to this problem, if each of the following conditions are met: * The Web server hosting phpMyAdmin is not running in safe mode. * In config.inc.php, $cfg['LeftFrameLight'] is set to FALSE (the defaul t value of this parameter is TRUE). * There is no firewall blocking requests from the Web server to the att acking host. Version 2.5.7-pl1 was released with a fix for this vulnerability. [8.3] About new security alerts Please refer to http://www.phpmyadmin.net for the complete list of securi ty alerts. Developers Information phpMyAdmin is Open Source, so you're invited to contribute to it. Many gr eat features have been written by other people and you too can help to m ake phpMyAdmin a useful tool. If you're planning to contribute source, please read the following inform ation: * All files include header.inc.php (layout), libraries/common.lib.php ( common functions) and config.inc.php. Only configuration data should go in config.inc.php. Please keep it free from other code. Commonly used functions should be added to libraries/common.lib.php and more specific ones may be added within a library stored into the libraries sub-directory. * Obviously, you're free to use whatever coding style you want. But ple ase try to keep your code as simple as possible: beginners are using phpMyAdmin as an example application. As far as possible, we want the scripts to be XHTML1.0 and CSS2 compliant on one hand, they fit the PEAR coding standards on the other hand. Please pay attention to this. * Please try to keep up the file-naming conventions. Table-related stuf f goes to tbl_*.php, db-related code to db_*.php, server-related tools to server_*.php and so on. * Please don't use verbose strings in your code, instead add the string (at least) to english-iso-8859-1.inc.php and print() it out. * If you want to be really helpful, write an entry for the ChangeLog. * The DBG extension (PHP Debugger DBG) is now supported by phpMyAdmin f or developers to better debug and profile their code. Please see the $cfg['DBG']* configuration options for more information. This is in memoriam of the Space Shuttle Columbia (STS-107) which was lost during its re-entry into Earth's atmosphere and in memory of the brave men and women who gave their lives for the people of Earth. Credits phpMyAdmin - Credits ==================== CREDITS, in chronological order ------------------------------- - Tobias Ratschiller * creator of the phpmyadmin project * maintainer from 1998 to summer 2000 - Marc Delisle * multi-language version * various fixes and improvements * SQL analyser (most of it) * current project maintainer - Olivier M[ller * started SourceForge phpMyAdmin project in March 2001 * sync'ed different existing CVS trees with new features and bugfixes * multi-language improvements, dynamic language selection * current project maintainer * many bugfixes and improvements - LoNc Chapeaux * rewrote and optimized javascript, DHTML and DOM stuff * rewrote the scripts so they fit the PEAR coding standards and generate XHTML1.0 and CSS2 compliant codes * improved the language detection system * many bugfixes and improvements - Robin Johnson * database maintenance controls * table type code * Host authentication IP Allow/Deny * DB-based configuration (Not completed) * SQL parser and pretty-printer * SQL validator * many bugfixes and improvements - Armel Fauveau * bookmarks feature * multiple dump feature * gzip dump feature * zip dump feature - Geert Lund * various fixes * moderator of the phpMyAdmin users forum at phpwizard.net - Korakot Chaovavanich * "insert as new row" feature - Pete Kelly * rewrote and fix dump code * bugfixes - Steve Alberty * rewrote dump code for PHP4 * mySQL table statistics * bugfixes - Benjamin Gandon * main author of the version 2.1.0.1 * bugfixes - Alexander M. Turek * MySQL 4.0 / 4.1 / 5.0 compatibility * abstract database interface (PMA_DBI) with MySQLi support * privileges administration * XML exports * various features and fixes * German language file updates - Mike Beck * automatic joins in QBE * links column in printview * Relation view - Michal ihaE * enhanced index creation/display feature * feature to use a different charset for HTML than for MySQL * improvements of export feature * various features and fixes * Czech language file updates - Christophe GeschH from the "MySQL Form Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/) * suggested the patch for multiple table printviews - Garvin Hicking * built the patch for vertical display of table rows * built the Javascript based Query window + SQL history * Improvement of column/db comments * (MIME)-Transformations for columns * Use custom alias names for Databases in left frame * hierarchical/nested table display * PDF-scratchboard for WYSIWYG-distribution of PDF relations * new icon sets * vertical display of column properties page * some bugfixes, features, support, German language additions - Yukihiro Kawada * japanese kanji encoding conversion feature - Piotr Roszatycki and Dan Wilson * the Cookie authentication mode - Axel Sander * table relation-links feature - Maxime Delorme * PDF schema output, thanks also to Olivier Plathey for the "FPDF" library (see http://www.fpdf.org/) and Steven Wittens for the "UFPDF" library (see http://www.acko.net/node/56). - Olof Edlund * SQL validator server - Ivan R. Lanin * phpMyAdmin logo (until June 2004) - Mike Cochrane * blowfish library from the Horde project - Marcel Tschopp * mysqli support * many bugfixes and improvements - Michael Keck * redesign for 2.6.0 * phpMyAdmin sailboat logo (June 2004) - Mathias LandhCuEer * Representation at conferences And also to the following people who have contributed minor changes, enhancements, bugfixes or support for a new language since version 2.1.0: Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, PHter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas KlCger, Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley, Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna, www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec, Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, LuLs V., Martijn W. van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "Manuzhai". Original Credits of Version 2.1.0 --------------------------------- This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea to create a web-based interface to MySQL using PHP3. Although I have not used any of his source-code, there are some concepts I've borrowed from him. phpMyAdmin was created because Peter told me he wasn't going to further develop his (great) tool. Thanks go to - Amalesh Kempf who contributed the code for the check when dropping a table or database. He also suggested that you should be able to specify the primary key on tbl_create.php3. To version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as well as a bug-report. Plus many smaller improvements. - Jan Legenhausen : He made many of the changes that were introduced in 1.3.0 (including quite significant ones like the authentication). For 1.4.1 he enhanced the table-dump feature. Plus bug-fixes and help. - Marc Delisle made phpMyAdmin language-independent by outsourcing the strings to a separate file. He also contributed the French translation. - Alexandr Bravo who contributed tbl_select.php3, a feature to display only some fields from a table. - Chris Jackson added support for MySQL functions in tbl_change.php3. He also added the "Query by Example" feature in 2.0. - Dave Walton added support for multiple servers and is a regular contributor for bug-fixes. - Gabriel Ash contributed the random access features for 2.0.6. The following people have contributed minor changes, enhancements, bugfixes or support for a new language: Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann, Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov, Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns, G. Wieggers. And thanks to everyone else who sent me email with suggestions, bug-reports and or just some feedback. Valid XHTML 1.0! Valid CSS! GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . Name Artist Album Genre Size Time Track Number Track Count Year Date Date Added Bit Rate Sample Rate Volume Adjustment Kind Comments Location Too Da Doo N/A N/A N/A 51857 12 0 2002-01-20 01:38:26-08 2002-01-20 01:38:26-08 32 22050 MPEG AUDIO FILE Toodadoo.mp3 The Makers Daniel Lanois N/A Rock 3944667 246 0 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/DANIELLANOI/UNKNOWNALBU/THEMAKER.MP3 Animal Francis Cabrel D'une ombre a l'autre vol.1 Pop 5261718 328 2 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/ANIMAL.MP3 Carte postale Francis Cabrel D'une ombre a l'autre vol.1 Pop 4401209 275 14 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/CARTEPOS.MP3 Je pense encore Etoi Francis Cabrel D'une ombre a l'autre vol.1 Pop 2487320 155 15 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/JEPENSEE.MP3 Je sais que tu danses Francis Cabrel D'une ombre a l'autre vol.1 Pop 4381512 273 13 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/JESAISQU.MP3 Je te suivrai Francis Cabrel D'une ombre a l'autre vol.1 Pop 5039789 314 7 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/JETESUIV.MP3 L'encre de tes yeux Francis Cabrel D'une ombre a l'autre vol.1 Pop 3730747 233 9 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LENCREDE.MP3 Le pas des ballerines Francis Cabrel D'une ombre a l'autre vol.1 Pop 8982406 561 1 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LEPASDES.MP3 Les murs de poussire Francis Cabrel D'une ombre a l'autre vol.1 Pop 3318223 207 5 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LESMURSD.MP3 Le temps s'en allait Francis Cabrel D'une ombre a l'autre vol.1 Pop 5142614 321 8 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LETEMPSS.MP3 Petite Marie Francis Cabrel D'une ombre a l'autre vol.1 Pop 3792598 237 4 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/PETITEMA.MP3 Petite sirne Francis Cabrel D'une ombre a l'autre vol.1 Pop 3334935 208 10 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/PETITESI.MP3 Qu'est-ce que je viens de dire Francis Cabrel D'une ombre a l'autre vol.1 Pop 3979027 248 12 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/QUESTCEQ.MP3 Question d'quilibre Francis Cabrel D'une ombre a l'autre vol.1 Pop 3643812 227 11 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/QUESTION.MP3 Said et Mohamed Francis Cabrel D'une ombre a l'autre vol.1 Pop 4070544 254 3 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/SAIDETMO.MP3 Tourner les hlicos Francis Cabrel D'une ombre a l'autre vol.1 Pop 5140523 321 6 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/TOURNERL.MP3 C'etait l'hiver Francis Cabrel D'une ombre a l'autre vol.3 Pop 3754568 234 10 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/CETAITLH.MP3 Chandelle Francis Cabrel D'une ombre a l'autre vol.3 Pop 4133232 258 6 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/CHANDELL.MP3 Chauffard Francis Cabrel D'une ombre a l'autre vol.3 Pop 4251932 265 9 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/CHAUFFAR.MP3 Dame d'un soir Francis Cabrel D'une ombre a l'autre vol.3 Pop 3605773 225 11 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/DAMEDUNS.MP3 Encore et encore Francis Cabrel D'une ombre a l'autre vol.3 Pop 5333618 333 13 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/ENCOREET.MP3 Je te suivrai Francis Cabrel D'une ombre a l'autre vol.3 Pop 4070960 254 3 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/JETESUIV.MP3 La dame de Haute-Savoie Francis Cabrel D'une ombre a l'autre vol.3 Pop 4486422 280 14 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/LADAMEDE.MP3 La fille qui m'accompagne Francis Cabrel D'une ombre a l'autre vol.3 Pop 4620170 288 7 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/LAFILLEQ.MP3 Leila et les chasseurs Francis Cabrel D'une ombre a l'autre vol.3 Pop 5088281 318 4 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/LEILAETL.MP3 Petite Marie Francis Cabrel D'une ombre a l'autre vol.3 Pop 3790508 236 2 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/PETITEMA.MP3 Rosie Francis Cabrel D'une ombre a l'autre vol.3 Pop 3505871 219 8 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/ROSIE.MP3 Sarbacane Francis Cabrel D'une ombre a l'autre vol.3 Pop 4412429 275 12 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/SARBACAN.MP3 Si tu la croises un jour Francis Cabrel D'une ombre a l'autre vol.3 Pop 3427732 214 1 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/SITULACR.MP3 Tout le monde y pense Francis Cabrel D'une ombre a l'autre vol.3 Pop 3730749 233 5 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/TOUTLEMO.MP3 Le dernier repas Jacques Brel 15 ans d'amour Pop 3313161 207 0 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/15ANSDAMOUR/LEDERNIE.MP3 La Quete Jacques Brel Brel, Quinze Ans D'amour Pop 2302120 143 0 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/BRELQUINZEA/LAQUETE.MP3 Le Moribond Jacques Brel De 24 Grootste Successen Pop 3008140 188 0 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/DE24GROOTST/LEMORIBO.MP3 Je ne sais pas Jacques Brel Intgrale Vol.10 - Ne me quitte pas Pop 3033160 189 11 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/INTGRALE10 /JENESAIS.MP3 Le prochain amour Jacques Brel Intgrale Vol.10 - Ne me quitte pas Pop 4172519 260 8 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/INTGRALE10 /LEPROCHA.MP3 Les flamandes Jacques Brel Intgrale Vol.10 - Ne me quitte pas Pop 2552087 159 4 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/INTGRALE10 /LESFLAMA.MP3 Au suivant Jacques Brel Jacques Brel Vol. 1 Pop 2971700 185 14 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/AUSUIVAN.MP3 Ces gens la Jacques Brel Jacques Brel Vol. 1 Pop 4503104 281 11 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/CESGENSL.MP3 J'arrive Jacques Brel Jacques Brel Vol. 1 Pop 4556181 284 10 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/JARRIVE.MP3 Jef Jacques Brel Jacques Brel Vol. 1 Pop 3447749 215 12 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/JEF.MP3 Le plat pays Jacques Brel Jacques Brel Vol. 1 Pop 2614346 163 6 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LEPLATPA.MP3 Les bourgeois Jacques Brel Jacques Brel Vol. 1 Pop 2755618 172 16 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LESBOURG.MP3 Les remparts de varsovie Jacques Brel Jacques Brel Vol. 1 Pop 3950990 246 8 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LESREMPA.MP3 Les vieux Jacques Brel Jacques Brel Vol. 1 Pop 3934258 245 3 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LESVIEUX.MP3 Madeleine Jacques Brel Jacques Brel Vol. 1 Pop 2824160 176 15 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/MADELEIN.MP3 Mathilde Jacques Brel Jacques Brel Vol. 1 Pop 2517792 157 7 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/MATHILDE.MP3 On n'oublie rien Jacques Brel Jacques Brel Vol. 1 Pop 2968779 185 5 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/ONNOUBLI.MP3 bruxelles Jacques Brel Master Serie Vol. 2 Pop 2873896 179 6 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/BRUXELLE.MP3 fernand Jacques Brel Master Serie Vol. 2 Pop 5031818 314 10 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/FERNAND.MP3 Jojo Jacques Brel Master Serie Vol. 2 Pop 3122158 195 8 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/JOJO.MP3 le gaz Jacques Brel Master Serie Vol. 2 Pop 2789883 174 5 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LEGAZ.MP3 les biches Jacques Brel Master Serie Vol. 2 Pop 4842066 302 2 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESBICHE.MP3 les bonbons Jacques Brel Master Serie Vol. 2 Pop 3389241 211 4 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESBONBO.MP3 les marquises Jacques Brel Master Serie Vol. 2 Pop 3738239 233 9 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESMARQU.MP3 les paumes du petit matin Jacques Brel Master Serie Vol. 2 Pop 4129461 258 3 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESPAUME.MP3 Orly Jacques Brel Master Serie Vol. 2 Pop 4127768 257 1 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/ORLY.MP3 C'est trop facile Jacques Brel Quand On n'a Que l'Amour (CD1) Pop 1717425 107 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/QUANDONNAQU/CESTTROP.MP3 La chanson des vieux amants Jacques Brel Ses 16 plus belles chansons Pop 4332587 270 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LA CHANSON DES VIEUX AMANTS.MP3 La chanson de Jacky Jacques Brel Ses 16 plus belles chansons Pop 3273889 204 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LACHANSO.MP3 La ville s'endormait Jacques Brel Ses 16 plus belles chansons Pop 4406559 275 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LAVILLES.MP3 L'eclusier Jacques Brel Ses 16 plus belles chansons Pop 4159117 259 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LECLUSIE.MP3 Il nous faut regarder Jacques Brel N/A Pop 2318398 144 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/ILNOUSFA.MP3 isabelle Jacques Brel N/A Pop 3084086 192 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/ISABELLE.MP3 Jaures Jacques Brel N/A Pop 3406749 212 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/JAURES.MP3 knokke-le-zoute Jacques Brel N/A Pop 4980792 311 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/KNOKKELE.MP3 La Biere Jacques Brel N/A Pop 2047547 127 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LABIERE.MP3 La fanette Jacques Brel N/A Pop 3953025 247 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LAFANETT.MP3 La Tendresse Jacques Brel N/A Pop 2529876 158 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LATENDRE.MP3 le port d 'amsterdam Jacques Brel N/A Pop 3162257 197 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LEPORTDA.MP3 Les prenoms Jacques Brel N/A Pop 2408667 150 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LESPRENO.MP3 Ne Me Quitte Pas Jacques Brel N/A Pop 4009038 250 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/NEMEQUIT.MP3 Pourquoi faut-il que les homme Jacques Brel N/A Pop 3364977 210 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/POURQUOI.MP3 Une valse E1000 temps Jacques Brel N/A Pop 3718980 232 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/UNEVALSE.MP3 Voir un ami pleurer Jacques Brel N/A Pop 3007291 187 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/VOIRUNAM.MP3 Live Session 1 Offspring Intimate & Interactive (tv) Grunge 14804149 925 1 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES1.MP3 Live Session 2 Offspring Intimate & Interactive (tv) Grunge 12997730 812 2 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES2.MP3 Live Session 3 Offspring Intimate & Interactive (tv) Grunge 8766311 547 3 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES3.MP3 Live Session 4 Offspring Intimate & Interactive (tv) Grunge 4600930 287 4 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES4.MP3 Beautiful World Rage Against The Machine Renegades Alternative 2484409 155 5 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/BEAUTIFU.MP3 Down on the Street Rage Against The Machine Renegades Alternative 3504233 219 10 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/DOWNONTH.MP3 Kick Out The Jams Rage Against The Machine Renegades Alternative 3069972 191 3 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/KICKOUT1.MP3 How I Could Just Kill A Man (l Rage Against The Machine Renegades Alternative 4610583 288 14 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/HOWICOUL.MP3 I'm Housin Rage Against The Machine Renegades Alternative 4750160 296 6 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/IMHOUSIN.MP3 In My Eyes Rage Against The Machine Renegades Alternative 2793694 174 7 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/INMYEYES.MP3 Kick Out The Jams (live) Rage Against The Machine Renegades Alternative 4342665 271 13 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/KICKOUTT.MP3 Maggies Farm Rage Against The Machine Renegades Alternative 6615515 413 12 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/MAGGIESF.MP3 Microphone Fiend Rage Against The Machine Renegades Alternative 4890183 305 1 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/MICROPHO.MP3 Pistol Grip Pump Rage Against The Machine Renegades Alternative 3176132 198 2 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/PISTOLGR.MP3 Renegades of Funk Rage Against The Machine Renegades Alternative 4407859 275 4 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/RENEGADE.MP3 Street Fighting Man Rage Against The Machine Renegades Alternative 4519039 282 11 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/STREETFI.MP3 The Ghost Of Tom Joad Rage Against The Machine Renegades Alternative 5416816 338 9 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/THEGHOST.MP3 How I Could Just Kill A Man Rage Against The Machine Renegades Alternative 3917185 244 8 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/HOWICOU1.MP3 Bold As Love Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 6870896 429 6 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/BOLDASLO.MP3 Burning Of The Midnight Lamp [ Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3942692 246 2 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/BURNINGO.MP3 Catfish Blues [Live] Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 5229997 326 5 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/CATFISHB.MP3 Fire [Live] Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 2609384 163 8 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/FIRELIVE.MP3 Gloria Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 8542310 533 13 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/GLORIA.MP3 Gypsy Eyes Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3577795 223 11 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/GYPSYEYE.MP3 (Have You Ever Been To) Electr Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 1424907 89 10 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/HAVEYOUE.MP3 It's Too Bad Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 8513895 532 14 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/ITSTOOBA.MP3 Little Miss Lover Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 2272514 142 4 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/LITTLEMI.MP3 Little Wing Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3263490 203 3 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/LITTLEWI.MP3 Room Full Of Mirrors Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 1382265 86 12 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/ROOMFULL.MP3 Somewhere Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3662639 228 9 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/SOMEWHER.MP3 Star Spangled Banner Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 4039232 252 15 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/STARSPAN.MP3 Sweet Angel Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 4036714 252 7 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/SWEETANG.MP3 Everything In Its Right Place Radiohead Kid A (Pre-Release) Rock 4023736 251 1 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/EVERYTHI.MP3 Hidden extra Track Radiohead Kid A (Pre-Release) Rock 559666 34 11 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/HIDDENEX.MP3 How To Disappear Completely Radiohead Kid A (Pre-Release) Rock 5701421 356 4 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/HOWTODIS.MP3 Idioteque Radiohead Kid A (Pre-Release) Rock 4946152 309 8 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/IDIOTEQU.MP3 In Limbo Radiohead Kid A (Pre-Release) Rock 3376297 211 7 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/INLIMBO.MP3 Kid A Radiohead Kid A (Pre-Release) Rock 4552431 284 2 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/KIDA.MP3 Morning Bell Radiohead Kid A (Pre-Release) Rock 4410332 275 9 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/MORNINGB.MP3 Motion Picture Soundtrack Radiohead Kid A (Pre-Release) Rock 6671923 416 10 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/MOTIONPI.MP3 National Anthem Radiohead Kid A (Pre-Release) Rock 5627432 351 3 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/NATIONAL.MP3 Optimistic Radiohead Kid A (Pre-Release) Rock 5056912 316 6 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/OPTIMIST.MP3 Treefingers Radiohead Kid A (Pre-Release) Rock 3561456 222 5 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/TREEFING.MP3 Release Afro Celt Sound System Volume 2 Release Ethnic 7332431 458 1 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/01RELEAS.MP3 Lovers Of Light Afro Celt Sound System Volume 2 Release Ethnic 3844570 240 2 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/02LOVERS.MP3 Eireann Afro Celt Sound System Volume 2 Release Ethnic 4989352 311 3 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/03EIREAN.MP3 Urban Aire Afro Celt Sound System Volume 2 Release Ethnic 2082449 130 4 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/04URBANA.MP3 Big Cat Afro Celt Sound System Volume 2 Release Ethnic 7443190 465 5 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/05BIGCAT.MP3 Even In My Dreams Afro Celt Sound System Volume 2 Release Ethnic 6833398 427 6 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/06EVENIN.MP3 Amber Afro Celt Sound System Volume 2 Release Ethnic 5254754 328 7 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/07AMBER.MP3 Hypnotica Afro Celt Sound System Volume 2 Release Ethnic 7050311 440 8 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/08HYPNOT.MP3 Riding The Waves Afro Celt Sound System Volume 2 Release Ethnic 6358177 397 9 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/09RIDING.MP3 I Think Of... Afro Celt Sound System Volume 2 Release Ethnic 4450611 278 10 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/10ITHINK.MP3 Release It (Instrumental) Afro Celt Sound System Volume 2 Release Ethnic 6234890 389 11 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/11RELEAS.MP3 Break Stuff Limp Bizkit Significant Other Rock 2660739 166 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/BREAKSTU.MP3 N 2 Gether Now Limp Bizkit Significant Other Rock 4639345 289 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/N2GETHER.MP3 Nookie Limp Bizkit Significant Other Rock 4259830 266 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/NOOKIE.MP3 Re-arranged Limp Bizkit Significant Other Rock 5676732 354 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/REARRANG.MP3 Full Nelson Limp Bizkit The Chocolate Starfish Rock 3954223 247 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/FULLNELS.MP3 My Generation Limp Bizkit The Chocolate Starfish Rock 3571897 223 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/MYGENERA.MP3 Rollin' (Air Raid Vehicle) Limp Bizkit The Chocolate Starfish Rock 3506708 219 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/ROLLINAI.MP3 The One Limp Bizkit The Chocolate Starfish Rock 5492075 343 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/THEONE.MP3 Counterfit Limp Bizkit N/A Rock 4927705 307 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/COUNTERF.MP3 Jump around Limp Bizkit N/A Rock 2630185 164 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/JUMPAROU.MP3 Switch Limp Bizkit N/A Rock 4029089 251 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/SWITCH.MP3 Take a look around Limp Bizkit N/A Rock 5137529 321 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/TAKEALOO.MP3 04 My Lover's Gone Dido No Angel Trip-Hop 4290782 268 4 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/04MYLOVE.MP3 All You Want Dido No Angel Trip-Hop 3737398 233 5 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/ALLYOUWA.MP3 Don't Think Of Me Dido No Angel Trip-Hop 4358073 272 3 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/DONTTHIN.MP3 Here With Me Dido No Angel Trip-Hop 4076781 254 1 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/HEREWITH.MP3 Honestly OK Dido No Angel Trip-Hop 4443315 277 7 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/HONESTLY.MP3 Hunter Dido No Angel Trip-Hop 3796325 237 2 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/HUNTER.MP3 I'm No Angel Dido No Angel Trip-Hop 3772926 235 10 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/IMNOANGE.MP3 Isobel Dido No Angel Trip-Hop 3748259 234 9 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/ISOBEL.MP3 My Life Dido No Angel Trip-Hop 3033969 189 11 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/MYLIFE.MP3 Slide Dido No Angel Trip-Hop 4699533 293 8 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/SLIDE.MP3 Take My Hand Dido No Angel Trip-Hop 6450790 403 12 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/TAKEMYHA.MP3 Thank you Dido No Angel Trip-Hop 3489546 218 6 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/THANKYOU.MP3 Good Rockin' Tonight Paul Mccartney Oobu Joobu Part 1 Rock 3430715 214 6 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/GOODROCK.MP3 L'Richard's Story Tutti F Paul Mccartney Oobu Joobu Part 1 Rock 3695619 230 8 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/LRICHARD.MP3 O J Cook Of The House Paul Mccartney Oobu Joobu Part 1 Rock 2139134 133 9 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/OJCOOKOF.MP3 Oobu Joobu Intro Paul Mccartney Oobu Joobu Part 1 Rock 1874562 117 1 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/OOBUJOOB.MP3 Daytime Nightime Sufferin Paul Mccartney Oobu Joobu Part 8 Rock 3298140 206 8 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/DAYTIMEN.MP3 Oobu Joobu Outro Paul Mccartney Oobu Joobu Part 8 Rock 987236 61 20 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/OOBUJOOB.MP3 San Fransisco Bay Blues Paul Mccartney Oobu Joobu Part 8 Rock 2322205 145 18 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/SANFRANS.MP3 Yellow Submarine Paul Mccartney Oobu Joobu Part 8 Rock 1212516 75 21 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/YELLOWSU.MP3 Alabama Song (Wiskey Bar) The Doors The Doors Rock 3202430 200 5 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/ALABAMAS.MP3 Back Door Man The Doors The Doors Vocal 3430205 214 7 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/BACKDOOR.MP3 Break On Through (To The Other Side) The Doors The Doors Rock 2389092 149 1 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/BREAKONT.MP3 End Of The Night The Doors The Doors Rock 2764399 172 9 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/ENDOFTHE.MP3 I Looked At You The Doors The Doors Rock 2274132 142 8 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/ILOOKEDA.MP3 Light My Fire The Doors The Doors Rock 6426624 401 6 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/LIGHTMYF.MP3 Soul Kitchen The Doors The Doors Rock 3441071 215 2 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/SOULKITC.MP3 The Chrystal Ship The Doors The Doors Rock 2479352 154 3 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/THECHRYS.MP3 The End The Doors The Doors Rock 11233916 702 11 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/THEEND.MP3 Twentieth Century Fox The Doors The Doors Rock 2463474 153 4 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/TWENTIET.MP3 Take It As It Comes The Doors The Doors Rock 2195561 137 10 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/TAKEITAS.MP3 Kalpol Introl Autechre Incunabula Ambient 3178708 198 1 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/01KALPO.MP3 Bike Autechre Incunabula Ambient 7681929 480 2 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/02BIK.MP3 Autriche Autechre Incunabula Ambient 6650828 415 3 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/03AUTRI.MP3 Bronchus 2 Autechre Incunabula Ambient 3413737 213 4 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/04BRONC.MP3 Basscadet Autechre Incunabula Ambient 5184489 324 5 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/05BASSC.MP3 Eggshell Autechre Incunabula Ambient 8674864 542 6 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/06EGGSH.MP3 Doctrine Autechre Incunabula Ambient 7498309 468 7 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/07DOCTR.MP3 Maetl Autechre Incunabula Ambient 6286365 392 8 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/08MAET.MP3 Windwind Autechre Incunabula Ambient 10836547 677 9 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/09WINDW.MP3 Lowride Autechre Incunabula Ambient 6975583 435 10 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/10LOWRI.MP3 444 Autechre Incunabula Ambient 8568281 535 11 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/1144.MP3 Second Bad Vilbel Autechre Tri Repetae++ (Disk 2) Ambient 9394727 587 1 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/01SECON.MP3 Second Scepe Autechre Tri Repetae++ (Disk 2) Ambient 7449401 465 2 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/02SECON.MP3 Second Scout Autechre Tri Repetae++ (Disk 2) Ambient 7087588 442 3 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/03SECON.MP3 Second Peng Autechre Tri Repetae++ (Disk 2) Ambient 10472497 654 4 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/04SECON.MP3 Garbagemx36 Autechre Tri Repetae++ (Disk 2) Ambient 13615131 850 5 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/05GARBA.MP3 Piobmx19 Autechre Tri Repetae++ (Disk 2) Ambient 7314118 457 6 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/06PIOBM.MP3 Bronchusevenmx24 Autechre Tri Repetae++ (Disk 2) Ambient 9346103 584 7 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/07BRONC.MP3 Vietrmx21 Autechre Tri Repetae++ (Disk 2) Ambient 8115346 507 8 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/08VIETR.MP3 Dael Autechre Tri Repetae++ (Disk 1) Ambient 6399914 399 1 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/01DAE.MP3 Clipper Autechre Tri Repetae++ (Disk 1) Ambient 8223054 513 2 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/02CLIPP.MP3 Leterel Autechre Tri Repetae++ (Disk 1) Ambient 6851452 428 3 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/03LETER.MP3 Rotar Autechre Tri Repetae++ (Disk 1) Ambient 7749922 484 4 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/04ROTA.MP3 Stud Autechre Tri Repetae++ (Disk 1) Ambient 9293026 580 5 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/05STU.MP3 Eutow Autechre Tri Repetae++ (Disk 1) Ambient 4098296 256 6 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/06EUTO.MP3 C/Pach Autechre Tri Repetae++ (Disk 1) Ambient 4467831 279 7 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/07CPAC.MP3 Gnit Autechre Tri Repetae++ (Disk 1) Ambient 5593253 349 8 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/08GNI.MP3 Overand Autechre Tri Repetae++ (Disk 1) Ambient 7258822 453 9 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/09OVERA.MP3 Rsdio Autechre Tri Repetae++ (Disk 1) Ambient 8785209 549 10 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/10RSDI.MP3 Dark River DJ Food A Recipe for Disaster Electronic 4832178 302 1 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/01DARKR.MP3 Inosan DJ Food A Recipe for Disaster Electronic 4447792 277 2 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/02INOSA.MP3 Scratch yer Hed DJ Food A Recipe for Disaster Electronic 2678581 167 3 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/03SCRAT.MP3 Mr. Quicke cuts the Cheese DJ Food A Recipe for Disaster Electronic 4320195 270 4 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/04MRQUI.MP3 Brass Neck DJ Food A Recipe for Disaster Electronic 3740888 233 5 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/05BRASS.MP3 Fungle Junk DJ Food A Recipe for Disaster Electronic 7928838 495 6 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/06FUNGL.MP3 Half Step DJ Food A Recipe for Disaster Electronic 4873555 304 7 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/07HALFS.MP3 The Dusk DJ Food A Recipe for Disaster Electronic 4587392 286 8 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/08THEDU.MP3 Bass City Roller DJ Food A Recipe for Disaster Electronic 5119740 319 9 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/09BASSC.MP3 Spiral DJ Food A Recipe for Disaster Electronic 5821067 363 10 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/10SPIRA.MP3 Scratch yer Butt DJ Food A Recipe for Disaster Electronic 3712056 232 11 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/11SCRAT.MP3 Akaire DJ Food A Recipe for Disaster Electronic 4980552 311 12 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/12AKAIR.MP3 A little Samba DJ Food A Recipe for Disaster Electronic 5619759 351 13 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/13ALITT.MP3 Scientific Youth DJ Food A Recipe for Disaster Electronic 5874674 367 14 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/14SCIEN.MP3 Purrfect Funki Porcini Love, Pussycats & Carwrecks Electronic 7594606 474 1 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/01PURRF.MP3 Groover Funki Porcini Love, Pussycats & Carwrecks Electronic 4878986 304 2 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/02GROOV.MP3 The Last Song Funki Porcini Love, Pussycats & Carwrecks Electronic 5251393 328 3 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/03THELA.MP3 Snip & Lick Funki Porcini Love, Pussycats & Carwrecks Electronic 1735102 108 4 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/04SNIPL.MP3 Carwreck Funki Porcini Love, Pussycats & Carwrecks Electronic 6206563 387 5 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/05CARWR.MP3 The Afterlife Funki Porcini Love, Pussycats & Carwrecks Electronic 3971185 248 6 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/06THEAF.MP3 12 Points Off Your License Funki Porcini Love, Pussycats & Carwrecks Electronic 6630671 414 7 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/0712POI.MP3 Venus Funki Porcini Love, Pussycats & Carwrecks Electronic 4377015 273 8 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/08VENU.MP3 Hyde Park Funki Porcini Love, Pussycats & Carwrecks Electronic 7314853 457 9 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/09HYDEP.MP3 Theme Music For Nothing Funki Porcini Love, Pussycats & Carwrecks Electronic 4974299 310 10 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/10THEME.MP3 I'm Such A Small Thing Funki Porcini Love, Pussycats & Carwrecks Electronic 4712795 294 11 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/11IMSUC.MP3 Going Down Funki Porcini Love, Pussycats & Carwrecks Electronic 7732815 483 12 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/12GOING.MP3 We Have Explosive (7" edit) Future Sound Of London Electronica - Disk 1 Electronic 3250257 203 7 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/01WEHAV.MP3 Part 1 Future Sound Of London Cascade Ambient 7010781 438 1 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/01PART.MP3 Part 2 Future Sound Of London Cascade Ambient 8773475 548 2 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/02PART.MP3 Part 3 Future Sound Of London Cascade Ambient 4079377 254 3 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/03PART.MP3 Part 4 Future Sound Of London Cascade Ambient 4367769 272 4 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/04PART.MP3 Part 5 Future Sound Of London Cascade Ambient 5941523 371 5 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/05PART.MP3 Shortform Future Sound Of London Cascade Ambient 4120340 257 6 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/06SHORT.MP3 Just A Fuckin Idiot Future Sound Of London ISDN (white CD) Ambient 5430030 339 1 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/01JUSTA.MP3 The Far Out Son Of Lung And The Ramblings Of A Madman Future Sound Of London ISDN (white CD) Ambient 4305336 269 2 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/02THEFA.MP3 Appendage Future Sound Of London ISDN (white CD) Ambient 2332108 145 3 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/03APPEN.MP3 Slider Future Sound Of London ISDN (white CD) Ambient 7074128 442 4 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/04SLIDE.MP3 Smokin Japanese Babe Future Sound Of London ISDN (white CD) Ambient 4791667 299 5 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/05SMOKI.MP3 You're Creeping Me Out Future Sound Of London ISDN (white CD) Ambient 6262885 391 6 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/06YOURE.MP3 Eyes Pop - Skin Explodes - Everybody Dead Future Sound Of London ISDN (white CD) Ambient 3605243 225 7 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/07EYESP.MP3 It's My Mind That Works Future Sound Of London ISDN (white CD) Ambient 3279217 204 8 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/08ITSMY.MP3 Dirty Shadows Future Sound Of London ISDN (white CD) Ambient 6003353 375 9 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/09DIRTY.MP3 Tired Future Sound Of London ISDN (white CD) Ambient 6264682 391 10 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/10TIRE.MP3 Egypt Future Sound Of London ISDN (white CD) Ambient 4018012 251 11 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/11EGYP.MP3 Kai Future Sound Of London ISDN (white CD) Ambient 4236325 264 12 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/12KA.MP3 Amoeba Future Sound Of London ISDN (white CD) Ambient 5133546 320 13 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/13AMOEB.MP3 A Study Of Six Guitars Future Sound Of London ISDN (white CD) Ambient 4048958 253 14 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/14ASTUD.MP3 Snake Hips Future Sound Of London ISDN (white CD) Ambient 5622562 351 15 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/15SNAKE.MP3 Pressure Spacetime Continuum Sea Biscuit Ambient 9993089 624 1 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/01PRESS.MP3 Subway Spacetime Continuum Sea Biscuit Ambient 11447724 715 2 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/02SUBWA.MP3 Ping Pong Spacetime Continuum Sea Biscuit Ambient 6315887 394 3 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/03PINGP.MP3 Voice of the Earth Spacetime Continuum Sea Biscuit Ambient 11054297 690 4 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/04VOICE.MP3 Floatilla Spacetime Continuum Sea Biscuit Ambient 8826287 551 5 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/05FLOAT.MP3 Q 11 Spacetime Continuum Sea Biscuit Ambient 10691913 668 6 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/06Q1.MP3 A Low Frequency Inversion Field Spacetime Continuum Sea Biscuit Ambient 12611625 788 7 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/07ALOWF.MP3 berreichweite The Third Room - Der Dritte Raum wellenbad House 2894108 180 1 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/01BERRE.MP3 ver megahertz The Third Room - Der Dritte Raum wellenbad House 6260475 391 2 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/02VERME.MP3 wellenbad The Third Room - Der Dritte Raum wellenbad House 6656818 416 3 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/03WELLE.MP3 raupe The Third Room - Der Dritte Raum wellenbad House 6136346 383 4 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/04RAUP.MP3 alienoid The Third Room - Der Dritte Raum wellenbad House 5375524 335 5 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/05ALIEN.MP3 trommelmaschine The Third Room - Der Dritte Raum wellenbad House 5792794 362 6 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/06TROMM.MP3 geister The Third Room - Der Dritte Raum wellenbad House 6623629 413 7 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/07GEIST.MP3 narkose The Third Room - Der Dritte Raum wellenbad House 6863039 428 8 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/08NARKO.MP3 slapstick The Third Room - Der Dritte Raum wellenbad House 6827933 426 9 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/09SLAPS.MP3 wind The Third Room - Der Dritte Raum wellenbad House 6829208 426 10 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/10WIN.MP3 tiefschlaf The Third Room - Der Dritte Raum wellenbad House 7183619 448 11 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/11TIEFS.MP3 unterwasser The Third Room - Der Dritte Raum wellenbad House 3978292 248 12 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/12UNTER.MP3 Perverted Science N/A The Theory of Evolution Electronic 96764 6 1 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/01INTRO.MP3 Birth of a Disco Dancer Reload The Theory of Evolution Electronic 3624756 226 2 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/02RELOA.MP3 Waltz with The Horn The Theory of Evolution Electronic 1174669 73 3 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/03THEHO.MP3 Sexomatic Reload The Theory of Evolution Electronic 3895997 243 4 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/04RELOA.MP3 Senda Jak and Stepper The Theory of Evolution Electronic 429032 26 5 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/05JAKAN.MP3 Peschi Reload The Theory of Evolution Electronic 4892827 305 6 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/06RELOA.MP3 Election The Horn The Theory of Evolution Electronic 1191804 74 7 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/07THEHO.MP3 Ptysch Reload and E621 The Theory of Evolution Electronic 4094534 255 8 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/08RELOA.MP3 The Biosphere Reload and E621 The Theory of Evolution Electronic 6342742 396 9 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/09RELOA.MP3 Nemm Reload and E621 The Theory of Evolution Electronic 4616285 288 10 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/10RELOA.MP3 Larynx The Rebus Project The Theory of Evolution Electronic 2375890 148 11 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/11THERE.MP3 Royal Wedding Wish Mountain The Theory of Evolution Electronic 2448758 153 12 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/12WISHM.MP3 Amazon Amenity (Chameleon remix) Link The Theory of Evolution Electronic 8694190 543 13 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/13LINKA.MP3 Archetype Arcadian Link The Theory of Evolution Electronic 4417619 276 14 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/14LINKA.MP3 The Book Wish Mountain Plays The Theory of Evolution Electronic 2524688 157 15 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/15WISHM.MP3 QA : 752 :LP (Reload remix) Mystic Institute The Theory of Evolution Electronic 4727766 295 16 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/16MYSTI.MP3 Pubic Funk (Live) The Jedi Knights The Theory of Evolution Electronic 2278934 142 17 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/17THEJE.MP3 Antacid Reload and E621 The Theory of Evolution Electronic 11123353 695 18 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/18RELOA.MP3 Winna Reload and E621 The Theory of Evolution Electronic 782628 48 19 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/19RELOA.MP3 A Tribute to Peter Cook N/A The Theory of Evolution Electronic 1063078 66 20 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/20ATRIB.MP3 Pacific 808 State N/A Electronic 5463195 341 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/808STATE/01.MP3 Kin Up Pin Up 808 State N/A Electronic 5232071 327 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/808STATE/02.MP3 Devil's Haircut Beck Odelay Avantgarde 3105288 194 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/01.MP3 Hotwax Beck Odelay Avantgarde 3668358 229 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/02.MP3 Lord Only Knows Beck Odelay Avantgarde 4060098 253 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/03.MP3 The New Pollution Beck Odelay Avantgarde 3511974 219 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/04.MP3 Derelict Beck Odelay Avantgarde 4047132 252 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/05.MP3 Novacane Beck Odelay Avantgarde 4442105 277 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/06.MP3 Jack-Ass Beck Odelay Avantgarde 4030832 251 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/07.MP3 Where It's At Beck Odelay Avantgarde 5278027 329 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/08.MP3 Minus Beck Odelay Avantgarde 2421989 151 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/09.MP3 Sissyneck Beck Odelay Avantgarde 3722819 232 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/10.MP3 Readymade Beck Odelay Avantgarde 2513259 157 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/11.MP3 12.MP3 Beck Odelay Avantgarde 4012037 250 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/12.MP3 Ramshackle Beck Odelay Avantgarde 7194392 449 0 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/13.MP3 Hunter Bjrk Homogenic Avantgarde 4085659 255 1 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/01HUNTER.MP3 Jga Bjrk Homogenic Avantgarde 4892039 305 2 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/02JGA.MP3 Unravel Bjrk Homogenic Avantgarde 3167126 197 3 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/03UNRAVE.MP3 Bachelorette Bjrk Homogenic Avantgarde 5063271 316 4 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/04BACHEL.MP3 All Neon Like Bjrk Homogenic Avantgarde 5649668 353 5 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/05ALLNEO.MP3 5 Years Bjrk Homogenic Avantgarde 4308683 269 6 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/065YEARS.MP3 Immature Bjrk Homogenic Avantgarde 2982667 186 7 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/07IMMATU.MP3 Alarm Call Bjrk Homogenic Avantgarde 4152258 259 8 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/08ALARMC.MP3 Pluto Bjrk Homogenic Avantgarde 3188828 199 9 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/09PLUTO.MP3 All Is Full Of Love Bjrk Homogenic Avantgarde 4354003 272 10 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/10ALLISF.MP3 AM2K (Full blast) Coldcut N/A Electronic 5824315 364 0 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/01.MP3 Autumn Leaves Coldcut N/A Electronic 5637394 0 0 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 0 0 MPEG AUDIO FILE MP3002/COLDCUT/02.MP3 Beats & Pieces '89 Coldcut N/A Electronic 5611947 350 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/03.MP3 More Beats & Pieces Coldcut N/A Electronic 3867957 241 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/04.MP3 Say Kid. What Time Is It? Coldcut N/A Electronic 4617969 288 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/05.MP3 Wild About Coldcut N/A Electronic 6893070 0 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 0 0 MPEG AUDIO FILE MP3002/COLDCUT/06.MP3 Wild About Coldcut N/A Electronic 2104709 0 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 0 0 MPEG AUDIO FILE MP3002/COLDCUT/07.MP3 Now Is The Time Crystal Method Busy Child Electronic 5707231 356 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/01.MP3 Trip Like I Do Crystal Method Busy Child Electronic 7248382 453 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/02.MP3 Busy Child Crystal Method Busy Child Electronic 7143500 446 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/03.MP3 Cherry Twist Crystal Method Busy Child Electronic 4250722 265 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/04.MP3 Coming Back Crystal Method Busy Child Electronic 5439688 339 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/05.MP3 Keep Hope Crystal Method Busy Child Electronic 5962163 372 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/06.MP3 High Roller Crystal Method Busy Child Electronic 5275139 329 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/07.MP3 Factory 101 Continuous Mix DJ Frankie Bones Factory 101 House 68584649 4286 1 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/DJFRANKI/FACTORY1/01FACTOR.MP3 Soul Pleureur Dubmatique la Force De Comprendre Hip-Hop 3741115 233 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/01.MP3 Dire Dubmatique la Force De Comprendre Hip-Hop 4475299 279 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/02.MP3 Jamais cesser D'y Croire Dubmatique la Force De Comprendre Hip-Hop 3723244 232 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/03.MP3 La Morale Dubmatique la Force De Comprendre Hip-Hop 3900035 243 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/04.MP3 Authentique Dubmatique la Force De Comprendre Hip-Hop 4162365 260 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/05.MP3 Un Ete A Montreal Dubmatique la Force De Comprendre Hip-Hop 3553154 222 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/06.MP3 La Force De Comprendre Dubmatique la Force De Comprendre Hip-Hop 3595118 224 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/07.MP3 Voir pour Le Croire Dubmatique la Force De Comprendre Hip-Hop 3733298 233 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/08.MP3 Mere Afrique Dubmatique la Force De Comprendre Hip-Hop 3993237 249 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/09.MP3 Plus Rien N'Est Pareil Dubmatique la Force De Comprendre Hip-Hop 3824929 239 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/10.MP3 C'Est De La Bombe Dubmatique la Force De Comprendre Hip-Hop 4250564 265 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/11.MP3 Montreal / Paris / Dakar Dubmatique la Force De Comprendre Hip-Hop 3714852 232 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/12.MP3 Lunaire (live at the Blue Room) Les Autres Circuites Autres Electronic 8419492 526 1 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/01LUNAIR.MP3 Aquarel Les Autres Circuites Autres Electronic 8174962 510 2 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/02AQUARE.MP3 Rivea Corymbosa Les Autres Circuites Autres Electronic 12217887 763 3 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/03RIVEAC.MP3 Un Droit Naturel Les Autres Circuites Autres Electronic 11759387 734 4 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/04UNDROI.MP3 Kaleidophon Les Autres Circuites Autres Electronic 14964849 935 5 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/05KALEID.MP3 malfunction Les Autres Circuites Autres Electronic 3160851 197 6 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/06MALFUN.MP3 Lunaire (optic lobe) Les Autres Circuites Autres Electronic 12168155 760 7 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/07LUNAIR.MP3 Iketa Polygon Window Quoth Electronic 3795083 271 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/02.MP3 Quoth (Wooden Thump Mix) Polygon Window Quoth Electronic 6688999 477 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/03.MP3 Bike Pump Meets Bucket Polygon Window Quoth Electronic 4884197 348 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/04.MP3 N/A Polygon Window Quoth Electronic 5727515 409 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/05.MP3 Polygon Window Polygon Window Surfing on Sine Waves Electronic 5247568 327 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/01.MP3 Audax power Polygon Window Surfing on Sine Waves Electronic 4490641 280 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/02.MP3 Quoth Polygon Window Surfing on Sine Waves Electronic 5391337 336 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/03.MP3 If It Really Is Me Polygon Window Surfing on Sine Waves Electronic 6775631 423 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/04.MP3 Supremacy II Polygon Window Surfing on Sine Waves Electronic 3958162 247 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/05.MP3 UT1 Dot Polygon Window Surfing on Sine Waves Electronic 5132204 320 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/06.MP3 N/A Polygon Window Surfing on Sine Waves Electronic 6168321 385 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/07.MP3 Quixote Polygon Window Surfing on Sine Waves Electronic 5803029 362 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/08.MP3 Quino Phec Polygon Window Surfing on Sine Waves Electronic 4544557 284 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/09.MP3 Wandering Star - Live Portis Head N/A Trip-Hop 4382012 273 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/01.MP3 Numb Portis Head N/A Trip-Hop 3808076 238 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/02.MP3 Elysium Portis Head N/A Trip-Hop 5711338 356 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/03.MP3 Half Day Closing Portis Head N/A Trip-Hop 3646634 227 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/04.MP3 Humming Portis Head N/A Trip-Hop 5825023 364 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/05.MP3 Mourning Air Portis Head N/A Trip-Hop 4088407 255 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/06.MP3 Only You Portis Head N/A Trip-Hop 4836968 302 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/07.MP3 Over Portis Head N/A Trip-Hop 3852252 240 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/08.MP3 Roads Portis Head N/A Trip-Hop 3121203 195 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/09.MP3 Seven Months Portis Head N/A Trip-Hop 4063210 253 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/10.MP3 Undenied Portis Head N/A Trip-Hop 4234689 264 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/11.MP3 Western Eye Portis Head N/A Trip-Hop 3829272 239 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/12.MP3 Aaah! Sun Electric N/A Electronic 4708398 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/01.MP3 Entrance Sun Electric N/A Electronic 13298298 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/02.MP3 Kiko Sun Electric N/A Electronic 5536793 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/03.MP3 Lone Sloane Sun Electric N/A Electronic 6743447 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/04.MP3 Newambi Sun Electric N/A Electronic 8055417 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/05.MP3 Point X (ed. 2) Sun Electric N/A Electronic 8134419 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/06.MP3 Spinout & Mellow Sun Electric N/A Electronic 7478642 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/07.MP3 Hallucinogen The Orb N/A Electronic 5663505 404 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 112 44100 MPEG AUDIO FILE MP3002/THE_OB/01.MP3 Oxbow Lakes The Orb N/A Electronic 7170596 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/THE_OB/02.MP3 Spanish Castle (Aubrey Mix) The Orb N/A Electronic 8633339 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/THE_OB/03.MP3 Trippin' On Sunshine The Orb N/A Electronic 3148130 224 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 112 44100 MPEG AUDIO FILE MP3002/THE_OB/04.MP3 Valley The Orb N/A Electronic 7299741 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/THE_OB/05.MP3 Leave Home The Chemical Brothers Exit Planet Dust Electronic 5322014 332 1 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/01LEAVEH.MP3 In Dust We Trust The Chemical Brothers Exit Planet Dust Electronic 5083586 317 2 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/02INDUST.MP3 Song To The Siren The Chemical Brothers Exit Planet Dust Electronic 3149887 196 3 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/03SONGTO.MP3 Three Little Birdies Down Beats The Chemical Brothers Exit Planet Dust Electronic 5419142 338 4 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/04THREEL.MP3 Fuck Up Beats The Chemical Brothers Exit Planet Dust Electronic 1371051 85 5 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/05FUCKUP.MP3 Chemical Beats The Chemical Brothers Exit Planet Dust Electronic 4646597 290 6 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/06CHEMIC.MP3 Chico's Groove The Chemical Brothers Exit Planet Dust Electronic 4619569 288 7 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/07CHICOS.MP3 One Too Many Mornings The Chemical Brothers Exit Planet Dust Electronic 4051848 253 8 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/08ONETOO.MP3 Life Is Sweet The Chemical Brothers Exit Planet Dust Electronic 6297963 393 9 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/09LIFEIS.MP3 Playground For A Wedgeless Firm The Chemical Brothers Exit Planet Dust Electronic 2428647 151 10 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/10PLAYGR.MP3 Alive Alone The Chemical Brothers Exit Planet Dust Electronic 5065809 316 11 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/11ALIVEA.MP3 The Long Tunnel Of Wanting You Vanessa Daou Zipless Trip-Hop 3498177 218 1 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/01THELON.MP3 Dear Anne Sexton Vanessa Daou Zipless Trip-Hop 3625223 226 2 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/02DEARAN.MP3 Alcestis On The Poetry Circuit Vanessa Daou Zipless Trip-Hop 4493756 280 3 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/03ALCEST.MP3 Sunday Afternoons Vanessa Daou Zipless Trip-Hop 3653505 228 4 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/04SUNDAY.MP3 Autumn Perspective Vanessa Daou Zipless Trip-Hop 6167112 385 5 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/05AUTUMN.MP3 Near The Black Forest Vanessa Daou Zipless Trip-Hop 4590991 286 6 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/06NEARTH.MP3 My Love Is Too Much Vanessa Daou Zipless Trip-Hop 5586289 349 7 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/07MYLOVE.MP3 Becoming A Nun Vanessa Daou Zipless Trip-Hop 5131405 320 8 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/08BECOMI.MP3 Smoke Vanessa Daou Zipless Trip-Hop 2651645 165 9 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/09SMOKE.MP3 Autumn Reprise Vanessa Daou Zipless Trip-Hop 2200679 137 10 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/10AUTUMN.MP3 Mr. Frosty Mark & Rich N/A Electronic 6511448 406 0 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VARIOUSA/01.MP3 Loving You Alex Paterson N/A Electronic 4193158 209 0 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 160 44100 MPEG AUDIO FILE MP3002/VARIOUSA/02.MP3 Alphacentauri DJ Spooky N/A Electronic 5832761 0 0 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 0 0 MPEG AUDIO FILE MP3002/VARIOUSA/03.MP3 Leggy Fila Brazillia A Taste Of Pork - A Collection Of Pork Recordings Ambient 6249040 390 1 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/01LEGGY.MP3 The Sheriff Fila Brazillia A Taste Of Pork - A Collection Of Pork Recordings Ambient 9160968 572 2 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/02THESHE.MP3 Lights On The Vibe Solid Doctor A Taste Of Pork - A Collection Of Pork Recordings Ambient 7316102 457 3 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/03LIGHTS.MP3 The Cleric Heights Of Abraham A Taste Of Pork - A Collection Of Pork Recordings Ambient 6652521 415 4 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/04THECLE.MP3 R Resonant R Earth A Taste Of Pork - A Collection Of Pork Recordings Ambient 7479093 467 5 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/05RRESON.MP3 Eva Heights Of Abraham A Taste Of Pork - A Collection Of Pork Recordings Ambient 10087997 630 6 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/06EVA.MP3 Subtle Body Fila Brasillia A Taste Of Pork - A Collection Of Pork Recordings Ambient 8304988 519 7 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/07SUBTLE.MP3 I Wonder Why - feat. A-Cyde, SLI Poetry - DJ Vadim remix DJ Vadim Aural Prostitution - remixes Electronic 7111744 444 1 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/01IWONDE.MP3 ( ) - feat. DJ Ollie Teeba - Andre Gurov remix - instr DJ Vadim Aural Prostitution - remixes Electronic 3867266 241 2 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/02FEATDJ.MP3 Beatbox Skit DJ Vadim Aural Prostitution - remixes Electronic 835626 52 3 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/03BEATBO.MP3 It's Impossible - Mark B remix - feat Mark B, Delerious, Lewis Parker & A Cyde DJ Vadim Aural Prostitution - remixes Electronic 4404227 275 4 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/04ITSIMP.MP3 ( ) - DJ Cam remix DJ Vadim Aural Prostitution - remixes Electronic 4385777 274 5 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/05DJCAMR.MP3 Who Do You Love? DJ Vadim Aural Prostitution - remixes Electronic 3329175 208 6 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/06WHODOY.MP3 ( ) - Andre Gurov remix - Vocal - feat. A-Cyde, SLI Poetry & DJ Ollie Teeba DJ Vadim Aural Prostitution - remixes Electronic 3893897 243 7 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/07ANDREG.MP3 I Wonder Why - DJ Vadim remix - instr. DJ Vadim Aural Prostitution - remixes Electronic 6259507 391 8 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/08IWONDE.MP3 It's Impossible - Mark B remix - instr. DJ Vadim Aural Prostitution - remixes Electronic 4262640 266 9 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/09ITSIMP.MP3 Northwest 37th Neotropic 15 Levels Of Magnification Electronic 4931261 308 1 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/01NORTHW.MP3 Laundry pt 3 Neotropic 15 Levels Of Magnification Electronic 4937110 308 2 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/02LAUNDR.MP3 La Centinela Neotropic 15 Levels Of Magnification Electronic 5511108 344 3 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/03LACENT.MP3 Laundry pt 1 Neotropic 15 Levels Of Magnification Electronic 3624719 226 4 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/04LAUNDR.MP3 15 Levels Of Magnification Neotropic 15 Levels Of Magnification Electronic 4018032 251 5 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/0515LEVE.MP3 Weeds Neotropic 15 Levels Of Magnification Electronic 4295536 268 6 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/06WEEDS.MP3 Nana Neotropic 15 Levels Of Magnification Electronic 4412982 275 7 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/07NANA.MP3 Nincompoop Neotropic 15 Levels Of Magnification Electronic 4643701 290 8 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/08NINCOM.MP3 Electric Bud Neotropic 15 Levels Of Magnification Electronic 6517413 407 9 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/09ELECTR.MP3 CCTV Neotropic 15 Levels Of Magnification Electronic 3052945 190 10 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/10CCTV.MP3 Neotropic Neotropic 15 Levels Of Magnification Electronic 5646804 352 11 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/11NEOTRO.MP3 Beautiful Pool Neotropic 15 Levels Of Magnification Electronic 3997682 249 12 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/12BEAUTI.MP3 Regents Park Neotropic 15 Levels Of Magnification Electronic 2711479 169 13 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/13REGENT.MP3 It's Your Turn To Wash Up Neotropic 15 Levels Of Magnification Electronic 6031342 376 14 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/14ITSYOU.MP3 Aloo Gobi Neotropic 15 Levels Of Magnification Electronic 5554853 347 15 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/15ALOOGO.MP3 Frozen Hands Neotropic 15 Levels Of Magnification Electronic 5609330 350 16 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/16FROZEN.MP3 Hyde Park Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 7379700 461 1 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/01FUNKIP.MP3 swingpool 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4678424 292 2 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/029LAZY9.MP3 styles THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4813847 300 3 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/03THEHER.MP3 wicked, cruel nasty and bad Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 5085959 317 4 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/04FUNKIP.MP3 half step DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4666862 291 5 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/05DJFOOD.MP3 train (marden hill mix) 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 5947919 371 6 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/069LAZY9.MP3 freedom HEDFUNK If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 6280459 392 7 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/07HEDFUN.MP3 y ahora tu UP, BUSTLE & OUT If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4792955 299 8 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/08UPBUST.MP3 dark river DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4861631 303 9 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/09DJFOOD.MP3 40 winks THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 2985281 186 10 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/10THEHER.MP3 the hand of contraband UP, BUSTLE & OUT If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 5624430 351 11 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/11UPBUST.MP3 onamission DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4229540 264 12 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/12COLDCU.MP3 Circle Line Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5439243 339 1 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/01FUNKIP.MP3 Black Jesus 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 4864542 304 2 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/029LAZY9.MP3 The Real Killer THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 4557214 284 3 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/03THEHER.MP3 Dark Blood HEDFUNK If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 3952416 247 4 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/04HEDFUN.MP3 Bass City Roller DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5490511 343 5 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/05DJFOOD.MP3 It's a Long Road Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 7776892 486 6 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/06FUNKIP.MP3 Eine Kleine Hedmusik Coldcut If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 4031142 251 7 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/07COLDCU.MP3 B Hip & Shake 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5211032 325 8 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/089LAZY9.MP3 A Little Groove THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 3616111 226 9 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/09THEHER.MP3 Valves DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 3125273 195 10 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/10DJFOOD.MP3 Coffee at Senor Roody's UP, BUSTLE & OUT If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5773486 360 11 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/11UPBUST.MP3 Dub Lion HEDFUNK If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5106401 319 12 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/12HEDFUN.MP3 a Reagenz Reagenz Ambient 10008538 625 1 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/01A.MP3 hollow mountain Reagenz Reagenz Ambient 14259613 891 2 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/02HOLLOW.MP3 u Reagenz Reagenz Ambient 10473030 654 3 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/03U.MP3 long leaves Reagenz Reagenz Ambient 7920007 495 4 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/04LONGLE.MP3 o Reagenz Reagenz Ambient 6554107 409 5 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/05O.MP3 dj friendly Reagenz Reagenz Ambient 9170122 573 6 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/06DJFRIE.MP3 b Reagenz Reagenz Ambient 12056955 753 7 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/07B.MP3 tz Reagenz Reagenz Ambient 2430524 151 8 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/08TZ.MP3 The Fun Equations Speedy J G Spot Electronic 4430486 276 1 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/01THEFUN.MP3 Ping Pong Speedy J G Spot Electronic 4744365 296 2 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/02PINGPO.MP3 Fill 25 Speedy J G Spot Electronic 9051865 565 3 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/03FILL25.MP3 Lanzarote Speedy J G Spot Electronic 2409228 150 4 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/04LANZAR.MP3 Extruma Speedy J G Spot Electronic 8004861 500 5 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/05EXTRUM.MP3 The Oil Zone Speedy J G Spot Electronic 8627347 539 6 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/06THEOIL.MP3 Treatments Speedy J G Spot Electronic 5908869 369 7 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/07TREATM.MP3 Fill 17 Speedy J G Spot Electronic 2576410 161 8 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/08FILL17.MP3 G Spot Speedy J G Spot Electronic 7929628 495 9 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/09GSPOT.MP3 Grogno Speedy J G Spot Electronic 4909180 306 10 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/10GROGNO.MP3 Symmetry Speedy J Live Electronic 8458472 528 1 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/01SYMMET.MP3 The Oil Zone Speedy J Live Electronic 6302503 393 2 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/02THEOIL.MP3 Ping Pong Speedy J Live Electronic 7185444 449 3 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/03PINGPO.MP3 Pepper Speedy J Live Electronic 7328011 458 4 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/04PEPPER.MP3 Scare Tactics Speedy J Live Electronic 6617509 413 5 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/05SCARET.MP3 Fusion Speedy J Live Electronic 11020896 688 6 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/06FUSION.MP3 The Fun Equations Speedy J Live Electronic 2067748 129 7 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/07THEFUN.MP3 G Spot Speedy J Live Electronic 2689660 168 8 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/08GSPOT.MP3 Deep In It St Germain Boulevard Jazz 7041877 440 1 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/01DEEPIN.MP3 Thank U Mum (For Everything You Did) St Germain Boulevard Jazz 12076219 754 2 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/02THANKU.MP3 Street Scene (4 Shaz) St Germain Boulevard Jazz 15140261 946 3 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/03STREET.MP3 Easy To Remember St Germain Boulevard Jazz 9291756 580 4 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/04EASYTO.MP3 Sentimental Mood St Germain Boulevard Jazz 9924964 620 5 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/05SENTIM.MP3 What's New St Germain Boulevard Jazz 7452730 465 6 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/06WHATSN.MP3 Dub Experience II St Germain Boulevard Jazz 3650564 228 7 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/07DUBEXP.MP3 Forget It St Germain Boulevard Jazz 7634960 477 8 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/08FORGET.MP3 Tabla Rasa Sven Van Hees The Future Sound Of Jazz Ambient 6865128 429 1 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/01SVENVA.MP3 Journey (Aphex Twin Care Mix) Gentle People The Future Sound Of Jazz Ambient 9751154 609 2 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/02GENTLE.MP3 Nights Interlude Nightmares On Wax The Future Sound Of Jazz Ambient 4455186 278 3 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/03NIGHTM.MP3 Quiddity (Last Visit) Max 404 The Future Sound Of Jazz Ambient 5720761 357 4 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/04MAX404.MP3 Sexual Attraction Fauna Flash The Future Sound Of Jazz Ambient 5803657 362 5 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/05FAUNAF.MP3 All That Jazz 12-10 Series MK 1 The Future Sound Of Jazz Ambient 5612512 350 6 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/061210SE.MP3 Sides Of Iron Chaser The Future Sound Of Jazz Ambient 7019351 438 7 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/07CHASER.MP3 Nova Sola (Bahia Blunt) Shantel The Future Sound Of Jazz Ambient 4404192 275 8 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/08SHANTE.MP3 A Pulsinger/Tunakan Prod. - P.M.2/SM2 Lazer Musik The Future Sound Of Jazz Ambient 4169735 260 9 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/09LAZERM.MP3 1992 Live b. Low Feat. Richard Dorfmeister On Flute The Future Sound Of Jazz Ambient 3708313 231 10 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/10BLOWFE.MP3 Hector's House u-ZIQ The Future Sound Of Jazz Ambient 4208161 263 11 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/11UZIQ.MP3 Tranquilizer Turntable Terranova The Future Sound Of Jazz Ambient 2492451 155 12 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/12TURNTA.MP3 Ion State Children of the Bong N/A Electronic 9896000 706 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 112 44100 MPEG AUDIO FILE MP3003/VARIOUSA/01.MP3 Ultraspace Children of the Bong N/A Electronic 7209025 514 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 112 44100 MPEG AUDIO FILE MP3003/VARIOUSA/02.MP3 Side A Kid Koala Scratch Happy Land Electronic 6385616 399 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/03.MP3 Binary Sinapse N/A Electronic 5318033 332 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/04.MP3 Dreamer N/A N/A Electronic 4554999 0 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 0 0 MPEG AUDIO FILE MP3003/VARIOUSA/05.MP3 Encore Une Fois (blunt radio edit) Sash! Electronica - Disk 1 Electronic 3606906 225 9 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/09ENCORE.MP3 Groovebird (original radio edit) Natural Born Grooves Electronica - Disk 1 Electronic 3004642 187 10 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/10GROOVE.MP3 Spin Spin Sugar (album version) Sneaker Pimps Electronica - Disk 2 Electronic 4152798 259 10 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/10SPINSP.MP3 Rollercoaster (original) The Grid Electronica - Disk 1 Electronic 6533030 408 13 2002-02-26 01:18:03-08 2002-02-26 01:18:03-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/13ROLLER.MP3 Inner City Life (radio edit) Goldie Electronica - Disk 2 Electronic 3567189 222 14 2002-02-26 01:18:03-08 2002-02-26 01:18:03-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/14INNERC.MP3 Walking Wounded (Dave Wallace remix) Everything but the Girl Electronica - Disk 2 Electronic 5502643 343 15 2002-02-26 01:18:03-08 2002-02-26 01:18:03-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/15WALKIN.MP3 Cyax Pt. 1 Alter Ego Decoding The Hacker Myth Ambient 7527582 470 1 2002-02-26 01:18:11-08 2002-02-26 01:18:11-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/01CYAXPT.MP3 Cryonics Alter Ego Decoding The Hacker Myth Ambient 6625207 414 2 2002-02-26 01:18:11-08 2002-02-26 01:18:11-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/02CRYONI.MP3 Brom Alter Ego Decoding The Hacker Myth Ambient 4771972 298 3 2002-02-26 01:18:11-08 2002-02-26 01:18:11-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/03BROM.MP3 Mescal Alter Ego Decoding The Hacker Myth Ambient 6823875 426 4 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/04MESCAL.MP3 Slacker Alter Ego Decoding The Hacker Myth Ambient 6368579 398 5 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/05SLACKE.MP3 Alterism Alter Ego Decoding The Hacker Myth Ambient 6733040 420 6 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/06ALTERI.MP3 Microshopping Alter Ego Decoding The Hacker Myth Ambient 6320519 395 7 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/07MICROS.MP3 Lycra Alter Ego Decoding The Hacker Myth Ambient 6230232 389 8 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/08LYCRA.MP3 Telekinetik Alter Ego Decoding The Hacker Myth Ambient 4741050 296 9 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/09TELEKI.MP3 Cyax Pt. 2 Alter Ego Decoding The Hacker Myth Ambient 5762265 360 10 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/10CYAXPT.MP3 lavender Alter Ego Decoding The Hacker Myth Ambient 7207425 450 11 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/11LAVEND.MP3 Acrid Avid Jam Shred Aphex Twin I Care Because You Do Electronic 7335336 458 1 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/01ACRIDA.MP3 The Woxen Pith Aphex Twin I Care Because You Do Electronic 4636291 289 2 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/02THEWOX.MP3 Wax The Nip Aphex Twin I Care Because You Do Electronic 4141424 258 3 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/03WAXTHE.MP3 Icct Hedral Aphex Twin I Care Because You Do Electronic 5875396 367 4 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/04ICCTHE.MP3 VENTOLIN Aphex Twin I Care Because You Do Electronic 4308883 269 5 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/05VENTOL.MP3 Come On You Slags! Aphex Twin I Care Because You Do Electronic 5514008 344 6 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/06COMEON.MP3 Start As You Mean To Go On Aphex Twin I Care Because You Do Electronic 5847408 365 7 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/07STARTA.MP3 Wet Tip Hen Ax Aphex Twin I Care Because You Do Electronic 5078783 317 8 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/08WETTIP.MP3 MOOKID Aphex Twin I Care Because You Do Electronic 3704094 231 9 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/09MOOKID.MP3 Alberto Balsalm Aphex Twin I Care Because You Do Electronic 4973029 310 10 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/10ALBERT.MP3 Cow Cud Is A Twin Aphex Twin I Care Because You Do Electronic 5338745 333 11 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/11COWCUD.MP3 Next Heap With Aphex Twin I Care Because You Do Electronic 4529573 283 12 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/12NEXTHE.MP3 4 Aphex Twin Richard D. James Album Electronic 3460439 216 1 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/014.MP3 Cornish Acid Aphex Twin Richard D. James Album Electronic 2160180 135 2 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/02CORNIS.MP3 PEEK 824545201 Aphex Twin Richard D. James Album Electronic 2961409 185 3 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/03PEEK82.MP3 Fingerbib Aphex Twin Richard D. James Album Electronic 3662043 228 4 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/04FINGER.MP3 Corn Mouth Aphex Twin Richard D. James Album Electronic 2454421 153 5 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/05CORNMO.MP3 To Cure A Weakling Child Aphex Twin Richard D. James Album Electronic 3901131 243 6 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/06TOCURE.MP3 Goon Gumpas Aphex Twin Richard D. James Album Electronic 1960812 122 7 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/07GOONGU.MP3 Yellow Calx Aphex Twin Richard D. James Album Electronic 2923790 182 8 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/08YELLOW.MP3 Girl/Boy Song Aphex Twin Richard D. James Album Electronic 4605241 287 9 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/09GIRLBO.MP3 Logon-Rock Witch Aphex Twin Richard D. James Album Electronic 3397066 212 10 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/10LOGONR.MP3 Milkman Aphex Twin Richard D. James Album Electronic 3987075 249 11 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/11MILKMA.MP3 INKEY$ Aphex Twin Richard D. James Album Electronic 1348917 84 12 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/12INKEY.MP3 Girl/Boy (18 Snare Rush Mix) Aphex Twin Richard D. James Album Electronic 1880306 117 13 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/13GIRLBO.MP3 Beetles Aphex Twin Richard D. James Album Electronic 1459259 91 14 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/14BEETLE.MP3 Girl/Boy (Redruth Mix) Aphex Twin Richard D. James Album Electronic 1561814 97 15 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/15GIRLBO.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 4666748 291 1 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/01.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 8719154 544 2 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/02.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 3635090 227 3 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/03.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 1235671 77 4 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/04.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 5158404 322 5 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/05.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 5814329 363 6 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/06.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 4659656 291 7 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/07.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 7393927 462 8 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/08.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 4924452 307 9 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/09.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 5249294 328 10 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/10.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 6913112 432 0 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/12.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 7277570 454 0 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/13.MP3 Online Information Electric Universe MDM Vol 14 Electronic 6272859 392 0 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/ELECTRIC/01.MP3 Out Electric Universe MDM Vol 14 Electronic 9392741 587 0 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/ELECTRIC/02.MP3 Whole Being Martin Dumais & Marc Leclair Les Incontournables Du Techno Quebecois Electronic 5440272 340 1 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/LESINCON/01WHOLEB.MP3 Bigger-Better-Darker-Deeper Sylvain Houde & Alexandre Lepage Les Incontournables Du Techno Quebecois Electronic 4464915 279 2 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/LESINCON/02BIGGER.MP3 Cascade Mateo Les Incontournables Du Techno Quebecois Electronic 5621639 351 3 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/LESINCON/03CASCAD.MP3 Angel Massive Attack Mezzanine Trip-Hop 6089788 380 1 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/01ANGEL.MP3 Risingson Massive Attack Mezzanine Trip-Hop 4782416 298 2 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/02RISING.MP3 Teardrop Massive Attack Mezzanine Trip-Hop 5292047 330 3 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/03TEARDR.MP3 Inertia Creeps Massive Attack Mezzanine Trip-Hop 5712380 357 4 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/04INERTI.MP3 Exchange Massive Attack Mezzanine Trip-Hop 4018944 251 5 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/05EXCHAN.MP3 Dissolved Girl Massive Attack Mezzanine Trip-Hop 5871621 366 6 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/06DISSOL.MP3 Man Next Door Massive Attack Mezzanine Trip-Hop 5702488 356 7 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/07MANNEX.MP3 Black Milk Massive Attack Mezzanine Trip-Hop 6104144 381 8 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/08BLACKM.MP3 Mezzanine Massive Attack Mezzanine Trip-Hop 5709449 356 9 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/09MEZZAN.MP3 Group Four Massive Attack Mezzanine Trip-Hop 7877406 492 10 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/10GROUPF.MP3 (Exchange) Massive Attack Mezzanine Trip-Hop 4007105 250 11 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/11EXCHAN.MP3 Protection Massive Attack N/A Trip-Hop 4679546 292 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/01.MP3 Karma Coma Massive Attack N/A Trip-Hop 5049041 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/02.MP3 Rising Sun Massive Attack N/A Trip-Hop 4789326 299 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/03.MP3 Protection Massive Attack N/A Trip-Hop 7538824 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/04.MP3 Safe From Harm Massive Attack N/A Trip-Hop 5104634 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/05.MP3 Unfinished Sympathy (Mix) Massive Attack N/A Trip-Hop 5138500 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/06.MP3 Unfinished Sympathy Massive Attack N/A Trip-Hop 5032750 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/07.MP3 Angel Massive Attack N/A Trip-Hop 6064096 379 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/08.MP3 Protection Massive Attack N/A Trip-Hop 4632059 289 0 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/09.MP3 Sly (7 Stones mix) Massive Attack Sly single Trip-Hop 7151734 0 0 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/10.MP3 Sly (Underdog mix) Massive Attack Sly single Trip-Hop 6337236 0 0 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/11.MP3 17 Sato Yumiko elfish echo presents Electronic 5641741 352 1 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/0117.MP3 violette Sato Yumiko elfish echo presents Electronic 5088091 318 2 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/02VIOLET.MP3 star Sato Yumiko elfish echo presents Electronic 7844109 490 3 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/03STAR.MP3 is it Sato Yumiko elfish echo presents Electronic 4394276 274 4 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/04ISIT.MP3 up your stairs Sato Yumiko elfish echo presents Electronic 5009381 313 5 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/05UPYOUR.MP3 noctovision Sato Yumiko elfish echo presents Electronic 5884724 367 6 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/06NOCTOV.MP3 lost track Sato Yumiko elfish echo presents Electronic 5922200 370 7 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/07LOSTTR.MP3 strings Sato Yumiko elfish echo presents Electronic 7308983 456 8 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/08STRING.MP3 equation Sato Yumiko elfish echo presents Electronic 10838649 677 9 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/09EQUATI.MP3 absinthflut Sato Yumiko elfish echo presents Electronic 5465791 341 10 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/10ABSINT.MP3 obscured by meaning Sato Yumiko elfish echo presents Electronic 7533860 470 11 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/11OBSCUR.MP3 Transition Seven Snomed Analeptik Electronic 2957328 184 1 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/01TRANSI.MP3 Analeptik Seven Snomed Analeptik Electronic 8907392 556 2 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/02ANALEP.MP3 Malfunction Seven Snomed Analeptik Electronic 6642334 415 3 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/03MALFUN.MP3 Aluminium Komp Seven Snomed Analeptik Electronic 6453837 403 4 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/04ALUMIN.MP3 Sand Glossy Seven Snomed Analeptik Electronic 5778970 361 5 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/05SANDGL.MP3 Adiptic Acid Seven Snomed Analeptik Electronic 7553207 472 6 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/06ADIPTI.MP3 Econopac Seven Snomed Analeptik Electronic 8099754 506 7 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/07ECONOP.MP3 Play = 303 Seven Snomed Analeptik Electronic 5147294 321 8 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/08PLAY30.MP3 Equivalence Seven Snomed Analeptik Electronic 7950546 496 9 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/09EQUIVA.MP3 Analeptik 2 Seven Snomed Analeptik Electronic 3935633 245 10 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/10ANALEP.MP3 Seven Snomed Analeptik Electronic 2607359 162 11 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/11NOTITL.MP3 Expansion System 7 N/A Electronic 9109556 569 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/01.MP3 A Cool Place System 7 N/A Electronic 7995447 499 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/02.MP3 Alpha Waves System 7 N/A Electronic 9699382 606 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/03.MP3 desir Ghost mix System 7 N/A Electronic 7471162 466 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/04.MP3 FayDeauDeau System 7 N/A Electronic 7143478 446 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/05.MP3 On The Seventh Night System 7 N/A Electronic 7274559 454 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/06.MP3 Ship Of The Desert System 7 N/A Electronic 9371709 585 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/07.MP3 Sinbad System 7 N/A Electronic 7733297 483 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/08.MP3 Mektoub System 7 N/A Electronic 6881330 430 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/09.MP3 Halo Effect Guru Stefan Therapy Electronic 6257413 391 1 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/01HALOEF.MP3 Depersonalisation Guru Stefan Therapy Electronic 6344772 396 2 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/02DEPERS.MP3 Obsolete Perversion Guru Stefan Therapy Electronic 9721883 607 3 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/03OBSOLE.MP3 Aylek triko 3060 Guru Stefan Therapy Electronic 3913922 244 4 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/04AYLEKT.MP3 Negative space Guru Stefan Therapy Electronic 4919669 307 5 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/05NEGATI.MP3 Sponteneous Inhibition Guru Stefan Therapy Electronic 6464731 404 6 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/06SPONTE.MP3 Personnal Illumination Guru Stefan Therapy Electronic 5008980 313 7 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/07PERSON.MP3 Shape Shifters Guru Stefan Therapy Electronic 2825694 176 8 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/08SHAPES.MP3 Foam Culture Guru Stefan Therapy Electronic 5891003 368 9 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/09FOAMCU.MP3 Hyperdimentionnal Realty Guru Stefan Therapy Electronic 3370585 210 10 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/10HYPERD.MP3 Mind altering Bubble Guru Stefan Therapy Electronic 5240947 327 11 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/11MINDAL.MP3 Self Fulfilling Prophecies Guru Stefan Therapy Electronic 2201556 137 12 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/12SELFFU.MP3 Osmosis Guru Stefan Therapy Electronic 5330796 333 13 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/13OSMOSI.MP3 Reversed Atmospheric Organism Guru Stefan Therapy Electronic 4892797 305 14 2002-02-26 01:18:22-08 2002-02-26 01:18:22-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/14REVERS.MP3 train-trac [train-abuse] Fuse Train-tracs Electronic 7613649 475 1 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/01TRAINT.MP3 train-trac [kaboose] Fuse Train-tracs Electronic 13229760 826 2 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/02TRAINT.MP3 train-trac [drum-trac 2] Fuse Train-tracs Electronic 6017463 376 3 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/03TRAINT.MP3 train-trac [bajack] Fuse Train-tracs Electronic 7866927 491 4 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/04TRAINT.MP3 train-trac [the day after [mv's mix]] Fuse Train-tracs Electronic 3645977 227 5 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/05TRAINT.MP3 confusion Fuse Train-tracs Electronic 4811635 300 6 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/06CONFUS.MP3 approach & identify Fuse Train-tracs Electronic 5407656 337 7 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/07APPROA.MP3 Salacious Gianelli Transmissions, volume 1 Electronic 3349423 209 1 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/01GIANEL.MP3 Relations Ian Pooley Transmissions, volume 1 Electronic 5481712 342 2 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/02IANPOO.MP3 Seven 2 Mix Seven Transmissions, volume 1 Electronic 4056256 253 3 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/03SEVEN.MP3 Vision 3 Mario J Transmissions, volume 1 Electronic 3426368 214 4 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/04MARIOJ.MP3 HardFunk HardTrax Transmissions, volume 1 Electronic 4318112 269 5 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/05HARDTR.MP3 Always Did, Always Will Tralopscinor Transmissions, volume 1 Electronic 3513281 219 6 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/06TRALOP.MP3 Manik Sax Chuck Pulasole Transmissions, volume 1 Electronic 5054234 315 7 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/07CHUCKP.MP3 Bang The Box Basement Trax Transmissions, volume 1 Electronic 3090785 193 8 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/08BASEME.MP3 The Son Sun Children Transmissions, volume 1 Electronic 3558463 222 9 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/09SUNCHI.MP3 Get House Calisto Transmissions, volume 1 Electronic 5687130 355 10 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/10CALIST.MP3 Gasoline Barada Transmissions, volume 1 Electronic 4740138 296 11 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/11BARADA.MP3 Rescue Omegaman Transmissions, volume 1 Electronic 4557700 284 12 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/12OMEGAM.MP3 Loop (Fuse Mix) LFO vs. Fuse Transmissions, volume 1 Electronic 6349275 396 13 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/13LFOVSF.MP3 Logan's Run L.A. Williams Transmissions, volume 1 Electronic 4210472 263 14 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/14LAWILL.MP3 Spaz Plastikman Transmissions, volume 1 Electronic 5215051 325 15 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/15PLASTI.MP3 A track for O.J. Simpson Terrence Parker Transmissions, volume 1 Electronic 3079890 192 16 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/16TERREN.MP3 Phreakin' DJ HMC Transmissions, volume 1 Electronic 3773093 235 17 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/17DJHMC.MP3 An Accident in Paradise Sven Vath Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 6344527 396 1 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/01ANACCI.MP3 Into the Nature Hardfloor Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 6028170 376 2 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/02INTOTH.MP3 Mikado Pulse Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 5550341 346 3 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/03MIKADO.MP3 Vernon's Wonderland (Chapter Two) Vernon Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 4701990 293 4 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/04VERNON.MP3 Cafe Del Mar Energy 52 Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 5234695 327 5 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/05CAFEDE.MP3 C3 Bells Moby Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 4116840 257 6 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/06C3BELL.MP3 Hypnotize Me House 2 House Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2297283 143 7 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/07HYPNOT.MP3 Your Touch 2001 Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 3653568 228 8 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/08YOURTO.MP3 Dee Drive Fiction Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2775141 173 9 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/09DEEDRI.MP3 Barbarella Barbarella Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 3008264 188 10 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/10BARBAR.MP3 Housewerk Airtight Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 3078860 192 11 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/11HOUSEW.MP3 The Music is Movin Fargetta Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2005570 125 12 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/12THEMUS.MP3 Go Moby Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 4035253 252 13 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/13GO.MP3 next is the E (intro mix) Moby Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2163124 135 14 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/14NEXTIS.MP3 Honey Moby Play Electronic 3339232 208 1 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/01HONEY.MP3 Find My Baby Moby Play Electronic 3830481 239 2 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/02FINDMY.MP3 Porcelain Moby Play Electronic 3858063 241 3 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/03PORCEL.MP3 Why Does My Heart Feel So Bad? Moby Play Electronic 4238705 264 4 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/04WHYDOE.MP3 South Side Moby Play Electronic 3676948 229 5 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/05SOUTHS.MP3 Rushing Moby Play Electronic 2883798 180 6 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/06RUSHIN.MP3 Bodyrock Moby Play Electronic 3462673 216 7 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/07BODYRO.MP3 Natural Blues Moby Play Electronic 4061473 253 8 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/08NATURA.MP3 Machete Moby Play Electronic 3484684 217 9 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/09MACHET.MP3 7 Moby Play Electronic 993644 62 10 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/107.MP3 Run On Moby Play Electronic 3603385 225 11 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/11RUNON.MP3 Down Slow Moby Play Electronic 1519025 94 12 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/12DOWNSL.MP3 If Things Were Perfect Moby Play Electronic 4139642 258 13 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/13IFTHIN.MP3 Everloving Moby Play Electronic 3290338 205 14 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/14EVERLO.MP3 Inside Moby Play Electronic 4618607 288 15 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/15INSIDE.MP3 Guitar Flute & String Moby Play Electronic 2068237 129 16 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/16GUITAR.MP3 The Sky Is Broken Moby Play Electronic 4136852 258 17 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/17THESKY.MP3 My Weakness Moby Play Electronic 3483854 217 18 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/18MYWEAK.MP3 korridor Plastikman Artifakts [bc] Electronic 5584869 349 1 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/01KORRID.MP3 psyk Plastikman Artifakts [bc] Electronic 8171613 510 2 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/02PSYK.MP3 pakard Plastikman Artifakts [bc] Electronic 11745164 734 3 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/03PAKARD.MP3 hypokondriak Plastikman Artifakts [bc] Electronic 10151911 634 4 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/04HYPOKO.MP3 rekall Plastikman Artifakts [bc] Electronic 10366736 647 5 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/05REKALL.MP3 skizofrenik Plastikman Artifakts [bc] Electronic 4799945 299 6 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/06SKIZOF.MP3 are friends elecktrk? + lodgiikal nonsense Plastikman Artifakts [bc] Electronic 19625817 1226 7 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/07AREFRI.MP3 contain Plastikman Consumed Ambient 8146283 509 1 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/01CONTAI.MP3 consume Plastikman Consumed Ambient 10874998 679 2 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/02CONSUM.MP3 passage (in) Plastikman Consumed Ambient 863631 53 3 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/03PASSAG.MP3 cor ten Plastikman Consumed Ambient 6576707 411 4 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/04CORTEN.MP3 convulse (sic) Plastikman Consumed Ambient 1324642 82 5 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/05CONVUL.MP3 ekko Plastikman Consumed Ambient 3773453 235 6 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/06EKKO.MP3 converge Plastikman Consumed Ambient 4232794 264 7 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/07CONVER.MP3 locomotion Plastikman Consumed Ambient 8467697 529 8 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/08LOCOMO.MP3 in side Plastikman Consumed Ambient 12123859 757 9 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/09INSIDE.MP3 consumed Plastikman Consumed Ambient 11240297 702 10 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/10CONSUM.MP3 passage (out) Plastikman Consumed Ambient 3067950 191 11 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/11PASSAG.MP3 konception Plastikman Musik Electronic 7865269 491 1 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/01KONCEP.MP3 plastique Plastikman Musik Electronic 12535264 783 2 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/02PLASTI.MP3 kriket Plastikman Musik Electronic 5425065 339 3 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/03KRIKET.MP3 fuk Plastikman Musik Electronic 4889394 305 4 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/04FUK.MP3 outbak Plastikman Musik Electronic 4969227 310 5 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/05OUTBAK.MP3 ethnik Plastikman Musik Electronic 8727514 545 6 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/06ETHNIK.MP3 plasmatik Plastikman Musik Electronic 5183643 323 7 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/07PLASMA.MP3 goo Plastikman Musik Electronic 1919935 119 8 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/08GOO.MP3 marbles Plastikman Musik Electronic 10684399 667 9 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/09MARBLE.MP3 lasttrak Plastikman Musik Electronic 8036632 502 10 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/10LASTTR.MP3 drp Plastikman Sheet One Electronic 1694105 105 1 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/01DRP.MP3 plasticity Plastikman Sheet One Electronic 10563760 660 2 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/02PLASTI.MP3 gak Plastikman Sheet One Electronic 5417284 338 3 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/03GAK.MP3 okx Plastikman Sheet One Electronic 554749 34 4 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/04OKX.MP3 helikopter Plastikman Sheet One Electronic 6249865 390 5 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/05HELIKO.MP3 glob Plastikman Sheet One Electronic 8002779 500 6 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/06GLOB.MP3 plasticine Plastikman Sheet One Electronic 10875975 679 7 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/07PLASTI.MP3 koma Plastikman Sheet One Electronic 4004166 250 8 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/08KOMA.MP3 vokx Plastikman Sheet One Electronic 2043938 127 9 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/09VOKX.MP3 smak Plastikman Sheet One Electronic 6438779 402 10 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/10SMAK.MP3 ovokx Plastikman Sheet One Electronic 2149824 134 11 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/11OVOKX.MP3 November X Ray Mexico Richard Kirk Virtual State Ambient 8210179 513 1 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/01NOVEMB.MP3 Frequency Band Richard Kirk Virtual State Ambient 6182998 386 2 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/02FREQUE.MP3 Come Richard Kirk Virtual State Ambient 7714808 482 3 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/03COME.MP3 Freezone Richard Kirk Virtual State Ambient 6592732 412 4 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/04FREEZO.MP3 Clandestine Transmission Richard Kirk Virtual State Ambient 6349078 396 5 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/05CLANDE.MP3 The Feeling (of Warmth & Beauty) Richard Kirk Virtual State Ambient 5889240 368 6 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/06THEFEE.MP3 Velodrome Richard Kirk Virtual State Ambient 6672005 417 7 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/07VELODR.MP3 Soul Catcher Richard Kirk Virtual State Ambient 6853124 428 8 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/08SOULCA.MP3 Worldwar Three Richard Kirk Virtual State Ambient 5645503 352 9 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/09WORLDW.MP3 Lagoon West Richard Kirk Virtual State Ambient 11522423 720 10 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/10LAGOON.MP3 Early Blow Ratio Richie Hawtin: Decks, EFX & 909 Electronic 1968906 123 1 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/01RATIO.MP3 Dumped G. Flame & Mr. G Richie Hawtin: Decks, EFX & 909 Electronic 1012205 63 2 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/02GFLAME.MP3 User 02:B2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1137317 71 3 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/03RICHAR.MP3 User 04:A2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1033761 64 4 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/04RICHAR.MP3 User 02:A2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1353680 84 5 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/05RICHAR.MP3 User 01:B2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1228897 76 6 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/06RICHAR.MP3 001A:A2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1339721 83 7 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/07RICHAR.MP3 B2 Grain 1 Richie Hawtin: Decks, EFX & 909 Electronic 1111433 69 8 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/08GRAIN1.MP3 Road To Rio B2 Santos Rodriguez Richie Hawtin: Decks, EFX & 909 Electronic 586371 36 9 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/09SANTOS.MP3 B1 Grain 2 Richie Hawtin: Decks, EFX & 909 Electronic 1554103 97 10 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/10GRAIN2.MP3 Road To Rio A2 Santos Rodriguez Richie Hawtin: Decks, EFX & 909 Electronic 1416669 88 11 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/11SANTOS.MP3 A1 Grain 2 Richie Hawtin: Decks, EFX & 909 Electronic 763844 47 12 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/12GRAIN2.MP3 002A:B1 Richard Harvey Richie Hawtin: Decks, EFX & 909 Soundtrack 4173788 260 13 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/13RICHAR.MP3 Call of the Wild Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 1752168 109 14 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/14JEFFMI.MP3 L8 Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 639796 39 15 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/15JEFFMI.MP3 Scout Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 448427 28 16 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/16JEFFMI.MP3 L8 Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 222972 13 17 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/17JEFFMI.MP3 Orange/Minus 1 Orange Richie Hawtin: Decks, EFX & 909 Soundtrack 2104178 131 18 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/18RICHIE.MP3 Orange/Minus 2 Richie Hawtin Richie Hawtin: Decks, EFX & 909 Soundtrack 1221823 76 19 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/19RICHIE.MP3 Minus/Orange 2 Richie Hawtin Richie Hawtin: Decks, EFX & 909 Soundtrack 890334 55 20 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/20RICHIE.MP3 Let Your Body learn Nitzer Ebb Richie Hawtin: Decks, EFX & 909 Soundtrack 2098270 131 21 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/21NITZER.MP3 Minus/Orange 1 Richie Hawtin Richie Hawtin: Decks, EFX & 909 Soundtrack 946593 59 22 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/22RICHIE.MP3 What the Hell Was That? Intermission Richie Hawtin: Decks, EFX & 909 Soundtrack 155544 9 23 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/23INTERM.MP3 Killabyte 002:A1 Ben Sims Richie Hawtin: Decks, EFX & 909 Soundtrack 2102386 131 24 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/24BENSIM.MP3 Hardgroove 001:A1 Ben Sims Richie Hawtin: Decks, EFX & 909 Soundtrack 2821651 176 25 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/25BENSIM.MP3 Alarms Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 1217201 76 26 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/26JEFFMI.MP3 Force & Form (Surgeon Remake 2) Surgeon Richie Hawtin: Decks, EFX & 909 Soundtrack 1901640 118 27 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/27SURGEO.MP3 Zen Pacou Richie Hawtin: Decks, EFX & 909 Soundtrack 2039998 127 28 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/28PACOU.MP3 Five Heiko Laux Richie Hawtin: Decks, EFX & 909 Soundtrack 1552760 97 29 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/29HEIKOL.MP3 Dead Eye Baby Ford & Eon Richie Hawtin: Decks, EFX & 909 Soundtrack 2293970 143 30 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/30BABYFO.MP3 Club Soda Savvas Ysatis Richie Hawtin: Decks, EFX & 909 Soundtrack 1282396 80 31 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/31SAVVAS.MP3 It's Process Not substance Stewart S. Walker Richie Hawtin: Decks, EFX & 909 Soundtrack 505255 31 32 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/32STEWAR.MP3 5 M Richie Hawtin: Decks, EFX & 909 Soundtrack 1296399 81 33 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/33M.MP3 Neo Vladislav Delay Richie Hawtin: Decks, EFX & 909 Soundtrack 2527319 157 34 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/34VLADIS.MP3 Aliens Don't Boogie Thor Richie Hawtin: Decks, EFX & 909 Soundtrack 2745593 171 35 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/35THOR.MP3 Questions 003:B2 Marco Carola Richie Hawtin: Decks, EFX & 909 Soundtrack 2865986 179 36 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/36MARCOC.MP3 Kykeon Quadrant Richie Hawtin: Decks, EFX & 909 Soundtrack 2159219 134 37 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/37QUADRA.MP3 Never Tell You (Version) Rhythm & Sound Richie Hawtin: Decks, EFX & 909 Soundtrack 2589183 161 38 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/38RHYTHM.MP3 Block Rockin' Beats (original) Chemical Bros Electronica - Disk 1 Misc 4783742 298 1 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/01BLOCKR.MP3 Born Slippy (Nuxx edit) Underworld Electronica - Disk 2 Misc 4056895 253 3 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/03BORNSL.MP3 Take California (Short one) Propellerheads Electronica - Disk 1 Misc 3713765 232 3 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/03TAKECA.MP3 Breathe (Edit) Prodigy Electronica - Disk 2 Misc 3797330 237 4 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/04BREATH.MP3 Absurd (Whitewash edit) Fluke Electronica - Disk 1 Misc 3479277 217 6 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/06ABSURD.MP3 Satan (live @ the irvine plaza) Orbital Electronica - Disk 1 Misc 6150187 384 11 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/11SATANL.MP3 Going Out Of My Head (radio version) Fatboy Slim Electronica - Disk 1 Misc 4842261 302 12 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/12GOINGO.MP3 Beautiful When You're Mad Flu Ready For Radio Pop 3647478 227 6 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Beautiful When You're Mad.mp3 Bonecracker ShoCore Ready For Radio Pop 2789816 174 4 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Bonecracker.mp3 Brenda Mars The Dragonflies Ready For Radio Pop 3683003 230 5 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Brenda Mars.mp3 By The Stereo Ashley Park Ready For Radio Pop 2347204 146 10 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/By The Stereo.mp3 Detox No.9 Paul Jarret Ready For Radio Pop 3409236 213 12 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Detox No.9.mp3 Everything's Fine Fifth Season Ready For Radio Pop 3400465 212 3 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Everything's Fine.mp3 Five Years Rut superGARAGE Ready For Radio Pop 2920227 182 17 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Five Years Rut.mp3 Gonna Be Alright Marytez Ready For Radio Pop 2678644 167 1 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Gonna Be Alright.mp3 Insect Girl Adrienne Pierce Ready For Radio Pop 4173688 260 11 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Insect Girl.mp3 Jobsite Zubot + Dawson Ready For Radio Pop 3873588 242 15 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Jobsite.mp3 Lester Bang Nasty On Ready For Radio Pop 2065077 129 16 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Lester Bang.mp3 Lost In The park Radiogram Ready For Radio Pop 3387924 211 14 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Lost In The park.mp3 Out Of Space Rich Hope Ready For Radio Pop 3309342 206 9 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Out Of Space.mp3 Outlook Episode Ready For Radio Pop 3538378 221 18 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Outlook.mp3 Over It Kristy Thirsk Ready For Radio Pop 4355075 272 2 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Over It.mp3 RDS Drumatic Ready For Radio Pop 5566313 347 19 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/RDS.mp3 Tears To The Skies Booti Dharma Ready For Radio Pop 2783560 173 13 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Tears To The Skies.mp3 The Flying Song Siobhan DuVall Ready For Radio Pop 3171424 198 7 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/The Flying Song.mp3 Thumbling Down Spygirl Ready For Radio Pop 3003396 187 8 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Thumbling Down.mp3 Angoisse (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 2535424 158 1 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 01.mp3 Du Jazz Dans Le Ravin Serge Gainsbourg Du Jazz Dans Le Ravin Other 2103296 131 2 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 02.mp3 Requiem Pour Un Twisteur Serge Gainsbourg Du Jazz Dans Le Ravin Other 2545664 159 3 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 03.mp3 Chez Les Ye-Ye Serge Gainsbourg Du Jazz Dans Le Ravin Other 3207168 200 4 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 04.mp3 Black March (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 1556480 97 5 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 05.mp3 Black Trombone Serge Gainsbourg Du Jazz Dans Le Ravin Other 2506752 156 6 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 06.mp3 Ce Mortel Ennui Serge Gainsbourg Du Jazz Dans Le Ravin Other 2822144 176 7 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 07.mp3 Generique Serge Gainsbourg Du Jazz Dans Le Ravin Other 1425408 89 8 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 08.mp3 Coco And Co Serge Gainsbourg Du Jazz Dans Le Ravin Other 2912256 182 9 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 09.mp3 Intoxicated Man Serge Gainsbourg Du Jazz Dans Le Ravin Other 2521088 157 10 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 10.mp3 Elaeudanla Teiteia Serge Gainsbourg Du Jazz Dans Le Ravin Other 1558528 97 11 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 11.mp3 Le Talkie Walkie Serge Gainsbourg Du Jazz Dans Le Ravin Other 1955840 122 12 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 12.mp3 Some Small Chance (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 1904640 119 13 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 13.mp3 Quand Tu T'y Mets Serge Gainsbourg Du Jazz Dans Le Ravin Other 1712128 107 14 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 14.mp3 La Fille Au Rasoir Serge Gainsbourg Du Jazz Dans Le Ravin Other 2185216 136 15 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 15.mp3 Quand Mon 6'35 Me Fait Les Yeux Doux Serge Gainsbourg Du Jazz Dans Le Ravin Other 1814528 113 16 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 16.mp3 Fugee (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 1069056 66 17 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 17.mp3 Machins Choses Serge Gainsbourg Du Jazz Dans Le Ravin Other 3162145 197 18 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 18.mp3 Negative Blues Serge Gainsbourg Du Jazz Dans Le Ravin Other 1462272 91 19 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 19.mp3 Wake Me At Five (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 2639872 164 20 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 20.mp3 Le poinonneur des lilas (enregistrement public) Serge Gainsbourg Le Poinconneur Des Lilas Other 3313664 207 1 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 01.mp3 Le poinonneur des lilas Serge Gainsbourg Le Poinconneur Des Lilas Other 2596864 162 2 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 02.mp3 La recette de l'amour fou Serge Gainsbourg Le Poinconneur Des Lilas Other 1859584 116 3 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 03.mp3 Douze belle dans la peau Serge Gainsbourg Le Poinconneur Des Lilas Other 1822720 113 4 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 04.mp3 Ce mortel ennui Serge Gainsbourg Le Poinconneur Des Lilas Other 2793472 174 5 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 05.mp3 Ronsard 58 Serge Gainsbourg Le Poinconneur Des Lilas Other 1787904 111 6 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 06.mp3 La femme des uns sous le corp des autres Serge Gainsbourg Le Poinconneur Des Lilas Other 2861056 178 7 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 07.mp3 L'alcool Serge Gainsbourg Le Poinconneur Des Lilas Other 3784704 236 8 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 08.mp3 Du jazz dans le ravin Serge Gainsbourg Le Poinconneur Des Lilas Other 2084864 130 9 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 09.mp3 Charleston des demenageurs de pianos Serge Gainsbourg Le Poinconneur Des Lilas Other 2299984 143 10 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 10.mp3 La jambes de bois de Friedland Serge Gainsbourg Le Poinconneur Des Lilas Other 2453504 153 11 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 11.mp3 Le claqueur de doigts Serge Gainsbourg Le Poinconneur Des Lilas Other 2971648 185 12 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 12.mp3 La nuit d'Octobre Serge Gainsbourg Le Poinconneur Des Lilas Other 2973696 185 13 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 13.mp3 Adieu creature Serge Gainsbourg Le Poinconneur Des Lilas Other 2074624 129 14 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 14.mp3 L'anthracite Serge Gainsbourg Le Poinconneur Des Lilas Other 2426880 151 15 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 15.mp3 Mambo miam miam Serge Gainsbourg Le Poinconneur Des Lilas Other 2455552 153 16 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 16.mp3 Indifferente Serge Gainsbourg Le Poinconneur Des Lilas Other 2152448 134 17 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 17.mp3 Jeunes femmes et vieux messieurs Serge Gainsbourg Le Poinconneur Des Lilas Other 1970176 123 18 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 18.mp3 L'amour a la papa Serge Gainsbourg Le Poinconneur Des Lilas Other 2695168 168 19 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 19.mp3 Cha cha cha du loup Serge Gainsbourg Le Poinconneur Des Lilas Other 1841152 115 20 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 20.mp3 Sois belle et tais toi Serge Gainsbourg Le Poinconneur Des Lilas Other 1902592 118 21 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 21.mp3 Laissez-moi tranquille Serge Gainsbourg Le Poinconneur Des Lilas Other 1845248 115 22 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 22.mp3 Judith Serge Gainsbourg Le Poinconneur Des Lilas Other 2420736 151 23 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 23.mp3 L'eau a la bouche Serge Gainsbourg Le Poinconneur Des Lilas Other 2367488 147 24 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 24.mp3 La chanson de Prevert Serge Gainsbourg La Javanaise Other 2891776 180 1 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 01.mp3 En relisant ta lettre Serge Gainsbourg La Javanaise Other 1935360 120 2 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 02.mp3 Le rock de Nerval Serge Gainsbourg La Javanaise Other 1779712 111 3 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 03.mp3 Les oubliettes Serge Gainsbourg La Javanaise Other 2359301 147 4 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 04.mp3 Chanson de Maglia Serge Gainsbourg La Javanaise Other 2000896 125 5 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 05.mp3 Viva Villa Serge Gainsbourg La Javanaise Other 3229696 201 6 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 06.mp3 Les Amours Perdues Serge Gainsbourg La Javanaise Other 2838528 177 7 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 07.mp3 Les femmes c'est du Chinois Serge Gainsbourg La Javanaise Other 2437120 152 8 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 08.mp3 Personne Serge Gainsbourg La Javanaise Other 2637824 164 9 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 09.mp3 Le sonnet D'Arvers Serge Gainsbourg La Javanaise Other 1835008 114 10 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 10.mp3 Les Goemons Serge Gainsbourg La Javanaise Other 2539520 158 11 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 11.mp3 Black trombones Serge Gainsbourg La Javanaise Other 2512896 157 12 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 12.mp3 Baudelaire Serge Gainsbourg La Javanaise Other 2359296 147 13 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 13.mp3 Intoxicated man Serge Gainsbourg La Javanaise Other 2523141 157 14 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 14.mp3 Quand tu t'y mets Serge Gainsbourg La Javanaise Other 1765376 110 15 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 15.mp3 Les Cigarillos Serge Gainsbourg La Javanaise Other 1701888 106 16 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 16.mp3 Requiem pour un Twister Serge Gainsbourg La Javanaise Other 2543616 158 17 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 17.mp3 Ce grand mechant Vous Serge Gainsbourg La Javanaise Other 2275328 142 18 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 18.mp3 L'appareil a sous Serge Gainsbourg La Javanaise Other 1505280 94 19 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 19.mp3 Vilaines filles, mauvais garons Serge Gainsbourg La Javanaise Other 1843200 115 20 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 20.mp3 Un violon, un jambon Serge Gainsbourg La Javanaise Other 2285568 142 21 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 21.mp3 La Javanaise Serge Gainsbourg La Javanaise Other 2375680 148 22 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 22.mp3 Chez les ye-ye Serge Gainsbourg Couleur Cafe Other 2383872 148 1 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 01.mp3 Sait-on jamais ou va une femme quand elle vous quitte Serge Gainsbourg Couleur Cafe Other 1949738 121 2 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 02.mp3 Le talkie-walkie Serge Gainsbourg Couleur Cafe Other 1980416 123 3 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 03.mp3 La fille au rasoir Serge Gainsbourg Couleur Cafe Other 1681408 105 4 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 04.mp3 la saison des pluies Serge Gainsbourg Couleur Cafe Other 3340288 208 5 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 05.mp3 Elaeudanla teiteia Serge Gainsbourg Couleur Cafe Other 1589248 99 6 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 06.mp3 Scenic railway Serge Gainsbourg Couleur Cafe Other 2488320 155 7 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 07.mp3 Le temps des yoyos Serge Gainsbourg Couleur Cafe Other 2525232 157 8 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 08.mp3 Amour sans amour Serge Gainsbourg Couleur Cafe Other 1988608 124 9 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 09.mp3 No no thank's no Serge Gainsbourg Couleur Cafe Other 2445312 152 10 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 10.mp3 Maxim's Serge Gainsbourg Couleur Cafe Other 1773568 110 11 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 11.mp3 Negative blues Serge Gainsbourg Couleur Cafe Other 1505408 94 12 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 12.mp3 Joanna Serge Gainsbourg Couleur Cafe Other 1986560 124 13 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 13.mp3 La-bas c'est naturel Serge Gainsbourg Couleur Cafe Other 2459648 153 14 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 14.mp3 Pauvre Lola Serge Gainsbourg Couleur Cafe Other 2428928 151 15 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 15.mp3 Quand mon 6'35 me fait les yeux doux Serge Gainsbourg Couleur Cafe Other 1849344 115 16 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 16.mp3 Machin choses Serge Gainsbourg Couleur Cafe Other 3209216 200 17 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 17.mp3 Les sambassadeurs Serge Gainsbourg Couleur Cafe Other 1990656 124 18 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 18.mp3 New-York USA Serge Gainsbourg Couleur Cafe Other 2232320 139 19 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 19.mp3 Couleur Cafe Serge Gainsbourg Couleur Cafe Other 2158592 134 20 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 20.mp3 Marabout Serge Gainsbourg Couleur Cafe Other 2127872 132 21 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 21.mp3 Ces petits riens Serge Gainsbourg Couleur Cafe Other 2007040 125 22 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 22.mp3 Tatoue Jeremie Serge Gainsbourg Couleur Cafe Other 1710080 106 23 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 23.mp3 Coco and co Serge Gainsbourg Couleur Cafe Other 2951168 184 24 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 24.mp3 Comment trouvez-vous ma soeur? Serge Gainsbourg Couleur Cafe Other 2007040 125 25 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 25.mp3 Chanson du forat Serge Gainsbourg Initials B. B. Other 2596864 162 1 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 01.mp3 Chanson du forat II Serge Gainsbourg Initials B. B. Other 1112115 69 2 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 02.mp3 Manon Serge Gainsbourg Initials B. B. Other 2607144 162 3 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 03.mp3 Requie pour un con Serge Gainsbourg Initials B. B. Other 2719744 169 4 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 04.mp3 L'herbe tendre Serge Gainsbourg Initials B. B. Other 1716224 107 5 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 05.mp3 Initials B. B. Serge Gainsbourg Initials B. B. Other 3471360 216 6 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 06.mp3 Comic strip Serge Gainsbourg Initials B. B. Other 2136064 133 7 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 07.mp3 Bloody Jack Serge Gainsbourg Initials B. B. Other 2041856 127 8 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 08.mp3 Docteur Jekyll et monsieur Hyde Serge Gainsbourg Initials B. B. Other 1914880 119 9 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 09.mp3 Torrey canyon Serge Gainsbourg Initials B. B. Other 2656256 166 10 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 10.mp3 Shu ba du ba loo la Serge Gainsbourg Initials B. B. Other 2060288 128 11 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 11.mp3 Ford Mustang Serge Gainsbourg Initials B. B. Other 2609152 163 12 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 12.mp3 Bonnie and Clyde Serge Gainsbourg Initials B. B. Other 4120576 257 13 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 13.mp3 Black and White Serge Gainsbourg Initials B. B. Other 2105344 131 14 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 14.mp3 Qui est "in" Qui est "out" Serge Gainsbourg Initials B. B. Other 2181120 136 15 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 15.mp3 Hold up Serge Gainsbourg Initials B. B. Other 2547712 159 16 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 16.mp3 Marilu Serge Gainsbourg Initials B. B. Other 2512896 157 17 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 17.mp3 Bonnie and Clyde (english) Serge Gainsbourg Initials B. B. Other 3624960 226 18 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 18.mp3 Comic strip (english) Serge Gainsbourg Initials B. B. Other 2181120 136 19 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 19.mp3 Chatterton Serge Gainsbourg Initials B. B. Other 2062336 128 20 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 20.mp3 Je t'aime... Moi non plus (avec Brigitte Bardot) Serge Gainsbourg Initials B. B. Other 4307025 269 21 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 21.mp3 Je T'Aime... Moi Non Plus Serge Gainsbourg Je T'Aime... Moi Non Plus Other 4237312 264 1 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 01.mp3 L'anamour Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2224128 139 2 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 02.mp3 Sous le soleil exactement Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2750464 171 3 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 03.mp3 69 annee erotique Serge Gainsbourg Je T'Aime... Moi Non Plus Other 3213312 200 4 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 04.mp3 Elisa Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2404352 150 5 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 05.mp3 Les sucettes Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2514944 157 6 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 06.mp3 La chanson de Slogan Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2744320 171 7 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 07.mp3 Cannabis Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2392064 149 8 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 08.mp3 Charlie Brown "A Boy named Charlie Brown" Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2611200 163 9 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 09.mp3 Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 7315456 457 10 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 10.mp3 Ballade de Melody Nelson Serge Gainsbourg Je T'Aime... Moi Non Plus Other 1935360 120 11 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 11.mp3 Valse de Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 1474560 92 12 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 12.mp3 Ah! Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 1736704 108 13 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 13.mp3 L'hotel particulier Serge Gainsbourg Je T'Aime... Moi Non Plus Other 3944448 246 14 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 14.mp3 En Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 3295232 205 15 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 15.mp3 Cargo culte Serge Gainsbourg Je T'Aime... Moi Non Plus Other 7342080 458 16 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 16.mp3 La decadanse Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 5046272 315 1 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 01.mp3 Sex shop Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2863104 178 2 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 02.mp3 Je Suis Venu Te Dire Que Je M'En Vais Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3268608 204 3 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 03.mp3 Vu de l'exterieur Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3538944 221 4 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 04.mp3 Panpan culcul Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2637824 164 5 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 05.mp3 Par hasard et par rase Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2404352 150 6 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 06.mp3 Des Vents Des Pets Des Poums Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2820096 176 7 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 07.mp3 Titicaca Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2881536 180 8 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 08.mp3 Pamela Popo Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2326528 145 9 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 09.mp3 La Poupe qui fait Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2926592 182 10 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 10.mp3 L'hippodame Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 1691648 105 11 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 11.mp3 Sensuelle et sans suite Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2985984 186 12 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 12.mp3 Nazi rock Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3041280 190 13 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 13.mp3 Tata teutonne Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2693120 168 14 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 14.mp3 J'entends des voix off Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2002944 125 15 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 15.mp3 Eva Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3096576 193 16 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 16.mp3 Smoke gets in your eyes Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3334144 208 17 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 17.mp3 Zig zag avec toi Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3508224 219 18 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 18.mp3 Est-ce est-ce si bon? Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3141632 196 19 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 19.mp3 Yellow star Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 1605632 100 20 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 20.mp3 Rock around the bunker Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3289088 205 21 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 21.mp3 S.S. in Uruguay Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2170880 135 22 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 22.mp3 L'homme a la tete de chou Serge Gainsbourg L'Homme A Tete De Chou Other 2881536 180 1 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 01.mp3 Chez Max coiffeur pour homme Serge Gainsbourg L'Homme A Tete De Chou Other 1918976 119 2 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 02.mp3 Marilou reggae Serge Gainsbourg L'Homme A Tete De Chou Other 2113536 132 3 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 03.mp3 Transit a Marilou Serge Gainsbourg L'Homme A Tete De Chou Other 1488896 93 4 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 04.mp3 Flash forward Serge Gainsbourg L'Homme A Tete De Chou Other 2523136 157 5 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 05.mp3 Aeroplanes Serge Gainsbourg L'Homme A Tete De Chou Other 2510848 156 6 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 06.mp3 Premiers symptomes Serge Gainsbourg L'Homme A Tete De Chou Other 1191936 74 7 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 07.mp3 Malou Marilou Serge Gainsbourg L'Homme A Tete De Chou Other 2596864 162 8 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 08.mp3 Variations sur Marilou Serge Gainsbourg L'Homme A Tete De Chou Other 7370752 460 9 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 09.mp3 Meurtre a l'extincteur Serge Gainsbourg L'Homme A Tete De Chou Other 761856 47 10 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 10.mp3 Marilou sous la neige Serge Gainsbourg L'Homme A Tete De Chou Other 2295808 143 11 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 11.mp3 Lunatic asylum Serge Gainsbourg L'Homme A Tete De Chou Other 3254272 203 12 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 12.mp3 L'ami Caouette Serge Gainsbourg L'Homme A Tete De Chou Other 3039232 189 13 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 13.mp3 Le cadavre exquis Serge Gainsbourg L'Homme A Tete De Chou Other 2813952 175 14 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 14.mp3 My Lady Heroine Serge Gainsbourg L'Homme A Tete De Chou Other 3067904 191 15 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 15.mp3 Trois millions de Jocondes Serge Gainsbourg L'Homme A Tete De Chou Other 2955264 184 16 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 16.mp3 Good-Bye Emmanuelle Serge Gainsbourg L'Homme A Tete De Chou Other 3211264 200 17 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 17.mp3 Sea, Sex and Sun Serge Gainsbourg L'Homme A Tete De Chou Other 3538944 221 18 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 18.mp3 Mister Iceberg Serge Gainsbourg L'Homme A Tete De Chou Other 3436544 214 19 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 19.mp3 Sea, Sex and Sun (english) Serge Gainsbourg L'Homme A Tete De Chou Other 3577856 223 20 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 20.mp3 Mister Iceberg (english) Serge Gainsbourg L'Homme A Tete De Chou Other 3323904 207 21 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 21.mp3 Ces petit riens Serge Gainsbourg L'Homme A Tete De Chou Other 2510848 156 22 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 22.mp3 Souviens-toi de m'oublier Serge Gainsbourg L'Homme A Tete De Chou Other 4820992 301 23 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 23.mp3 Sous le soleil exactement (orchestre) Serge Gainsbourg Anna Other 2015232 125 1 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 01.mp3 Sous le soleil exactement Serge Gainsbourg Anna Other 3387392 211 2 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 02.mp3 C'est la cristallisation comme dit Stendhal Serge Gainsbourg Anna Other 2041856 127 3 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 03.mp3 pas mal pas mal du tout Serge Gainsbourg Anna Other 1814528 113 4 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 04.mp3 J'etais fait pour les sympathies Serge Gainsbourg Anna Other 3301376 206 5 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 05.mp3 Photographes et religieuses Serge Gainsbourg Anna Other 1550336 96 6 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 06.mp3 Rien rien j'disais a comme a Serge Gainsbourg Anna Other 1212426 75 7 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 07.mp3 Un jour comme un autre Serge Gainsbourg Anna Other 1232898 77 8 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 08.mp3 Boomerang Serge Gainsbourg Anna Other 2850816 178 9 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 09.mp3 Un poison violent, c'est ca l'amour Serge Gainsbourg Anna Other 2492416 155 10 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 10.mp3 De plus en plus, de moins en moins Serge Gainsbourg Anna Other 2326528 145 11 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 11.mp3 Roller girl Serge Gainsbourg Anna Other 2338816 146 12 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 12.mp3 Ne dis rien Serge Gainsbourg Anna Other 3217408 201 13 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 13.mp3 Pistolet Jo Serge Gainsbourg Anna Other 2037760 127 14 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 14.mp3 G.I. Jo Serge Gainsbourg Anna Other 2074624 129 15 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 15.mp3 Je n'avais qu'un seul mot a lui dire Serge Gainsbourg Anna Other 2934784 183 16 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 16.mp3 Ballade de Johny Jane Serge Gainsbourg Anna Other 3078188 192 17 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 17.mp3 Le camion jaune Serge Gainsbourg Anna Other 878592 54 18 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 18.mp3 Banco au bord du Styx Serge Gainsbourg Anna Other 1966080 122 19 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 19.mp3 Rock'n roll autour de Johny Serge Gainsbourg Anna Other 1497088 93 20 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 20.mp3 L'abominable strip-tease Serge Gainsbourg Anna Other 1785856 111 21 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 21.mp3 Joe Banjo Serge Gainsbourg Anna Other 3366912 210 22 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 22.mp3 Je t'aime... Moi non plus Serge Gainsbourg Anna Other 3227648 201 23 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 23.mp3 Je t'aime... Moi non plus au motel Serge Gainsbourg Anna Other 2439168 152 24 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 24.mp3 Je pense queue Serge Gainsbourg Anna Other 3289088 205 25 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 25.mp3 Je vous salue Marie Serge Gainsbourg Anna Other 2598912 162 26 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 26.mp3 La fautive Serge Gainsbourg Anna Other 2951168 184 27 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 27.mp3 Dieu est un fumeur de Havanes Serge Gainsbourg Anna Other 3721216 232 28 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 28.mp3 Love On The Beat Serge Gainsbourg Love On The Beat Other 7761920 485 1 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 01.mp3 Sorry Angel Serge Gainsbourg Love On The Beat Other 3809280 238 2 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 02.mp3 Hmm hmm hmm Serge Gainsbourg Love On The Beat Other 2725888 170 3 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 03.mp3 Kiss me hardy Serge Gainsbourg Love On The Beat Other 4261888 266 4 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 04.mp3 No comment Serge Gainsbourg Love On The Beat Other 4954112 309 5 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 05.mp3 I'm the boy Serge Gainsbourg Love On The Beat Other 4304896 269 6 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 06.mp3 Harley David son of a bitch Serge Gainsbourg Love On The Beat Other 2906112 181 7 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 07.mp3 Lemon incest Serge Gainsbourg Love On The Beat Other 5013504 313 1 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 08.mp3 You're Under Arrest Serge Gainsbourg You're Under Arrest Other 4059136 253 1 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 01.mp3 Five easy pisseuse Serge Gainsbourg You're Under Arrest Other 3336192 208 2 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 02.mp3 Baille baille Samantha Serge Gainsbourg You're Under Arrest Other 3278848 204 3 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 03.mp3 Suck baby suck Serge Gainsbourg You're Under Arrest Other 3633152 227 4 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 04.mp3 Gloomy sunday Serge Gainsbourg You're Under Arrest Other 3594240 224 5 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 05.mp3 Au enfants de la chance Serge Gainsbourg You're Under Arrest Other 3960832 247 6 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 06.mp3 Shotgun Serge Gainsbourg You're Under Arrest Other 3868672 241 7 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 07.mp3 Glass securit Serge Gainsbourg You're Under Arrest Other 3500032 218 8 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 08.mp3 Dispatch box Serge Gainsbourg You're Under Arrest Other 2777088 173 9 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 09.mp3 Mon legionnaire Serge Gainsbourg You're Under Arrest Other 5380096 336 10 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 10.mp3 I'm Not In Love 10cc The One & Only Love Album Rock 5761982 360 3 2002-02-26 01:24:14-08 2002-02-26 01:24:14-08 128 44100 MPEG AUDIO FILE MP3017/10CC/THEONEON/IMNOTINL.MP3 Good Morning Judge 10cc The Very Best Of 10cc Rock 2750997 171 0 2002-02-26 01:24:14-08 2002-02-26 01:24:14-08 128 44100 MPEG AUDIO FILE MP3017/10CC/THEVERYB/GOODMORN.MP3 Kryptonite 3 Doors Down The Better Life Rock 3742389 233 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/3DOORSDO/THEBETTE/KRYPTONI.MP3 Who's On First Abbott And Costello N/A Comedy 5896110 368 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ABBOTTAN/UNKNOWNA/WHOSONFI.MP3 All Screwed Up AC/DC Stiff Upper Lip Metal 4417808 276 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/ALLSCREW.MP3 Can't Stand Still AC/DC Stiff Upper Lip Metal 3498301 218 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/CANTSTAN.MP3 Can't Stop Rock n Roll AC/DC Stiff Upper Lip Metal 3856079 241 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/CANTSTOP.MP3 Come And Get It AC/DC Stiff Upper Lip Metal 3871955 241 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/COMEANDG.MP3 Damned AC/DC Stiff Upper Lip Metal 3699747 231 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/DAMNED.MP3 Give It Up AC/DC Stiff Upper Lip Metal 3726222 232 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/GIVEITUP.MP3 Hold Me Back AC/DC Stiff Upper Lip Metal 3808004 238 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/HOLDMEBA.MP3 House Of Jazz AC/DC Stiff Upper Lip Metal 3777494 236 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/HOUSEOFJ.MP3 Meltdown AC/DC Stiff Upper Lip Metal 3535073 220 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/MELTDOWN.MP3 Safe In New York City AC/DC Stiff Upper Lip Metal 3796450 237 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/SAFEINNE.MP3 Satellite Blues AC/DC Stiff Upper Lip Metal 3610312 225 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/SATELLIT.MP3 Stiff Upper Lip AC/DC Stiff Upper Lip Metal 3430172 214 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/STIFFUPP.MP3 Stanger On The Shore Acker Bilk Stranger On The Shore Jazz 2774956 173 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ACKERBIL/STRANGER/STANGERO.MP3 Halo Of Flies Alice Cooper N/A Metal 7995658 499 1 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ALICECOO/UNKNOWNA/HALOOFFL.MP3 Time To Say Goodbye/Con Te Par Andrea Bocelli Romanza Classical 3952646 247 15 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANDREABO/ROMANZA/TIMETOSA.MP3 Flute Concerto in G minor, 3rd Antonio Vivaldi N/A Classical 1320876 82 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECO1.MP3 Flute Concerto in G minor, 4th Antonio Vivaldi N/A Classical 919913 57 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECO2.MP3 Flute Concerto in G minor, 1st Antonio Vivaldi N/A Classical 2247909 140 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECO3.MP3 Flute Concerto in G minor, 2nd Antonio Vivaldi N/A Classical 833536 52 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECON.MP3 The Jobbie Weecha !!! Billy Connolly Classic Connolly Comedy 7788335 973 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 64 22050 MPEG AUDIO FILE MP3017/BILLYCON/CLASSICC/THEJOBBI.MP3 The Short Haired Police Cadet Billy Connolly Classic Connolly Comedy 1522705 190 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 64 22050 MPEG AUDIO FILE MP3017/BILLYCON/CLASSICC/THESHORT.MP3 Rebel Yell Billy Idol N/A Rock 4601271 287 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/BILLYIDO/UNKNOWNA/REBELYEL.MP3 White Christmas Bing Crosby White christmas Other 2975857 185 0 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/BINGCROS/WHITECHR/WHITECHR.MP3 The Man In Me Bob Dylan New Morning Folk 2991313 186 0 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/BOBDYLAN/NEWMORNI/THEMANIN.MP3 Virginia Plain Bryan Ferry Street Life - 20 Great Hits Rock 2849781 178 1 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/BRYANFER/STREETLI/VIRGINIA.MP3 Africa Bamba Carlos Santana Supernatural Latin 4525228 282 4 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/AFRICABA.MP3 Corazon Espinado (featuring Mana) Carlos Santana Supernatural Latin 4417833 276 8 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/CORAZONE.MP3 Da Le Valeo Carlos Santana Supernatural Latin 5655806 353 1 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/DALEVALE.MP3 Do You Like The Way (featuring Lauryn Hill & Cee-Lo) Carlos Santana Supernatural Latin 5678416 354 6 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/DOYOULIK.MP3 El Farol Carlos Santana Supernatural Latin 4658552 291 10 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/ELFAROL.MP3 Love Of My Life (Featuring Dave Matthew) Carlos Santana Supernatural Latin 5565138 347 2 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/LOVEOFMY.MP3 Maria Maria Carlos Santana Supernatural Latin 4202144 262 7 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/MARIAMAR.MP3 Primavera Carlos Santana Supernatural Latin 6056349 378 11 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/PRIMAVER.MP3 Put Your Lights On (Featuring Everlast) Carlos Santana Supernatural Latin 4562871 285 3 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/PUTYOURL.MP3 Smooth (Featuring Rob Thomas) Carlos Santana Supernatural Latin 4770585 298 5 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/SMOOTHFE.MP3 The Calling (Featuring Eric Clapton) Carlos Santana Supernatural Latin 11961997 747 12 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/THECALLI.MP3 Wishing It Was (featuring Egle-Eye Cherry) Carlos Santana Supernatural Latin 4683804 292 9 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/WISHINGI.MP3 Oye Como Va Carlos Santana N/A Latin 3678906 229 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/UNKNOWNA/OYECOMOV.MP3 Blue Suede Shoes Carl Perkin Only Rock 'N Roll 1955-1959 Rock 2154569 134 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLPERK/ONLYROCK/BLUESUED.MP3 Maybellene Chuck Berry Only Rock 'N Roll 1955-1959 Oldies 2216003 138 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CHUCKBER/ONLYROCK/MAYBELLE.MP3 Blackstairs Clannad Macalla New Age 4078556 254 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/BLACKSTA.MP3 Buachaill On Eirne Clannad Macalla New Age 3046901 190 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/BUACHAIL.MP3 Caislean Oir Clannad Macalla New Age 2057168 128 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/CAISLEAN.MP3 Closer to Your Heart Clannad Macalla New Age 3385031 211 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/CLOSERTO.MP3 Indoor Clannad Macalla New Age 3799215 237 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/INDOOR.MP3 Journey's End Clannad Macalla New Age 2576692 161 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/JOURNEYS.MP3 Most Seems (Too Late to Turn) Clannad Macalla New Age 4677788 292 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/MOSTSEEM.MP3 Northern Skyline Clannad Macalla New Age 4850530 303 0 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/NORTHERN.MP3 The Wild Cry Clannad Macalla New Age 4548203 284 0 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/THEWILDC.MP3 Androgynous Crash Test Dummies Ladies and Gentlemen, would you please welcome the ... (Live) Rock 2508338 156 0 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CRASHTES/LADIESAN/ANDROGYN.MP3 Are You Ready Creed Human Clay Rock 4594181 287 1 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/AREYOURE.MP3 Beautiful Creed Human Clay Rock 4187921 261 3 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/BEAUTIFU.MP3 Faceless Man Creed Human Clay Rock 5777004 361 6 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/FACELESS.MP3 Higher Creed Human Clay Rock 5101716 318 9 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/HIGHER.MP3 Inside Us All Creed Human Clay Rock 5610380 350 11 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/INSIDEUS.MP3 Never Die Creed Human Clay Rock 4694209 293 7 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/NEVERDIE.MP3 Say I Creed Human Clay Rock 5082071 317 4 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/SAYI.MP3 Wash Away Those Years Creed Human Clay Rock 5861024 366 10 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WASHAWAY.MP3 What If Creed Human Clay Rock 5123729 320 2 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WHATIF.MP3 With Arms Wide Open Creed Human Clay Rock 4428257 276 8 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WITHARMS.MP3 Wrong Way Creed Human Clay Rock 4183323 261 5 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WRONGWAY.MP3 All Lovers Are Deranged David Gilmour About Face Rock 3125118 195 6 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/ALLLOVER.MP3 Blue Light David Gilmour About Face Rock 4421196 276 4 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/BLUELIGH.MP3 Cruise David Gilmour About Face Rock 4477616 279 8 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/CRUISE.MP3 Let's Get Metaphysical David Gilmour About Face Rock 3987366 249 9 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/LETSGETM.MP3 Love On The Air David Gilmour About Face Rock 4155101 259 3 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/LOVEONTH.MP3 Murder David Gilmour About Face Rock 4784956 299 2 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/MURDER.MP3 Near The End David Gilmour About Face Rock 5360353 335 10 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/NEARTHEE.MP3 Out Of The Blue David Gilmour About Face Rock 3475778 217 5 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/OUTOFTHE.MP3 Until We Sleep David Gilmour About Face Rock 4996033 312 1 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/UNTILWES.MP3 You Know I'm Right David Gilmour About Face Rock 4855045 303 7 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/YOUKNOWI.MP3 A Teenager In Love Dion Rock-N-Roll's Greatest Hits Of Oldies 2388764 149 0 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DION/ROCKNROL/ATEENAGE.MP3 Sultans Of Swing Dire Straits Tunnel of Love Rock 5361139 335 0 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DIRESTRA/TUNNELOF/SULTANSO.MP3 Between Mind and heart Enigma The Screen Behind The Mirror New Age 3995845 249 10 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/BETWEENM.MP3 Camera Obscura Enigma The Screen Behind The Mirror New Age 1407263 87 9 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/CAMERAOB.MP3 Endless Quest Enigma The Screen Behind The Mirror New Age 2980460 186 8 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/ENDLESSQ.MP3 Gravity Love Enigma The Screen Behind The Mirror New Age 3821811 238 3 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/GRAVITYL.MP3 Modern Crusaders Enigma The Screen Behind The Mirror New Age 3689461 230 5 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/MODERNCR.MP3 Push The Limits Enigma The Screen Behind The Mirror New Age 6192059 387 2 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/PUSHTHEL.MP3 Slence Must Be Heard Enigma The Screen Behind The Mirror New Age 5110805 319 11 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/SLENCEMU.MP3 Smell of Desire Enigma The Screen Behind The Mirror New Age 4757346 297 4 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/SMELLOFD.MP3 The Gate Enigma The Screen Behind The Mirror New Age 1990450 124 1 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/THEGATE.MP3 The Screen Behind The Mirror Enigma The Screen Behind The Mirror New Age 3821827 238 7 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/THESCREE.MP3 Traces (Light and Weight) Enigma The Screen Behind The Mirror New Age 4026345 251 6 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/TRACESLI.MP3 TR655E~1 Enigma N/A New Age 5529541 345 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR655E1.MP3 TR7C78~1 Enigma N/A New Age 4683174 292 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR7C781.MP3 TR97BF~1 Enigma N/A New Age 3149265 196 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR97BF1.MP3 TR9E81~1 Enigma N/A New Age 7007584 437 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR9E811.MP3 TRACK0~1 Enigma N/A New Age 4548731 284 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK01.MP3 TRACK0~2 Enigma N/A New Age 4494675 280 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK02.MP3 TRACK0~3 Enigma N/A New Age 4623964 288 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK03.MP3 TRACK0~4 Enigma N/A New Age 7836397 489 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK04.MP3 TRACK1~1 Enigma N/A New Age 11483785 717 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK11.MP3 TRACK1~2 Enigma N/A New Age 5144741 321 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK12.MP3 TRE55D~1 Enigma N/A New Age 3133800 195 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRE55D1.MP3 Twenty Four Hours From Tulsa Gene Pitney Anthology Rock 2838773 177 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/GENEPITN/ANTHOLOG/TWENTYFO.MP3 Abacab Genesis Abacab Pop 6778426 423 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/ABACAB.MP3 a. Dodo - b. Lurker Genesis Abacab Pop 7224819 451 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/ADODOBLU.MP3 Another Record Genesis Abacab Pop 4293249 268 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/ANOTHERR.MP3 Keep it dark Genesis Abacab Pop 4364718 272 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/KEEPITDA.MP3 Like it or not Genesis Abacab Pop 4778640 298 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/LIKEITOR.MP3 Man on the Corner Genesis Abacab Pop 4282803 267 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/MANONTHE.MP3 Me and Sarah Jane Genesis Abacab Pop 5798879 362 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/MEANDSAR.MP3 No Reply at all Genesis Abacab Pop 4495541 280 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/NOREPLYA.MP3 Who dunnit Genesis Abacab Pop 3269804 204 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/WHODUNNI.MP3 09 Watcher Of The Skies Genesis Archive 1967-75 (Disc 3) Rock 3553208 222 9 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ARCHIVE1/09WATCHE.MP3 Get 'em Out By Friday Genesis Live Rock 8960782 560 2 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/GETEMOUT.MP3 The Knife Genesis Live Rock 9412401 588 5 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/THEKNIFE.MP3 The Musical Box Genesis Live Rock 10546470 659 4 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/THEMUSIC.MP3 The Return Of The Giant Hogweed Genesis Live Rock 7970883 498 3 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/THERETUR.MP3 Watcher Of The Skies Genesis Live Rock 8245053 515 1 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/WATCHERO.MP3 For absent Friends Genesis Nursery Cryme Rock 1712359 107 2 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/FORABSEN.MP3 Harlequin Genesis Nursery Cryme Rock 2829138 176 6 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/HARLEQUI.MP3 Harold the Barrel Genesis Nursery Cryme Rock 2896019 181 5 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/HAROLDTH.MP3 Seven Stones Genesis Nursery Cryme Rock 4987481 311 4 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/SEVENSTO.MP3 The Fountain of Salmacis Genesis Nursery Cryme Rock 7595139 474 7 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/THEFOUNT.MP3 The Musical Box Genesis Nursery Cryme Rock 10062482 628 1 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/THEMUSIC.MP3 The Return of the Giant Hogweed Genesis Nursery Cryme Rock 7880194 492 3 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/THERETUR.MP3 Be-Bop-A-Lula Gene Vincent And His Blue Caps Rock-N-Roll's Greatest Hits Of Oldies 2472237 154 0 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENEVINC/ROCKNROL/BEBOPALU.MP3 As Wise As A Serpent Gerry Rafferty The Best of Gerry Rafferty Pop 3984837 249 8 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/ASWISEAS.MP3 Baker Street Gerry Rafferty The Best of Gerry Rafferty Pop 6234284 389 1 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/BAKERSTR.MP3 Bring It All Home Gerry Rafferty The Best of Gerry Rafferty Pop 5039763 314 11 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/BRINGITA.MP3 Can I Have My Money Back? Gerry Rafferty The Best of Gerry Rafferty Pop 3250489 203 15 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/CANIHAVE.MP3 Days Gone Down Gerry Rafferty The Best of Gerry Rafferty Pop 6371934 398 2 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/DAYSGONE.MP3 Get It Right Next Time Gerry Rafferty The Best of Gerry Rafferty Pop 4270724 266 10 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/GETITRIG.MP3 Night Owl Gerry Rafferty The Best of Gerry Rafferty Pop 4958252 309 6 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/NIGHTOWL.MP3 On The Way Gerry Rafferty The Best of Gerry Rafferty Pop 5263782 328 12 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/ONTHEWAY.MP3 Right Down The Light Gerry Rafferty The Best of Gerry Rafferty Pop 4513695 282 5 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/RIGHTDOW.MP3 Sleepwalking Gerry Rafferty The Best of Gerry Rafferty Pop 4316270 269 4 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/SLEEPWAL.MP3 Take The Money and Run Gerry Rafferty The Best of Gerry Rafferty Pop 5038514 314 14 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/TAKETHEM.MP3 The Ark Gerry Rafferty The Best of Gerry Rafferty Pop 3734466 233 9 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/THEARK.MP3 The Royal Mile Gerry Rafferty The Best of Gerry Rafferty Pop 4382728 273 3 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/THEROYAL.MP3 Wastin' Away Gerry Rafferty The Best of Gerry Rafferty Pop 3997507 249 7 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/WASTINAW.MP3 Whatever's Written In Your Hea Gerry Rafferty The Best of Gerry Rafferty Pop 5724115 357 13 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/WHATEVER.MP3 Policeman's Lot Grimms Rockin' Duck Other 3219241 201 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3017/GRIMMS/ROCKINDU/POLICEMA.MP3 01ALLE~1 Franz Schubert N/A Classical 6139073 383 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/01ALLE1.MP3 02ANDA~1 Franz Schubert N/A Classical 7450907 465 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/02ANDA1.MP3 03MENU~1 Franz Schubert N/A Classical 5151714 321 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/03MENU1.MP3 04ALLE~1 Franz Schubert N/A Classical 7402005 462 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/04ALLE1.MP3 N/A Gershwin N/A Classical 15521266 970 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/GERSHWIN/UNKNOWNA/NA.MP3 N/A Gershwin N/A Classical 16847450 1052 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/GERSHWIN/UNKNOWNA/NA2.MP3 Assault & Battery Hawkwind 25 Years On 1973-1977 Rock 5529310 345 3 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/ASSAULTB.MP3 brainsrorm Hawkwind 25 Years On 1973-1977 Rock 11083055 692 4 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/BRAINSRO.MP3 lord of light Hawkwind 25 Years On 1973-1977 Rock 6732888 420 6 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/LORDOFLI.MP3 Magnu Hawkwind 25 Years On 1973-1977 Rock 7890626 493 5 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/MAGNU.MP3 master of the universe Hawkwind 25 Years On 1973-1977 Rock 6023203 376 9 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/MASTEROF.MP3 Orgone Accumulator (Live) Hawkwind 25 Years On 1973-1977 Rock 9498117 593 1 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/ORGONEAC.MP3 Psychedelic Warlords Hawkwind 25 Years On 1973-1977 Rock 7007076 437 6 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/PSYCHEDE.MP3 Quark, Strangeness And Charm Hawkwind 25 Years On 1973-1977 Rock 3568954 223 12 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/QUARKSTR.MP3 silver machine Hawkwind 25 Years On 1973-1977 Rock 4469363 279 3 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/SILVERMA.MP3 Sonic Attack (Live) Hawkwind 25 Years On 1973-1977 Rock 2626865 164 2 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/SONICATT.MP3 space is deep Hawkwind 25 Years On 1973-1977 Rock 6090207 380 5 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/SPACEISD.MP3 The Golden Void Hawkwind 25 Years On 1973-1977 Rock 4198805 262 4 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/THEGOLDE.MP3 Wind of Change Hawkwind 25 Years On 1973-1977 Rock 4388975 274 7 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/WINDOFCH.MP3 All Awake I Mother Earth Blue Green Orange Rock 5971368 373 0 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/ALLAWAKE.MP3 Autumn on Drugs I Mother Earth Blue Green Orange Rock 6419566 401 0 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/AUTUMNON.MP3 Cloud Pump I Mother Earth Blue Green Orange Rock 5492806 343 0 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/CLOUDPUM.MP3 Gargantua I Mother Earth Blue Green Orange Rock 4429935 276 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/GARGANTU.MP3 Good for Sule I Mother Earth Blue Green Orange Rock 5368675 335 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/GOODFORS.MP3 Infinity Machine I Mother Earth Blue Green Orange Rock 5225736 326 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/INFINITY.MP3 Love Your Starfish I Mother Earth Blue Green Orange Rock 5720601 357 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/LOVEYOUR.MP3 Summertime in the Void I Mother Earth Blue Green Orange Rock 6832934 427 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/SUMMERTI.MP3 When did you get Back from Mar I Mother Earth Blue Green Orange Rock 4855856 303 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/WHENDIDY.MP3 And The Experience I Mother Earth Dig Rock 5672522 354 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/ANDTHEEX.MP3 Basketball I Mother Earth Dig Rock 4995420 312 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/BASKETBA.MP3 Levitate I Mother Earth Dig Rock 4757322 297 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/LEVITATE.MP3 Lost My America I Mother Earth Dig Rock 6235092 389 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/LOSTMYAM.MP3 No One I Mother Earth Dig Rock 6660565 416 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/NOONE.MP3 Not Quite Sonic I Mother Earth Dig Rock 5679206 354 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/NOTQUITE.MP3 Production I Mother Earth Dig Rock 3836002 239 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/PRODUCTI.MP3 Rain Will Fall I Mother Earth Dig Rock 5094481 318 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/RAINWILL.MP3 So Gently We Go I Mother Earth Dig Rock 6793207 424 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/SOGENTLY.MP3 The Mothers I Mother Earth Dig Rock 2467605 154 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/THEMOTHE.MP3 The Universe in You I Mother Earth Dig Rock 7955973 497 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/THEUNIVE.MP3 Undone I Mother Earth Dig Rock 4904441 306 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/UNDONE.MP3 Another Sunday I Mother Earth Scenery & Fish Rock 3917659 244 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/ANOTHERS.MP3 Earth, Sky & C. I Mother Earth Scenery & Fish Rock 6822753 426 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/EARTHSKY.MP3 Like A Girl I Mother Earth Scenery & Fish Rock 4477163 279 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/LIKEAGIR.MP3 One More Astronaut I Mother Earth Scenery & Fish Rock 5189094 324 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/ONEMOREA.MP3 Pisser I Mother Earth Scenery & Fish Rock 4799405 299 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/PISSER.MP3 Raspberry I Mother Earth Scenery & Fish Rock 5513700 344 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/RASPBERR.MP3 Sense of Henry I Mother Earth Scenery & Fish Rock 5064817 316 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/SENSEOFH.MP3 Shortcut to Moncton I Mother Earth Scenery & Fish Rock 7621477 476 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/SHORTCUT.MP3 Songburst & Delerium I Mother Earth Scenery & Fish Rock 5695105 355 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/SONGBURS.MP3 Three Days Old I Mother Earth Scenery & Fish Rock 5558008 347 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/THREEDAY.MP3 Used to be Alright I Mother Earth Scenery & Fish Rock 5244125 327 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/USEDTOBE.MP3 Equinoxe Part 2 Jean-Michel Jarre Equinoxe New Age 4805715 300 2 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX1.MP3 Equinoxe Part 3 Jean-Michel Jarre Equinoxe New Age 4959070 309 3 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX2.MP3 Equinoxe Part 4 Jean-Michel Jarre Equinoxe New Age 6704189 419 4 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX3.MP3 Equinoxe Part 5 Jean-Michel Jarre Equinoxe New Age 3760297 235 5 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX4.MP3 Equinoxe Part 6 Jean-Michel Jarre Equinoxe New Age 3340037 208 6 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX5.MP3 Equinoxe Part 7 Jean-Michel Jarre Equinoxe New Age 6816898 426 7 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX6.MP3 Equinoxe Part 8 Jean-Michel Jarre Equinoxe New Age 4753434 297 8 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX7.MP3 Equinoxe Part 1 Jean-Michel Jarre Equinoxe New Age 2333870 145 1 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOXE.MP3 Oxygene Part II Jean-Michel Jarre Oxygene New Age 10480307 655 2 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE1.MP3 Oxygene Part III Jean-Michel Jarre Oxygene New Age 3420981 213 3 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE2.MP3 Oxygene Part IV Jean-Michel Jarre Oxygene New Age 3800487 237 4 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE3.MP3 Oxygene Part V Jean-Michel Jarre Oxygene New Age 7375429 460 5 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE4.MP3 Oxygene Part VI Jean-Michel Jarre Oxygene New Age 5800003 362 6 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE5.MP3 Oxygene Part I Jean-Michel Jarre Oxygene New Age 2786099 174 1 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENEP.MP3 Oxygene 10 Jean-Michel Jarre Oxygene 7-13 New Age 4099885 256 4 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE1.MP3 Oxygene 11 Jean-Michel Jarre Oxygene 7-13 New Age 291443 18 5 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE2.MP3 Oxygene 13 Jean-Michel Jarre Oxygene 7-13 New Age 4503912 281 7 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE3.MP3 Oxygene 7 Jean-Michel Jarre Oxygene 7-13 New Age 7359823 459 1 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE7.MP3 Oxygene 8 Jean-Michel Jarre Oxygene 7-13 New Age 7756468 484 2 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE8.MP3 Oxygene 9 Jean-Michel Jarre Oxygene 7-13 New Age 2846285 177 3 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE9.MP3 Blah Blah Cafe Jean-Michel Jarre Zoolook New Age 3213671 200 6 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/BLAHBLAH.MP3 Diva Jean-Michel Jarre Zoolook New Age 7246687 452 2 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/DIVA.MP3 Ethnicolor Jean-Michel Jarre Zoolook New Age 11202952 700 1 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ETHNICO1.MP3 Ethnicolor II Jean-Michel Jarre Zoolook New Age 3716057 232 7 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ETHNICOL.MP3 Woolloomooloo Jean-Michel Jarre Zoolook New Age 3172292 198 4 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/WOOLLOOM.MP3 Zoolookologie Jean-Michel Jarre Zoolook New Age 3563084 222 3 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ZOOLOOKO.MP3 Zoolook (Remix) Jean-Michel Jarre Zoolook New Age 3691121 230 5 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ZOOLOOKR.MP3 Great Balls Of Fire Jerry Lee Lewis Only Rock 'N Roll 1955-1959 Oldies 1774373 110 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JERRYLEE/ONLYROCK/GREATBAL.MP3 Concerto for Oboe..., 2nd Johann Sebastian Bach BWV 1053 Classical 4075938 254 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1053/CONCERT1.MP3 Concerto for Oboe..., 3rd Johann Sebastian Bach BWV 1053 Classical 6111655 381 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1053/CONCERT2.MP3 Concerto for Oboe..., 1st Johann Sebastian Bach BWV 1053 Classical 7588883 474 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1053/CONCERTO.MP3 Concerto for Oboe..., 2nd Johann Sebastian Bach BWV 1055 Classical 5025262 314 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1055/CONCERT1.MP3 Concerto for Oboe..., 3rd Johann Sebastian Bach BWV 1055 Classical 4309159 269 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1055/CONCERT2.MP3 Concerto for Oboe..., 1st Johann Sebastian Bach BWV 1055 Classical 4183771 261 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1055/CONCERTO.MP3 Concerto for Oboe in Gmin 2nd Johann Sebastian Bach BWV 1056 Classical 2689572 168 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1056/CONCERT1.MP3 Concerto for Oboe in Gmin 3rd Johann Sebastian Bach BWV 1056 Classical 3321944 207 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1056/CONCERT2.MP3 Concerto for Oboe in Gmin 1st Johann Sebastian Bach BWV 1056 Classical 3035642 189 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1056/CONCERTO.MP3 Concerto for Oboe in Dmin 2nd Johann Sebastian Bach BWV 1059 Classical 4005725 250 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1059/CONCERT1.MP3 Concerto for Oboe in Dmin 3rd Johann Sebastian Bach BWV 1059 Classical 3154900 197 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1059/CONCERT2.MP3 Concerto for Oboe in Dmin 1st Johann Sebastian Bach BWV 1059 Classical 5626152 351 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1059/CONCERTO.MP3 Willie And The Hand Jive Johnny Otis Show Rock-N-Roll's Greatest Hits Of Oldies 2472234 154 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHNNYOT/ROCKNROL/WILLIEAN.MP3 Stranger in a Familiar Land Laurie Z. Roots Other 5000032 312 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/LAURIEZ/ROOTS/STRANGER.MP3 Take a Look Around (theme from MI2) Limp Bizkit MI2 Soundtrack Soundtrack 5082378 317 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/LIMPBIZK/MI2SOUND/TAKEALOO.MP3 Does Your Chewing Gum Lose Its Lonnie Donegan And His Skiffle The Greatest Novelty CD Of All Comedy 2401630 150 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/LONNIEDO/THEGREAT/DOESYOUR.MP3 Going Home (Theme Of the Local Hero) Mark Knopfler Local Hero Soundtrack 4772400 298 14 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MARKKNOP/LOCALHER/GOINGHOM.MP3 A Boy And His Machine Gun Matthew Good Band Beautiful Midnight Rock 4834957 302 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/ABOYANDH.MP3 Born To Kill Matthew Good Band Beautiful Midnight Rock 5477765 342 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/BORNTOKI.MP3 Failing The Rorschach Test Matthew Good Band Beautiful Midnight Rock 4569972 285 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/FAILINGT.MP3 Going All The Way Matthew Good Band Beautiful Midnight Rock 4125673 257 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/GOINGALL.MP3 I Miss New Wave Matthew Good Band Beautiful Midnight Rock 4872981 304 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/IMISSNEW.MP3 Jenni's Song Matthew Good Band Beautiful Midnight Rock 3841178 240 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/JENNISSO.MP3 Let's Get It On Matthew Good Band Beautiful Midnight Rock 4106445 256 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/LETSGETI.MP3 Running For Home Matthew Good Band Beautiful Midnight Rock 4450008 278 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/RUNNINGF.MP3 Suburbia Matthew Good Band Beautiful Midnight Rock 5219462 326 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/SUBURBIA.MP3 The Future Is X-Rated Matthew Good Band Beautiful Midnight Rock 3640008 227 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/THEFUTUR.MP3 Symbolistic White Walls Matthew Good Band Last of The Ghetto Astronauts Rock 4330061 270 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/LASTOFTH/SYMBOLIS.MP3 Enjoy The Silence Matthew Good Band Lo-Fi B-Side Rock 3020572 188 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/LOFIBSID/ENJOYTHE.MP3 Apparitions Matthew Good Band Underdogs Rock 3644612 227 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/UNDERDOG/APPARITI.MP3 Indestructable Matthew Good Band Underdogs Rock 3270943 204 1 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/UNDERDOG/INDESTRU.MP3 It's A Miracle Men At Work N/A Pop 4375996 273 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MENATWOR/UNKNOWNA/ITSAMIRA.MP3 Moonlight shadow Mike Oldfield Acoustic Moods Folk 3434917 214 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/ACOUSTIC/MOONLIGH.MP3 Amber Light Mike Oldfield The Millennium Bell New Age 3559747 222 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/AMBERLIG.MP3 Broad Sunlit Uplands Mike Oldfield The Millennium Bell New Age 3889108 243 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/BROADSUN.MP3 Lake Constance Mike Oldfield The Millennium Bell New Age 5070254 316 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/LAKECONS.MP3 Liberation Mike Oldfield The Millennium Bell New Age 2537837 158 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/LIBERATI.MP3 Mastermind Mike Oldfield The Millennium Bell New Age 2942421 183 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/MASTERMI.MP3 Pacha Mama Mike Oldfield The Millennium Bell New Age 3933820 245 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/PACHAMAM.MP3 Peace on Earth Mike Oldfield The Millennium Bell New Age 4007802 250 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/PEACEONE.MP3 Santa Maria Mike Oldfield The Millennium Bell New Age 2632714 164 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/SANTAMAR.MP3 Sunlight Shining through Cloud Mike Oldfield The Millennium Bell New Age 4373121 273 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/SUNLIGHT.MP3 The Doge's Palace Mike Oldfield The Millennium Bell New Age 2995091 187 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/THEDOGES.MP3 The Millennium Bell Mike Oldfield The Millennium Bell New Age 7323058 457 0 2002-02-26 01:24:36-08 2002-02-26 01:24:36-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/THEMILLE.MP3 Black Mountain Rag Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2577331 161 8 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/BLACKMOU.MP3 Cannonball Rag Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 1214643 75 19 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/CANNONBA.MP3 Earl's Breakdown Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2505721 156 23 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/EARLSBRE.MP3 Flint Hill Special Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2114095 132 21 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/FLINTHIL.MP3 Lonesome Fiddle Blues Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2613559 163 18 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/LONESOME.MP3 Nashville Blues Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 3152719 197 3 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/NASHVILL.MP3 Orange Blossom Special Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2124130 132 24 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/ORANGEBL.MP3 Togary Mountain Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2377406 148 22 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/TOGARYMO.MP3 Wabash Cannonball Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 1970316 123 25 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/WABASHCA.MP3 No More Tears Ozzy Osbourne No More Tears Metal 7111567 444 5 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/NOMORETE/NOMORETE.MP3 Denial Ozzy Osbourne Ozzmosis Metal 5005869 312 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/DENIAL.MP3 Ghost Behind My Eyes Ozzy Osbourne Ozzmosis Metal 4989583 311 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/GHOSTBEH.MP3 I Just Want You Ozzy Osbourne Ozzmosis Metal 4742564 296 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/IJUSTWAN.MP3 My Jekyll Doesn't Hide Ozzy Osbourne Ozzmosis Metal 6317441 394 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/MYJEKYLL.MP3 My Little Man Ozzy Osbourne Ozzmosis Metal 4677779 292 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/MYLITTLE.MP3 Old L.A. Tonight Ozzy Osbourne Ozzmosis Metal 4616062 288 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/OLDLATON.MP3 Perry Mason Ozzy Osbourne Ozzmosis Metal 5663742 353 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/PERRYMAS.MP3 See You On The Other Side Ozzy Osbourne Ozzmosis Metal 5932225 370 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/SEEYOUON.MP3 Thunder Underground Ozzy Osbourne Ozzmosis Metal 6240255 390 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/THUNDERU.MP3 Tomorrow Ozzy Osbourne Ozzmosis Metal 6353789 397 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/TOMORROW.MP3 No More Tears Ozzy Osbourne N/A Metal 7101218 443 0 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/UNKNOWNA/NOMORETE.MP3 Aye Davanita Pearl Jam Vitalogy Grunge 2848785 178 12 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/AYEDAVAN.MP3 Better Man Pearl Jam Vitalogy Grunge 4289488 268 11 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/BETTERMA.MP3 Bugs Pearl Jam Vitalogy Grunge 2632413 164 9 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/BUGS.MP3 Corduroy Pearl Jam Vitalogy Grunge 4435770 277 8 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/CORDUROY.MP3 Hey Foxymophandlemama, That's Me Pearl Jam Vitalogy Grunge 7409980 463 0 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/HEYFOXYM.MP3 Immortality Pearl Jam Vitalogy Grunge 5086954 317 13 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/IMMORTAL.MP3 Last Exit Pearl Jam Vitalogy Grunge 2784833 174 1 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/LASTEXIT.MP3 Not For You Pearl Jam Vitalogy Grunge 5635316 352 3 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/NOTFORYO.MP3 Nothingman Pearl Jam Vitalogy Grunge 4404983 275 5 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/NOTHINGM.MP3 Pry, To Pearl Jam Vitalogy Grunge 1018537 63 7 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/PRYTO.MP3 Satan's Bed Pearl Jam Vitalogy Grunge 3291403 205 10 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/SATANSBE.MP3 Spin The Black Circle Pearl Jam Vitalogy Grunge 2682027 167 2 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/SPINTHEB.MP3 Tremor Christ Pearl Jam Vitalogy Grunge 4034535 252 4 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/TREMORCH.MP3 Whipping Pearl Jam Vitalogy Grunge 2460636 153 6 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/WHIPPING.MP3 A Pillow of Winds Pink Floyd Meddle New Age 4949451 309 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/APILLOWO.MP3 Echoes Pink Floyd Meddle New Age 22471117 1404 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/ECHOES.MP3 Fearless Pink Floyd Meddle New Age 5853069 365 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/FEARLESS.MP3 One of These Days Pink Floyd Meddle New Age 5374655 335 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/ONEOFTHE.MP3 San Tropez Pink Floyd Meddle New Age 3532563 220 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/SANTROPE.MP3 Seamus Pink Floyd Meddle New Age 2119161 132 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/SEAMUS.MP3 Bring The Boys Back Home Pink Floyd The Wall (disc 2) New Age 1389841 86 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/BRINGTHE.MP3 Comfortably Numb Pink Floyd The Wall (disc 2) New Age 6151918 384 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/COMFORTA.MP3 Hey You Pink Floyd The Wall (disc 2) New Age 4498185 281 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/HEYYOU.MP3 In The Flesh Pink Floyd The Wall (disc 2) New Age 4055850 253 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/INTHEFLE.MP3 Is There Anybody Out There? Pink Floyd The Wall (disc 2) New Age 2844201 177 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/ISTHEREA.MP3 Nobody Home Pink Floyd The Wall (disc 2) New Age 3072113 192 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/NOBODYHO.MP3 Outside The Wall Pink Floyd The Wall (disc 2) New Age 1682682 105 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/OUTSIDET.MP3 Run Like Hell Pink Floyd The Wall (disc 2) New Age 4179147 261 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/RUNLIKEH.MP3 Stop Pink Floyd The Wall (disc 2) New Age 481178 30 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/STOP.MP3 The Show Must Go On Pink Floyd The Wall (disc 2) New Age 1571926 98 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/THESHOWM.MP3 The Trial Pink Floyd The Wall (disc 2) New Age 5108685 319 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/THETRIAL.MP3 Vera Pink Floyd The Wall (disc 2) New Age 1419078 88 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/VERA.MP3 Waiting For The Worms Pink Floyd The Wall (disc 2) New Age 3887421 242 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/WAITINGF.MP3 Another Brick In The Wall (Part II) Pink Floyd The Wall (disc 1) New Age 3869881 241 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ANOTHER1.MP3 Another Brick In The Wall (Part I) Pink Floyd The Wall (disc 1) New Age 3054024 190 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ANOTHER2.MP3 Another Brick In The Wall (Part III) Pink Floyd The Wall (disc 1) New Age 1196198 74 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ANOTHERB.MP3 Don't Leave Me Now Pink Floyd The Wall (disc 1) New Age 4105593 256 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/DONTLEAV.MP3 Empty Spaces Pink Floyd The Wall (disc 1) New Age 2048532 128 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/EMPTYSPA.MP3 Goodbye Blue Sky Pink Floyd The Wall (disc 1) New Age 2710862 169 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/GOODBYEB.MP3 Goodbye Cruel World Pink Floyd The Wall (disc 1) New Age 1238813 77 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/GOODBYEC.MP3 In the Flesh? Pink Floyd The Wall (disc 1) New Age 3189422 199 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/INTHEFLE.MP3 Mother Pink Floyd The Wall (disc 1) New Age 5351099 334 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/MOTHER.MP3 One Of My Turns Pink Floyd The Wall (disc 1) New Age 3445772 215 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ONEOFMYT.MP3 The Happiest Days Of Our Lives Pink Floyd The Wall (disc 1) New Age 1759816 109 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/THEHAPPI.MP3 The Thin Ice Pink Floyd The Wall (disc 1) New Age 2397946 149 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/THETHINI.MP3 Young Lust Pink Floyd The Wall (disc 1) New Age 3387671 211 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/YOUNGLUS.MP3 David Gilmour - The Narrow Way Pink Floyd Ummagumma - Studio Album New Age 5717830 357 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/DAVIDGI1.MP3 David Gilmour - The Narrow Way Pink Floyd Ummagumma - Studio Album New Age 3321950 207 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/DAVIDGI2.MP3 David Gilmour - The Narrow Way Pink Floyd Ummagumma - Studio Album New Age 2773309 173 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/DAVIDGIL.MP3 Nick Mason - The Grand Vizier Pink Floyd Ummagumma - Studio Album New Age 621514 38 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/NICKMAS1.MP3 Nick Mason - The Grand Vizier Pink Floyd Ummagumma - Studio Album New Age 961038 60 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/NICKMAS2.MP3 Nick Mason - The Grand Vizier Pink Floyd Ummagumma - Studio Album New Age 6821519 426 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/NICKMASO.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 3362074 210 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARD1.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 1759619 109 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARD2.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 6712155 419 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARD3.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 1097990 68 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARDW.MP3 Roger Waters - Grantchester Me Pink Floyd Ummagumma - Studio Album New Age 7143349 446 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/ROGERWAT.MP3 Several Species Of Small Furry Pink Floyd Ummagumma - Studio Album New Age 4799017 299 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/SEVERALS.MP3 Disturbance At The Heron House R.E.M. Document Rock 3426837 214 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/DISTURBA.MP3 Exhuming McCarthy R.E.M. Document Rock 3225090 201 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/EXHUMING.MP3 Finest Worksong R.E.M. Document Rock 3685539 230 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/FINESTWO.MP3 Fireplace R.E.M. Document Rock 3271057 204 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/FIREPLAC.MP3 It's The End Of The World As W R.E.M. Document Rock 3951516 246 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/ITSTHEEN.MP3 King Of Birds R.E.M. Document Rock 4006947 250 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/KINGOFBI.MP3 Oddfellows Local 151 R.E.M. Document Rock 5135584 320 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/ODDFELLO.MP3 Strange R.E.M. Document Rock 2453388 153 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/STRANGE.MP3 The One I Love R.E.M. Document Rock 3168105 198 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/THEONEIL.MP3 Welcome To The Occupation R.E.M. Document Rock 2701673 168 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/WELCOMET.MP3 Adia Sarah McLachlan Mirrorball Rock 3819426 238 5 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/ADIA.MP3 Building A Mystery Sarah McLachlan Mirrorball Rock 3947613 246 1 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/BUILDING.MP3 Do What You Have To Do Sarah McLachlan Mirrorball Rock 4010729 250 7 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/DOWHATYO.MP3 Fear Sarah McLachlan Mirrorball Rock 4831581 301 9 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/FEAR.MP3 Good Enough Sarah McLachlan Mirrorball Rock 4983866 311 3 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/GOODENOU.MP3 Hold On Sarah McLachlan Mirrorball Rock 5096988 318 3 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/HOLDON.MP3 I Love You Sarah McLachlan Mirrorball Rock 4320563 270 6 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/ILOVEYOU.MP3 I Will Remember You Sarah McLachlan Mirrorball Rock 3575213 223 4 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/IWILLREM.MP3 Possession Sarah McLachlan Mirrorball Rock 5025940 314 10 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/POSSESSI.MP3 The Path Of Thorns (Terms) Sarah McLachlan Mirrorball Rock 5822167 363 8 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/THEPATHO.MP3 Fumbling Towards Ecstasy Sarah McLachlan N/A Rock 5568994 348 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/FUMBLING.MP3 Ice Cream Sarah McLachlan N/A Rock 2926920 182 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/ICECREAM.MP3 n/a Sarah McLachlan N/A Rock 4658101 291 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/NA.MP3 n/a Sarah McLachlan N/A Rock 3907446 244 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/NA2.MP3 n/a Sarah McLachlan N/A Rock 4212974 263 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/NA3.MP3 Sweet Surrender Sarah McLachlan N/A Rock 3827628 239 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/SWEETSUR.MP3 Artycraft Stanley Unwin Rotatey Diskers With Unwin Comedy 3182464 198 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/ARTYCRAF.MP3 Classicold Musee Stanley Unwin Rotatey Diskers With Unwin Comedy 3363724 210 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/CLASSICO.MP3 Goldyloppers And The Three Bearloaders Stanley Unwin Rotatey Diskers With Unwin Comedy 3604074 225 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/GOLDYLOP.MP3 Hi-De-Fido Stanley Unwin Rotatey Diskers With Unwin Comedy 6688165 418 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/HIDEFIDO.MP3 Olympicold B.C. Stanley Unwin Rotatey Diskers With Unwin Comedy 4562013 285 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/OLYMPICO.MP3 Professor Unwin Meetit The Press And Chattery On The Populode Of The Musicolly Stanley Unwin Rotatey Diskers With Unwin Comedy 6918529 432 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/PROFESS1.MP3 Professor Unwin Answery Most Questions On Manifold Subjy Stanley Unwin Rotatey Diskers With Unwin Comedy 12914548 807 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/PROFESSO.MP3 The Pidey Pipeload of Hamling Stanley Unwin Rotatey Diskers With Unwin Comedy 5270885 329 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/THEPIDEY.MP3 Roll Over Lay Down (Live 1975) Status Quo Live & Heavy (Import) Rock 5751682 359 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STATUSQU/LIVEHEAV/ROLLOVER.MP3 Babylon Sisters Steely Dan N/A Rock 5612030 350 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/BABYLONS.MP3 Deacon Blues Steely Dan N/A Rock 7306433 456 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/DEACONBL.MP3 Everyone`s Gone To The Movies (Demo) Steely Dan N/A Rock 3794625 237 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/EVERYONE.MP3 F M Steely Dan N/A Rock 4893546 305 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/FM.MP3 Gaucho Steely Dan N/A Rock 5324743 332 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/GAUCHO.MP3 Glamour Profession Steely Dan N/A Rock 7193172 449 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/GLAMOURP.MP3 Hey Nineteen Steely Dan N/A Rock 4918493 307 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/HEYNINET.MP3 Home At Last Steely Dan N/A Rock 5370307 335 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/HOMEATLA.MP3 I Got The News Steely Dan N/A Rock 4911946 306 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/IGOTTHEN.MP3 Josie Steely Dan N/A Rock 4337245 271 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/JOSIE.MP3 My Rival Steely Dan N/A Rock 4350065 271 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/MYRIVAL.MP3 Third World Man Steely Dan N/A Rock 5030509 314 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/THIRDWOR.MP3 Time Out Of Mind Steely Dan N/A Rock 4052626 253 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/TIMEOUTO.MP3 The Mist Stephen King The Mist Vocal 69052735 4315 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/STEPHENK/THEMIST/THEMIST.MP3 Tom Dooley The Kingston Trio Rock-N-Roll's Greatest Hits Of Oldies 2912332 182 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEKINGS/ROCKNROL/TOMDOOLE.MP3 I'm A Believer The Monkees I'm A Believer Rock 2677839 167 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEMONKE/IMABELIE/IMABELIE.MP3 Last Train To Clarksville The Monkees I'm A Believer Rock 2655698 165 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEMONKE/IMABELIE/LASTTRAI.MP3 The Simpson Spin-off Showcase The Simpsons Go Simpsonic Comedy 3696837 231 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THESIMPS/GOSIMPSO/THESIMPS.MP3 Ava Adore The Smashing Pumpkins Adore Alternative 4175390 260 2 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THESMASH/ADORE/AVAADORE.MP3 Pinball Wizard The Who N/A Rock 2918140 182 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEWHO/UNKNOWNA/PINBALLW.MP3 Baba O'Riley The Who Who's Better, Who's Best Folk 4763191 297 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEWHO/WHOSBETT/BABAORIL.MP3 Beastie Boys Beastie Boys Anthology Disc 1 Hip-Hop 903829 56 1 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/01BEASTI.MP3 Slow And Low Beastie Boys Anthology Disc 1 Hip-Hop 3489323 218 2 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/02SLOWAN.MP3 Shake Your Rump Beastie Boys Anthology Disc 1 Hip-Hop 3183938 198 3 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/03SHAKEY.MP3 Gratitude Beastie Boys Anthology Disc 1 Hip-Hop 2647133 165 4 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/04GRATIT.MP3 Skills To Pay The Bills Beastie Boys Anthology Disc 1 Hip-Hop 3097289 193 5 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/05SKILLS.MP3 Root Down Beastie Boys Anthology Disc 1 Hip-Hop 3404057 212 6 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/06ROOTDO.MP3 Believe Me Beastie Boys Anthology Disc 1 Hip-Hop 1269541 79 7 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/07BELIEV.MP3 Sure Shot Beastie Boys Anthology Disc 1 Hip-Hop 3202322 200 8 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/08SURESH.MP3 Body Movin (Fatbot Slim Remix) Beastie Boys Anthology Disc 1 Hip-Hop 5301333 331 9 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/09BODYMO.MP3 Boomin' Granny Beastie Boys Anthology Disc 1 Hip-Hop 2212043 138 10 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/10BOOMIN.MP3 Fight For Your Right Beastie Boys Anthology Disc 1 Hip-Hop 3320896 207 11 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/11FIGHTF.MP3 Country Mike's Theme Beastie Boys Anthology Disc 1 Hip-Hop 568776 35 12 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/12COUNTR.MP3 Pass the Mic Beastie Boys Anthology Disc 1 Hip-Hop 4120861 257 13 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/13PASSTH.MP3 Something's Got To Give Beastie Boys Anthology Disc 1 Hip-Hop 3342215 208 14 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/14SOMETH.MP3 Bodhisattva Vow Beastie Boys Anthology Disc 1 Hip-Hop 3077639 192 15 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/15BODHIS.MP3 Sabrosa Beastie Boys Anthology Disc 1 Hip-Hop 3386502 211 16 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/16SABROS.MP3 Song For The Man Beastie Boys Anthology Disc 1 Hip-Hop 3067191 191 17 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/17SONGFO.MP3 Soba Violence Beastie Boys Anthology Disc 1 Hip-Hop 1183168 73 18 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/18SOBAVI.MP3 Alive Beastie Boys Anthology Disc 1 Hip-Hop 3663189 228 19 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/19ALIVE.MP3 Jimmy James (Original Version) Beastie Boys Anthology Disc 1 Hip-Hop 2969820 185 20 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/20JIMMYJ.MP3 3 MC's and 1 DJ (Live Video Version) Beastie Boys Anthology Disc 1 Hip-Hop 2211370 138 21 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/213MCSAN.MP3 The Biz vs. the Nuge Beastie Boys Anthology Disc 2 Hip-Hop 543606 33 1 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/01THEBIZ.MP3 Sabotage Beastie Boys Anthology Disc 2 Hip-Hop 2875755 179 2 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/02SABOTA.MP3 Shadrach Beastie Boys Anthology Disc 2 Hip-Hop 4000901 250 3 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/03SHADRA.MP3 Brass Monkey Beastie Boys Anthology Disc 2 Hip-Hop 2527182 157 4 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/04BRASSM.MP3 Time For Livin' Beastie Boys Anthology Disc 2 Hip-Hop 1741422 108 5 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/05TIMEFO.MP3 Dub The Mic Beastie Boys Anthology Disc 2 Hip-Hop 2902508 181 6 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/06DUBTHE.MP3 Benny and the Jets Beastie Boys Anthology Disc 2 Hip-Hop 3951379 246 7 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/07BENNYA.MP3 The Negotiation Limerick File Beastie Boys Anthology Disc 2 Hip-Hop 2754568 172 8 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/08THENEG.MP3 I Want Some Beastie Boys Anthology Disc 2 Hip-Hop 1925320 120 9 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/09IWANTS.MP3 She's On It Beastie Boys Anthology Disc 2 Hip-Hop 4133957 258 10 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/10SHESON.MP3 Son Of Neckbone Beastie Boys Anthology Disc 2 Hip-Hop 3195921 199 11 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/11SONOFN.MP3 Get It Together Beastie Boys Anthology Disc 2 Hip-Hop 3939888 246 12 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/12GETITT.MP3 Twenty Questions Beastie Boys Anthology Disc 2 Hip-Hop 2371707 148 13 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/13TWENTY.MP3 Remote Control Beastie Boys Anthology Disc 2 Hip-Hop 2873256 179 14 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/14REMOTE.MP3 Railroad Blues Beastie Boys Anthology Disc 2 Hip-Hop 2530947 158 15 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/15RAILRO.MP3 Live Wire Beastie Boys Anthology Disc 2 Hip-Hop 2982338 186 16 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/16LIVEWI.MP3 So What'cha Want Beastie Boys Anthology Disc 2 Hip-Hop 3474283 217 17 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/17SOWHAT.MP3 Netty's Girl Beastie Boys Anthology Disc 2 Hip-Hop 2882867 180 18 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/18NETTYS.MP3 Egg Raid On Mojo Beastie Boys Anthology Disc 2 Hip-Hop 1288357 80 19 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/19EGGRAI.MP3 Hey Ladies Beastie Boys Anthology Disc 2 Hip-Hop 3661522 228 20 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/20HEYLAD.MP3 Intergalactic Beastie Boys Anthology Disc 2 Hip-Hop 3368536 210 21 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/21INTERG.MP3 Super Disco Breakin' Beastie Boys Hello Nasty Hip-Hop 2038599 127 1 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/01SUPERD.MP3 The Move Beastie Boys Hello Nasty Hip-Hop 3454632 215 2 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/02THEMOV.MP3 Remote Control Beastie Boys Hello Nasty Hip-Hop 2861972 178 3 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/03REMOTE.MP3 Song for the Man Beastie Boys Hello Nasty Hip-Hop 3094359 193 4 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/04SONGFO.MP3 Just a Test Beastie Boys Hello Nasty Hip-Hop 2121763 132 5 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/05JUSTAT.MP3 Body Movin' Beastie Boys Hello Nasty Hip-Hop 2941381 183 6 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/06BODYMO.MP3 Intergalactic Beastie Boys Hello Nasty Hip-Hop 3704576 231 7 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/07INTERG.MP3 Sneakin' Out the Hospital Beastie Boys Hello Nasty Hip-Hop 2645062 165 8 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/08SNEAKI.MP3 Putting Shame in Your Game Beastie Boys Hello Nasty Hip-Hop 3474712 217 9 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/09PUTTIN.MP3 Flowin' Prose Beastie Boys Hello Nasty Hip-Hop 2554773 159 10 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/10FLOWIN.MP3 And Me Beastie Boys Hello Nasty Hip-Hop 2753296 172 11 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/11ANDME.MP3 Three MC's and One DJ Beastie Boys Hello Nasty Hip-Hop 2726562 170 12 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/12THREEM.MP3 Can't, Won't, Don't Stop Beastie Boys Hello Nasty Hip-Hop 2901272 181 13 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/13CANTWO.MP3 Song for Junior Beastie Boys Hello Nasty Hip-Hop 3675881 229 14 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/14SONGFO.MP3 I Don't Know Beastie Boys Hello Nasty Hip-Hop 2886213 180 15 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/15IDONTK.MP3 The Negotiation Limerick File Beastie Boys Hello Nasty Hip-Hop 2660531 166 16 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/16THENEG.MP3 Electrify Beastie Boys Hello Nasty Hip-Hop 2280310 142 17 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/17ELECTR.MP3 Picture This Beastie Boys Hello Nasty Hip-Hop 2322944 145 18 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/18PICTUR.MP3 Unite Beastie Boys Hello Nasty Hip-Hop 3389011 211 19 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/19UNITE.MP3 Dedication Beastie Boys Hello Nasty Hip-Hop 2446517 152 20 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/20DEDICA.MP3 Dr. Lee, PhD Beastie Boys Hello Nasty Hip-Hop 4655852 290 21 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/21DRLEEP.MP3 Instant Death Beastie Boys Hello Nasty Hip-Hop 3169591 198 22 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/22INSTAN.MP3 Sure Shot Beastie Boys Ill Communication Hip-Hop 3195678 199 1 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/01SURESH.MP3 Tough Guy Beastie Boys Ill Communication Hip-Hop 923884 57 2 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/02TOUGHG.MP3 B-boys Makin With The Freak Freak Beastie Boys Ill Communication Hip-Hop 3470198 216 3 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/03BBOYSM.MP3 Bobo On The Corner Beastie Boys Ill Communication Hip-Hop 1173197 73 4 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/04BOBOON.MP3 Root Down Beastie Boys Ill Communication Hip-Hop 3394857 212 5 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/05ROOTDO.MP3 Sabotage Beastie Boys Ill Communication Hip-Hop 2854660 178 6 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/06SABOTA.MP3 Get It Together Beastie Boys Ill Communication Hip-Hop 3931105 245 7 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/07GETITT.MP3 Sabrosa Beastie Boys Ill Communication Hip-Hop 3352362 209 8 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/08SABROS.MP3 The Update Beastie Boys Ill Communication Hip-Hop 3129453 195 9 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/09THEUPD.MP3 Futterman's Rule Beastie Boys Ill Communication Hip-Hop 3558010 222 10 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/10FUTTER.MP3 Alright Hear This Beastie Boys Ill Communication Hip-Hop 2990841 186 11 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/11ALRIGH.MP3 Eugene's Lament Beastie Boys Ill Communication Hip-Hop 2120507 132 12 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/12EUGENE.MP3 Flute Loop Beastie Boys Ill Communication Hip-Hop 1836356 114 13 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/13FLUTEL.MP3 Do It Beastie Boys Ill Communication Hip-Hop 3143244 196 14 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/14DOIT.MP3 Ricky's Theme Beastie Boys Ill Communication Hip-Hop 3577651 223 15 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/15RICKYS.MP3 Heart Attack Man Beastie Boys Ill Communication Hip-Hop 2160437 135 16 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/16HEARTA.MP3 The Scoop Beastie Boys Ill Communication Hip-Hop 3459251 216 17 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/17THESCO.MP3 Shambala Beastie Boys Ill Communication Hip-Hop 3535293 220 18 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/18SHAMBA.MP3 Bodhisattva Vow Beastie Boys Ill Communication Hip-Hop 3014523 188 19 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/19BODHIS.MP3 Transitions Beastie Boys Ill Communication Hip-Hop 2431048 151 20 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/20TRANSI.MP3 No Woman No Cry (Live At The Roxy) Bob Marley Songs of Freedom Three Reggae 5159914 322 1 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/01NOWOMA.MP3 Who The Cap Fit Bob Marley Songs of Freedom Three Reggae 4512895 282 2 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/02WHOTHE.MP3 Jah Live Bob Marley Songs of Freedom Three Reggae 4085038 255 3 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/03JAHLIV.MP3 Crazy Baldheads Bob Marley Songs of Freedom Three Reggae 3043351 190 4 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/04CRAZYB.MP3 War Bob Marley Songs of Freedom Three Reggae 3471329 216 5 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/05WAR.MP3 Johnny Was Bob Marley Songs of Freedom Three Reggae 3625285 226 6 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/06JOHNNY.MP3 Rat Race Bob Marley Songs of Freedom Three Reggae 2709117 169 7 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/07RATRAC.MP3 Jammin' (12" Mix) Bob Marley Songs of Freedom Three Reggae 5529791 345 8 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/08JAMMIN.MP3 Waiting in Vain (Advert Mix) Bob Marley Songs of Freedom Three Reggae 3831217 239 9 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/09WAITIN.MP3 Exodus (12" Mix) Bob Marley Songs of Freedom Three Reggae 7122216 445 10 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/10EXODUS.MP3 Natural Mystic Bob Marley Songs of Freedom Three Reggae 3330490 208 11 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/11NATURA.MP3 Three Little Birds (Alternate Mix) Bob Marley Songs of Freedom Three Reggae 2831049 176 12 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/12THREEL.MP3 Running Away Bob Marley Songs of Freedom Three Reggae 4066932 254 13 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/13RUNNIN.MP3 Keep On Moving (London Version) Bob Marley Songs of Freedom Three Reggae 5513507 344 14 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/14KEEPON.MP3 Easy Skanking Bob Marley Songs of Freedom Three Reggae 2814867 175 15 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/15EASYSK.MP3 Is This Love (Horns Mix) Bob Marley Songs of Freedom Three Reggae 3845007 240 16 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/16ISTHIS.MP3 Smile Jamacia Bob Marley Songs of Freedom Three Reggae 3097268 193 17 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/17SMILEJ.MP3 Time Will tell Bob Marley Songs of Freedom Three Reggae 3402797 212 18 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/18TIMEWI.MP3 Africa Unite Bob Marley Songs Of Freedom Four Reggae 2790900 174 1 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/01AFRICA.MP3 Survival Bob Marley Songs Of Freedom Four Reggae 3715839 232 2 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/02SURVIV.MP3 One Drop Bob Marley Songs Of Freedom Four Reggae 3710406 231 3 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/03ONEDRO.MP3 One Dub Bob Marley Songs Of Freedom Four Reggae 3736318 233 4 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/04ONEDUB.MP3 Zimbabwe Bob Marley Songs Of Freedom Four Reggae 3643672 227 5 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/05ZIMBAB.MP3 So Much Trouble In The World Bob Marley Songs Of Freedom Four Reggae 3800287 237 6 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/06SOMUCH.MP3 Ride Natty Ride (12" Mix) Bob Marley Songs Of Freedom Four Reggae 6123718 382 7 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/07RIDENA.MP3 Babylon System Bob Marley Songs Of Freedom Four Reggae 4137984 258 8 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/08BABYLO.MP3 Coming In The Cold (12" Mix) Bob Marley Songs Of Freedom Four Reggae 5830314 364 9 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/09COMING.MP3 Real Situation Bob Marley Songs Of Freedom Four Reggae 3023707 188 10 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/10REALSI.MP3 Bad Card Bob Marley Songs Of Freedom Four Reggae 2695325 168 11 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/11BADCAR.MP3 Could You Be Loved (12" Mix) Bob Marley Songs Of Freedom Four Reggae 5228037 326 12 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/12COULDY.MP3 Forever Loving Jah Bob Marley Songs Of Freedom Four Reggae 3712925 232 13 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/13FOREVE.MP3 Rastaman Live Up Bob Marley Songs Of Freedom Four Reggae 5138163 321 14 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/14RASTAM.MP3 Give Thanks And Praise Bob Marley Songs Of Freedom Four Reggae 3105217 194 15 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/15GIVETH.MP3 One Love/People Get Ready (12" Mix) Bob Marley Songs Of Freedom Four Reggae 6861845 428 16 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/16ONELOV.MP3 Why Should I Bob Marley Songs Of Freedom Four Reggae 3415750 213 17 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/17WHYSHO.MP3 Redemption Song (Live In Pittsburgh) Bob Marley Songs Of Freedom Four Reggae 3982945 248 18 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/18REDEMP.MP3 Judge Not Bob Marley Songs of Freedom One Reggae 2344695 146 1 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/01JUDGEN.MP3 One Cup Of Coffee Bob Marley Songs of Freedom One Reggae 2465492 154 2 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/02ONECUP.MP3 Simmer Down Bob Marley Songs of Freedom One Reggae 2720025 170 3 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/03SIMMER.MP3 I'm Still Waiting Bob Marley Songs of Freedom One Reggae 2990868 186 4 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/04IMSTIL.MP3 One Love/People Get Ready (Original) Bob Marley Songs of Freedom One Reggae 3223550 201 5 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/05ONELOV.MP3 Put It On Bob Marley Songs of Freedom One Reggae 3009946 188 6 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/06PUTITO.MP3 Bus Dem Shut (Pyaka) Bob Marley Songs of Freedom One Reggae 2673082 167 7 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/07BUSDEM.MP3 Mellow Mood (Original) Bob Marley Songs of Freedom One Reggae 3384033 211 8 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/08MELLOW.MP3 Bend Down Low Bob Marley Songs of Freedom One Reggae 2413105 150 9 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/09BENDDO.MP3 Hypocrites Bob Marley Songs of Freedom One Reggae 2490148 155 10 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/10HYPOCR.MP3 Stir It Up (Original) Bob Marley Songs of Freedom One Reggae 3082267 192 11 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/11STIRIT.MP3 Nice Time Bob Marley Songs of Freedom One Reggae 2647160 165 12 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/12NICETI.MP3 Thank You Lord (Original) Bob Marley Songs of Freedom One Reggae 3535061 220 13 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/13THANKY.MP3 Hammer Bob Marley Songs of Freedom One Reggae 2826461 176 14 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/14HAMMER.MP3 Caution Bob Marley Songs of Freedom One Reggae 2637545 164 15 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/15CAUTIO.MP3 Back Out Bob Marley Songs of Freedom One Reggae 2217915 138 16 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/16BACKOU.MP3 Soul Shake Down Party Bob Marley Songs of Freedom One Reggae 2971230 185 17 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/17SOULSH.MP3 Do It Twice Bob Marley Songs of Freedom One Reggae 2699407 168 18 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/18DOITTW.MP3 Soul Rebel Bob Marley Songs of Freedom One Reggae 3180475 198 19 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/19SOULRE.MP3 Sun Is Shining Bob Marley Songs of Freedom One Reggae 2098385 131 20 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/20SUNISS.MP3 Don't Rock The Boat Bob Marley Songs of Freedom One Reggae 4350353 271 21 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/21DONTRO.MP3 Small Axe Bob Marley Songs of Freedom One Reggae 3789860 236 22 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/22SMALLA.MP3 Duppy Conqueror Bob Marley Songs of Freedom One Reggae 3514013 219 23 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/23DUPPYC.MP3 Mr. Brown Bob Marley Songs of Freedom One Reggae 3405755 212 24 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/24MRBROW.MP3 Screw Face Bob Marley Songs of Freedom Two Reggae 2290182 143 1 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/01SCREWF.MP3 Lick Samba Bob Marley Songs of Freedom Two Reggae 2452350 153 2 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/02LICKSA.MP3 Trenchtown Rock (Alternate Mix) Bob Marley Songs of Freedom Two Reggae 3337608 208 3 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/03TRENCH.MP3 Craven Choke Puppy Bob Marley Songs of Freedom Two Reggae 2754542 172 4 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/04CRAVEN.MP3 Guava Jelly Bob Marley Songs of Freedom Two Reggae 2205755 137 5 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/05GUAVAJ.MP3 Acoustic Medley Bob Marley Songs of Freedom Two Reggae 11666261 729 6 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/06ACOUST.MP3 I'm Hurting Inside (Alternate Mix) Bob Marley Songs of Freedom Two Reggae 3342627 208 7 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/07IMHURT.MP3 High Tide Or Low Tide Bob Marley Songs of Freedom Two Reggae 3992540 249 8 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/08HIGHTI.MP3 Slave Driver Bob Marley Songs of Freedom Two Reggae 2741580 171 9 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/09SLAVED.MP3 No More Trouble Bob Marley Songs of Freedom Two Reggae 3827860 239 10 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/10NOMORE.MP3 Concrete Jungle Bob Marley Songs of Freedom Two Reggae 4011484 250 11 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/11CONCRE.MP3 Get Up Stand Up Bob Marley Songs of Freedom Two Reggae 3116076 194 12 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/12GETUPS.MP3 Rastaman Chant Bob Marley Songs of Freedom Two Reggae 3692580 230 13 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/13RASTAM.MP3 Burnin' And Lootin" Bob Marley Songs of Freedom Two Reggae 4050636 253 14 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/14BURNIN.MP3 Iron Lion Zion Bob Marley Songs of Freedom Two Reggae 2812637 175 15 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/15IRONLI.MP3 Livley Up Yourself Bob Marley Songs of Freedom Two Reggae 4970981 310 16 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/16LIVLEY.MP3 Natty Dread Bob Marley Songs of Freedom Two Reggae 3433303 214 17 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/17NATTYD.MP3 I Shot The Sheriff (Live) Bob Marley Songs of Freedom Two Reggae 5218002 326 18 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/18ISHOTT.MP3 Virtual Insanity Jamiroquai Travelling Without Moving Funk 5459966 341 1 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/01VIRTUA.MP3 Cosmic Girl Jamiroquai Travelling Without Moving Funk 3904316 244 2 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/02COSMIC.MP3 Use The Force Jamiroquai Travelling Without Moving Funk 3850821 240 3 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/03USETHE.MP3 Everyday Jamiroquai Travelling Without Moving Funk 4298450 268 4 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/04EVERYD.MP3 Alright Jamiroquai Travelling Without Moving Funk 4246622 265 5 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/05ALRIGH.MP3 High Times Jamiroquai Travelling Without Moving Funk 5739296 358 6 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/06HIGHTI.MP3 Drifting Along Jamiroquai Travelling Without Moving Funk 3942495 246 7 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/07DRIFTI.MP3 Didjerama Jamiroquai Travelling Without Moving Funk 3686141 230 8 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/08DIDJER.MP3 Didgital Vibrations Jamiroquai Travelling Without Moving Funk 5589536 349 9 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/09DIDGIT.MP3 Travelling Without Moving Jamiroquai Travelling Without Moving Funk 3521205 220 10 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/10TRAVEL.MP3 You Are My Love Jamiroquai Travelling Without Moving Funk 3773084 235 11 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/11YOUARE.MP3 Spend A Lifetime Jamiroquai Travelling Without Moving Funk 4069558 254 12 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/12SPENDA.MP3 Bonus 1 Jamiroquai Travelling Without Moving Funk 4833020 302 13 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/13BONUS1.MP3 Bonus 2 Jamiroquai Travelling Without Moving Funk 4417072 276 14 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/14BONUS2.MP3 Steal My Sunshine Len You Can't Stop The Bum Rush Hip-Hop 4247977 265 1 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/01STEALM.MP3 Crytptik Souls Crew Len You Can't Stop The Bum Rush Hip-Hop 4229061 264 2 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/02CRYTPT.MP3 Man Of The Year Len You Can't Stop The Bum Rush Hip-Hop 4916181 307 3 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/03MANOFT.MP3 Beautiful Day Len You Can't Stop The Bum Rush Hip-Hop 2660453 166 4 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/04BEAUTI.MP3 The Hard Disk Approach Len You Can't Stop The Bum Rush Hip-Hop 2946765 184 5 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/05THEHAR.MP3 Hot Rod Monster Jam Len You Can't Stop The Bum Rush Hip-Hop 3947078 246 6 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/06HOTROD.MP3 Cold Chillin' Len You Can't Stop The Bum Rush Hip-Hop 3300490 206 7 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/07COLDCH.MP3 Feelin' Alright Len You Can't Stop The Bum Rush Hip-Hop 3824194 239 8 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/08FEELIN.MP3 Cheekybugger Len You Can't Stop The Bum Rush Hip-Hop 1670727 104 9 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/09CHEEKY.MP3 Big Meanie Len You Can't Stop The Bum Rush Hip-Hop 3952923 247 10 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/10BIGMEA.MP3 Junebug Len You Can't Stop The Bum Rush Hip-Hop 3835333 239 11 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/11JUNEBU.MP3 Crazy 'Cause I Believe (Early Morning Sunshine) Len You Can't Stop The Bum Rush Hip-Hop 2885074 180 12 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/12CRAZYC.MP3 Black Helicopters The Grassy Knoll Positive Avantgarde 3827820 239 1 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/01BLACKH.MP3 Driving Nowhere The Grassy Knoll Positive Avantgarde 5022485 313 2 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/02DRIVIN.MP3 Slow Steady Starvation The Grassy Knoll Positive Avantgarde 3906401 244 3 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/03SLOWST.MP3 1961 The Grassy Knoll Positive Avantgarde 6073083 379 4 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/041961.MP3 The Americans The Grassy Knoll Positive Avantgarde 3540818 221 5 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/05THEAME.MP3 Roswell Crash The Grassy Knoll Positive Avantgarde 3768466 235 6 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/06ROSWEL.MP3 The Common Ground The Grassy Knoll Positive Avantgarde 3256470 203 7 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/07THECOM.MP3 Another Theory The Grassy Knoll Positive Avantgarde 1404491 87 8 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/08ANOTHE.MP3 Wailing And Gnashing Of Teeth The Grassy Knoll Positive Avantgarde 2262992 141 9 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/09WAILIN.MP3 Fall Of The American Empire The Grassy Knoll Positive Avantgarde 4321024 270 10 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/10FALLOF.MP3 All Things Considered The Grassy Knoll Positive Avantgarde 4335646 270 11 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/11ALLTHI.MP3 Corrosion Of The Masses The Grassy Knoll Positive Avantgarde 3897767 243 12 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/12CORROS.MP3 End Of It All The Grassy Knoll Positive Avantgarde 1653317 103 13 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/13ENDOFI.MP3 01 - Maria Green Day International Superhits Rock 2675485 167 1 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/01 - Maria.mp3 02 - Poprocks And Coke Green Day International Superhits Rock 2532961 158 2 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/02 - Poprocks And Coke.mp3 03 - Longview Green Day International Superhits Rock 3744624 234 3 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/03 - Longview.mp3 04 - Welcome To Paradise Green Day International Superhits Rock 3586636 224 4 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/04 - Welcome To Paradise.mp3 05 - Basket Case Green Day International Superhits Rock 2905362 181 5 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/05 - Basket Case.mp3 06 - When I Come Around Green Day International Superhits Rock 2853117 178 6 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/06 - When I Come Around.mp3 07 - She Green Day International Superhits Rock 2145930 134 7 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/07 - She.mp3 08 - Jason Andrew Relva Green Day International Superhits Rock 2735253 170 8 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/08 - Jason Andrew Relva.mp3 09 - Geek Stink Breath Green Day International Superhits Rock 2173516 135 9 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/09 - Geek Stink Breath.mp3 10 - Brain Stew Green Day International Superhits Rock 3089682 193 10 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/10 - Brain Stew.mp3 11 - Jaded Green Day International Superhits Rock 1444595 90 11 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/11 - Jaded.mp3 12 - Walking Contradiction Green Day International Superhits Rock 2418022 151 12 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/12 - Walking Contradiction.mp3 13 - Stuck With Me Green Day International Superhits Rock 2167664 135 13 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/13 - Stuck With Me.mp3 14 - Hitchin A Ride Green Day International Superhits Rock 2744030 171 14 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/14 - Hitchin A Ride.mp3 15 - Good Riddance (Time Of Yo Green Day International Superhits Rock 2456892 153 15 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/15 - Good Riddance (Time Of Your Life).mp3 16 - Redundant Green Day International Superhits Rock 3169930 198 16 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/16 - Redundant.mp3 17 - Nice Guys Finish Last Green Day International Superhits Rock 2722296 170 17 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/17 - Nice Guys Finish Last.mp3 18 - Minority Green Day International Superhits Rock 2700144 168 18 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/18 - Minority.mp3 19 - Warning Green Day International Superhits Rock 3549855 221 19 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/19 - Warning.mp3 20 - Waiting Green Day International Superhits Rock 3083413 192 20 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/20 - Waiting.mp3 21 - Macys Day Parade Green Day International Superhits Rock 3414019 213 21 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/21 - Macys Day Parade.mp3 Verandi Bjork Vespertine Avantgarde 4261212 266 0 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Bjork/Vespertine/Verandi.mp3 Who's On First? Abbott & Costello (Direct from video) Comedy 3053132 381 0 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 64 22050 MPEG AUDIO FILE MP3020/ABBOTTCO/DIRECTFR/WHOSONFI.MP3 Take On Me A-ha N/A Pop 3690102 230 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/AHA/UNKNOWNA/TAKEONME.MP3 Can't Get Enough of Your Love Barry White N/A Pop 3765920 235 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/BARRYWHI/UNKNOWNA/CANTGETE.MP3 We Didn't Start the Fire Billy Joel N/A Rock 4653937 290 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/BILLYJOE/UNKNOWNA/WEDIDNTS.MP3 Johnny B. Goode Chuck Berry 1958-Rock & Roll Era Rock 2587713 161 1 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/CHUCKBER/1958ROCK/JOHNNYBG.MP3 Spike Jones - All I Want for C Dr. Demento Dr. Demento Presents The Great Comedy 3029811 189 2 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DR_DE/DR_DE/SPIKEJON.MP3 Cocktails for Two - Spike Jone Dr. Demento N/A Comedy 2851726 178 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DR_DE/NA/COCKTAIL.MP3 Spike Jones & His City Slicker Dr. Demento N/A Comedy 2545362 159 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DR_DE/NA/SPIKEJON.MP3 Forty Miles Of Bad Road Duane Eddy 1959 - The Rock 'n' Roll Era Rock 2043825 127 8 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DUANEEDD/1959THER/FORTYMIL.MP3 Peter Gunn Duane Eddy Great Guitar Hits Rock 4583881 286 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DUANEEDD/GREATGUI/PETERGUN.MP3 Summertime Blues Eddie Cochran 1958-Rock & Roll Era Rock 1920515 120 2 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/EDDIECOC/1958ROCK/SUMMERTI.MP3 C'mon Everybody Eddie Cochran The Rock 'n' Roll Era- 1959 - Still Rockin' Rock 1907162 119 7 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/EDDIECOC/THEROCKN/CMONEVER.MP3 Are You Ready Eddy Emerson,Lake,and Palmer Tarkus Rock 2094794 130 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/AREYOURE.MP3 A Time And A Place Emerson,Lake,and Palmer Tarkus Rock 2908978 181 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/ATIMEAND.MP3 Bitches Crystal Emerson,Lake,and Palmer Tarkus Rock 3811349 238 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/BITCHESC.MP3 Infinite Space Emerson,Lake,and Palmer Tarkus Rock 3213666 200 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/INFINITE.MP3 Jeremy Bender Emerson,Lake,and Palmer Tarkus Rock 1765855 110 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/JEREMYBE.MP3 Tarkus Emerson,Lake,and Palmer Tarkus Rock 19888690 1243 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/TARKUS.MP3 The Only Way Emerson,Lake,and Palmer Tarkus Rock 3658981 228 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/THEONLYW.MP3 First and Second Law Flanders & Swan At The Drop of Another Hat Comedy 2816356 176 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/FLANDERS/ATTHEDRO/FIRSTAND.MP3 Sounding Brass Flanders & Swan At The Drop of Another Hat Comedy 2772741 173 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/FLANDERS/ATTHEDRO/SOUNDING.MP3 Asylum Supertramp Crime Of The Century Rock 6432368 402 4 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/ASYLUM.MP3 Bloody Well Right Supertramp Crime Of The Century Rock 4350109 271 2 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/BLOODYWE.MP3 Crime Of The Century Supertramp Crime Of The Century Rock 5370350 335 8 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/CRIMEOFT.MP3 Dreamer Supertramp Crime Of The Century Rock 3408019 213 5 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/DREAMER.MP3 Hide In Your Shell Supertramp Crime Of The Century Rock 6534781 408 3 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/HIDEINYO.MP3 If Everyone Was Listening Supertramp Crime Of The Century Rock 3920037 245 7 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/IFEVERYO.MP3 Rudy Supertramp Crime Of The Century Rock 7019600 438 6 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/RUDY.MP3 School Supertramp Crime Of The Century Rock 5340661 333 1 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/SCHOOL.MP3 Ain't Nobody But Me Supertramp Crisis? What Crisis? Rock 4979561 311 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/AINTNOBO.MP3 Another Man's Woman Supertramp Crisis? What Crisis? Rock 6031704 376 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/ANOTHERM.MP3 A Soapbox Opera Supertramp Crisis? What Crisis? Rock 4799974 299 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/ASOAPBOX.MP3 Easy Does It Supertramp Crisis? What Crisis? Rock 2188842 136 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/EASYDOES.MP3 Just A Normal Day Supertramp Crisis? What Crisis? Rock 3882556 242 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/JUSTANOR.MP3 Lady Supertramp Crisis? What Crisis? Rock 5209145 325 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/LADY.MP3 Poor Boy Supertramp Crisis? What Crisis? Rock 4926051 307 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/POORBOY.MP3 Sister Moonshine Supertramp Crisis? What Crisis? Rock 5031525 314 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/SISTERMO.MP3 The Meaning Supertramp Crisis? What Crisis? Rock 5194384 324 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/THEMEANI.MP3 Two Of Us Supertramp Crisis? What Crisis? Rock 3314819 207 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/TWOOFUS.MP3 My Pink Half Of The Drain Pipe The Bonzo Dog Band Doughnuts In Granny's Shop Other 3427703 214 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/DOUGHNUT/MYPINKHA.MP3 Death Cab For Cutie The Bonzo Dog Band Gorilla Other 2821633 176 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/GORILLA/DEATHCAB.MP3 I Want To Be With You The Bonzo Dog Band Keynham Other 2194000 137 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/KEYNHAM/IWANTTOB.MP3 Don't Get Me Wrong The Bonzo Dog Band Lets Make Up And Be Friendly Other 4702190 293 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/LETSMAKE/DONTGETM.MP3 Canyons Of Your Mind The Bonzo Dog Band Tadpoles Other 2944097 184 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/TADPOLES/CANYONSO.MP3 Hunting Tigers Out In 'INDIAH' The Bonzo Dog Band Tadpoles Other 2981305 186 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/TADPOLES/HUNTINGT.MP3 Bad Habit The Offspring Smash Rock 3572828 223 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/BADHABIT.MP3 Come Out And Play The Offspring Smash Rock 3163514 197 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/COMEOUTA.MP3 Genocide The Offspring Smash Rock 3383780 211 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/GENOCIDE.MP3 Gotta Get Away The Offspring Smash Rock 3707276 231 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/GOTTAGET.MP3 It'll Be A Long Time The Offspring Smash Rock 2608886 163 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/ITLLBEAL.MP3 Killboy Powerhead The Offspring Smash Rock 1964808 122 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/KILLBOYP.MP3 Nitro (Youth Energy) The Offspring Smash Rock 2341114 146 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/NITROYOU.MP3 Self Esteem The Offspring Smash Rock 4123142 257 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/SELFESTE.MP3 So Alone The Offspring Smash Rock 1231837 76 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/SOALONE.MP3 Something To Believe In The Offspring Smash Rock 3158087 197 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/SOMETHIN.MP3 Time To Relax The Offspring Smash Rock 407487 25 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/TIMETORE.MP3 What Happened To You- The Offspring Smash Rock 2108310 131 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/WHATHAPP.MP3 We Don't Need Another Hero Tina Turner Mad Max Beyond Thunderdome Soundtrack 4071349 254 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TINATURN/MADMAXBE/WEDONTNE.MP3 All Or Nothin' Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3961990 247 6 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/ALLORNOT.MP3 All The Wrong Reasons Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3619548 226 7 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/ALLTHEWR.MP3 Built To Last Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3807345 237 12 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/BUILTTOL.MP3 Into The Great Wide Open Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3574552 223 3 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/INTOTHEG.MP3 Kings Highway Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3011828 188 2 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/KINGSHIG.MP3 Learning To Fly Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3882578 242 1 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/LEARNING.MP3 Makin' Some Noise Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3316525 207 11 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/MAKINSOM.MP3 Out In The Cold Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3539742 221 9 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/OUTINTHE.MP3 The Dark Of The Sun Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3261913 203 5 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/THEDARKO.MP3 Too Good To Be True Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3832704 239 8 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/TOOGOODT.MP3 Two Gunslingers Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3035654 189 4 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/TWOGUNSL.MP3 You and I Will Meet Again Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3557835 222 10 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/YOUANDIW.MP3 Anything That's Rock 'N' Roll Tom Petty And The Heartbreakers The Big Jangle Folk 2307155 144 4 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/ANYTHING.MP3 A Thing About You Tom Petty And The Heartbreakers The Big Jangle Folk 3402197 212 19 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/ATHINGAB.MP3 A Woman In Love Tom Petty And The Heartbreakers The Big Jangle Folk 4227664 264 17 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/AWOMANIN.MP3 Baby's A Rock 'N' Roller Tom Petty And The Heartbreakers The Big Jangle Folk 2761473 172 10 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/BABYSARO.MP3 Breakdown Tom Petty And The Heartbreakers The Big Jangle Folk 2604862 162 1 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/BREAKDOW.MP3 Don't Do Me Like That Tom Petty And The Heartbreakers The Big Jangle Folk 2604317 162 15 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/DONTDOME.MP3 Even The Losers Tom Petty And The Heartbreakers The Big Jangle Folk 3828653 239 13 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/EVENTHEL.MP3 Here Comes My Girl Tom Petty And The Heartbreakers The Big Jangle Folk 4255252 265 12 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/HERECOME.MP3 Hometown Blues Tom Petty And The Heartbreakers The Big Jangle Folk 2124910 132 3 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/HOMETOWN.MP3 I Need To Know Tom Petty And The Heartbreakers The Big Jangle Folk 2308952 144 5 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/INEEDTOK.MP3 Insider Tom Petty And The Heartbreakers The Big Jangle Folk 4211913 263 20 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/INSIDER.MP3 Listen To Her Heart Tom Petty And The Heartbreakers The Big Jangle Folk 2938821 183 6 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/LISTENTO.MP3 No Second Thoughts Tom Petty And The Heartbreakers The Big Jangle Folk 2555412 159 9 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/NOSECOND.MP3 Refugee Tom Petty And The Heartbreakers The Big Jangle Folk 3250468 203 11 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/REFUGEE.MP3 Shadow Of A Doubt (A Complex Kid) Tom Petty And The Heartbreakers The Big Jangle Folk 4254431 265 14 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/SHADOWOF.MP3 Something Big Tom Petty And The Heartbreakers The Big Jangle Folk 4555342 284 18 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/SOMETHIN.MP3 The Waiting Tom Petty And The Heartbreakers The Big Jangle Folk 3838958 239 16 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/THEWAITI.MP3 Too Much Ain't Enough Tom Petty And The Heartbreakers The Big Jangle Folk 2835029 177 8 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/TOOMUCHA.MP3 When The Time Comes Tom Petty And The Heartbreakers The Big Jangle Folk 2653215 165 7 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/WHENTHET.MP3 You Can Still Change Your Mind Tom Petty And The Heartbreakers The Big Jangle Folk 4101037 256 21 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/YOUCANST.MP3 All I Want Is You U2 The Best Of 1980-1990 Rock 9469265 591 14 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/ALLIWANT.MP3 Angel Of Harlem U2 The Best Of 1980-1990 Rock 3680948 230 13 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/ANGELOFH.MP3 Bad U2 The Best Of 1980-1990 Rock 5618315 351 6 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/BAD.MP3 Desire U2 The Best Of 1980-1990 Rock 2876368 179 11 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/DESIRE.MP3 I Still Haven't Found What I'm Looking For U2 The Best Of 1980-1990 Rock 4495575 280 4 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/ISTILLHA.MP3 I Will Follow U2 The Best Of 1980-1990 Rock 3480883 217 8 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/IWILLFOL.MP3 New Year's Day U2 The Best Of 1980-1990 Rock 4141955 258 2 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/NEWYEARS.MP3 Pride (In The Name Of Love) U2 The Best Of 1980-1990 Rock 3673994 229 1 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/PRIDEINT.MP3 Sunday Bloody Sunday U2 The Best Of 1980-1990 Rock 4509069 281 5 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/SUNDAYBL.MP3 Sweetest Thing (the single mix) U2 The Best Of 1980-1990 Rock 2930728 183 10 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/SWEETEST.MP3 The Unforgettable Fire U2 The Best Of 1980-1990 Rock 4728778 295 9 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/THEUNFOR.MP3 When Love Comes To Town U2 The Best Of 1980-1990 Rock 4129844 258 12 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/WHENLOVE.MP3 Where The Streets Have No Name U2 The Best Of 1980-1990 Rock 4427019 276 7 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/WHERETHE.MP3 My Boomerang Won't Come Back: N/A Crazy Tunes Comedy 3526290 220 0 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/CRAZYTUN/MYBOOMER.MP3 Chantilly Lace N/A Only Rock 'N Roll 1955-1959 Rock 2276175 142 0 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/ONLYROCK/CHANTILL.MP3 Pumpkin And Honey Bunny Dick Dale & His Del-Tones Pulp Fiction - Music From The Motion Picture Soundtrack 2367592 147 1 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/PULPFICT/PUMPKINA.MP3 Benny Hill Theme N/A N/A Comedy 1036477 64 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/BENNYHIL.MP3 Bottle N/A N/A Comedy 3475558 217 1 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 22050 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/BOTTLE.MP3 Friggin in the Rigg N/A N/A Comedy 3357406 209 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/FRIGGINI.MP3 Ivor Big N/A N/A Comedy 1615549 201 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 64 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/IVORBIG.MP3 n/a N/A N/A Comedy 2687542 167 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA.MP3 n/a N/A N/A Comedy 1628305 101 7 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA10.MP3 n/a N/A N/A Comedy 1920458 120 8 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA11.MP3 n/a N/A N/A Comedy 2273773 142 9 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA12.MP3 n/a N/A N/A Comedy 3519988 219 10 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA13.MP3 n/a N/A N/A Comedy 3803781 237 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA2.MP3 n/a N/A N/A Comedy 5014180 313 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA3.MP3 n/a N/A N/A Comedy 5311359 331 1 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA4.MP3 n/a N/A N/A Comedy 9950286 621 2 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA5.MP3 n/a N/A N/A Comedy 2324624 145 3 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA6.MP3 n/a N/A N/A Comedy 6728798 420 4 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA7.MP3 n/a N/A N/A Comedy 1562825 97 5 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA8.MP3 n/a N/A N/A Comedy 2788699 174 6 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA9.MP3 Three Little Pigs N/A N/A Rock 5663702 353 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/THREELIT.MP3 Blowin' Free Wishbone Ash Argus Rock 5182668 323 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/BLOWINFR.MP3 Leaf And Stream Wishbone Ash Argus Rock 3781660 236 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/LEAFANDS.MP3 The King Will Come Wishbone Ash Argus Rock 6853674 428 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/THEKINGW.MP3 Time Was Wishbone Ash Argus Rock 9364344 585 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/TIMEWAS.MP3 Warrior Wishbone Ash Argus Rock 5704694 356 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/WARRIOR.MP3 2. Andante. Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 4231002 264 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/2ANDANTE.MP3 2. Menuetto I -- Trio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 4001553 250 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/2MENUETT.MP3 3. Adagio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 5793331 362 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/3ADAGIO.MP3 3. Menuetto in canone -- Trio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 4048094 253 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/3MENUETT.MP3 4. Allegro. Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 6607517 412 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/4ALLEGRO.MP3 4. Menuetto II - Trio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 2777351 173 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/4MENUETT.MP3 5. Finale. Allegro Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 3281407 205 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/5FINALEA.MP3 Serenade in E-flat Maj., K. 37 Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 7393299 462 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/SERENAD1.MP3 Serenade in C min., K. 388(384 Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 7762915 485 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/SERENADE.MP3 Symphony No.21, 2nd Wolfgang Amadeus Mozart (in A major, K.134) Classical 5117916 319 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHON1.MP3 Symphony No.21, 3rd Wolfgang Amadeus Mozart (in A major, K.134) Classical 2917836 182 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHON2.MP3 Symphony No.21, 4th Wolfgang Amadeus Mozart (in A major, K.134) Classical 4116487 257 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHON3.MP3 Symphony No.21, 1st Wolfgang Amadeus Mozart (in A major, K.134) Classical 5111647 319 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHONY.MP3 Symphony No.40 in G Minor, 3rd Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 3945559 246 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHON1.MP3 Symphony No.40 in G Minor, 4th Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 6330111 395 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHON2.MP3 Symphony No.40 in G Minor, 1st Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 6679507 417 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHON3.MP3 Symphony No.40 in G Minor, 2nd Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 11103625 693 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHONY.MP3 1st Movement Wolfgang Amadeus Mozart N/A Classical 12988876 811 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/UNKNOWNA/1STMOVEM.MP3 2nd Movement Wolfgang Amadeus Mozart N/A Classical 8911268 556 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/UNKNOWNA/2NDMOVEM.MP3 3rd Movement Wolfgang Amadeus Mozart N/A Classical 7044385 440 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/UNKNOWNA/3RDMOVEM.MP3 SemiCharmed Life 3rd Eye Blind N/A Rock 4255199 265 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/3RDEYEBL/UNKNOWNA/SEMICHAR.MP3 Dream on Aerosmith N/A Metal 4263685 266 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/AEROSMIT/UNKNOWNA/DREAMON.MP3 Rooster Alice in Chains Dirt Grunge 6002271 375 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ALICEINC/DIRT/ROOSTER.MP3 Caruso Andrea Bocceli Romanza Classical 5112589 319 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANDREABO/ROMANZA/CARUSO.MP3 El Silencio de la Espera Andrea Bocceli Romanza Classical 4511860 281 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANDREABO/ROMANZA/ELSILENC.MP3 Macchine de Guerra Andrea Bocceli Romanza Classical 4006959 250 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANDREABO/ROMANZA/MACCHINE.MP3 Batonga Angelique Kidjo Logozo Other 4387849 274 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/BATONGA.MP3 Ekolya Angelique Kidjo Logozo Other 4037877 252 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/EKOLYA.MP3 EldjirEAngelique Kidjo Logozo Other 3691390 230 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/ELDJIR.MP3 Ewa ka djo Angelique Kidjo Logozo Other 4134429 258 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/EWAKADJO.MP3 Kalta Angelique Kidjo Logozo Other 4434937 277 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/KALTA.MP3 Logozo Angelique Kidjo Logozo Other 3703509 231 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/LOGOZO.MP3 Malaika Angelique Kidjo Logozo Other 4085107 255 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/MALAIKA.MP3 SniEAngelique Kidjo Logozo Other 1824922 114 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/SNI.MP3 TchEtchEAngelique Kidjo Logozo Other 4441210 277 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/TCHTCH.MP3 WEwEAngelique Kidjo Logozo Other 4271654 266 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/WW.MP3 Symphony #6 mvt 3, 4 & 5 Beethoven Hanover Band (Nimbus) 1988 Classical 17327473 1082 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/BEETHOVE/HANOVERB/SYMPHON1.MP3 Symphony #6 1st mvt Beethoven Hanover Band (Nimbus) 1988 Classical 10320245 645 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/BEETHOVE/HANOVERB/SYMPHONY.MP3 Storytime with Bobcat Bobcat Goldthwait How The Juice Stole Christmas Comedy 2662736 166 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 16000 MPEG AUDIO FILE MP3021/BOBCATGO/HOWTHEJU/STORYTIM.MP3 Tunnel of love Bruce Springsteen Bloomington Night Rock 7251573 453 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BLOOMING/TUNNELOF.MP3 Atlantic City Bruce Springsteen Brixton Nights Rock 5643681 352 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/ATLANTIC.MP3 Darkness on the edge of town. Bruce Springsteen Brixton Nights Rock 3373344 210 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/DARKNESS.MP3 Highway 29 Bruce Springsteen Brixton Nights Rock 4118545 257 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/HIGHWAY2.MP3 Intro Bruce Springsteen Brixton Nights Rock 1219159 76 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/INTRO.MP3 Mansion on the hill Bruce Springsteen Brixton Nights Rock 6017760 376 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/MANSIONO.MP3 Sinaloa Cowboys Bruce Springsteen Brixton Nights Rock 5080414 317 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/SINALOAC.MP3 State trooper Bruce Springsteen Brixton Nights Rock 4050003 253 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/STATETRO.MP3 Straight Time Bruce Springsteen Brixton Nights Rock 5584749 349 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/STRAIGHT.MP3 The ghost of tom joad Bruce Springsteen Brixton Nights Rock 6266866 391 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/THEGHOST.MP3 Enjoy The Silence Depeche Mode Live Cologne Oct. 5th, 1998 Alternative 6483465 405 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/DEPECHEM/LIVECOLO/ENJOYTHE.MP3 Brothers In Arms Dire Straits Brothers In Arms Rock 6622235 413 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/BROTHERS.MP3 Money For Nothing Dire Straits Brothers In Arms Rock 7987189 499 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/MONEYFOR.MP3 One World Dire Straits Brothers In Arms Rock 3473642 217 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/ONEWORLD.MP3 Ride Across The River Dire Straits Brothers In Arms Rock 6599151 412 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/RIDEACRO.MP3 So Far Away Dire Straits Brothers In Arms Rock 4934410 308 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/SOFARAWA.MP3 The Man's Too Strong Dire Straits Brothers In Arms Rock 4421724 276 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/THEMANST.MP3 Walk Of Life Dire Straits Brothers In Arms Rock 3979375 248 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/WALKOFLI.MP3 Why Worry Dire Straits Brothers In Arms Rock 8120928 507 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/WHYWORRY.MP3 Your Latest Trick Dire Straits Brothers In Arms Rock 6238588 389 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/YOURLATE.MP3 Angel of Mercy Dire Straits CommuniquERock 4297578 268 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/ANGELOFM.MP3 CommuniquEDire Straits CommuniquERock 5483323 342 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/COMMUNIQ.MP3 Lady Writer Dire Straits CommuniquERock 3503731 218 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/LADYWRIT.MP3 News Dire Straits CommuniquERock 4027984 251 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/NEWS.MP3 Once Upon a Time in the West Dire Straits CommuniquERock 5034732 314 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/ONCEUPON.MP3 Portobello Belle Dire Straits CommuniquERock 4180829 261 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/PORTOBEL.MP3 Where Do You Think You're Goin Dire Straits CommuniquERock 3573549 223 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/WHEREDOY.MP3 Knife Edge Encores, Legends & Paradox A Tribute to E.L.P. Rock 5128081 320 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENCORESL/ATRIBUTE/KNIFEEDG.MP3 Almost Full Moon Enigma Le Roi Est Mort, Vive Le Roi! New Age 3299782 206 9 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/ALMOSTFU.MP3 Beyond The Invisible Enigma Le Roi Est Mort, Vive Le Roi! New Age 4800753 300 4 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/BEYONDTH.MP3 Le Roi Est Mort, Vive Le Roi! Enigma Le Roi Est Mort, Vive Le Roi! New Age 1886397 117 1 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/LEROIEST.MP3 Morphing Thru Time Enigma Le Roi Est Mort, Vive Le Roi! New Age 5565540 347 2 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/MORPHING.MP3 Odyssey Of The Mind Enigma Le Roi Est Mort, Vive Le Roi! New Age 1611649 100 12 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/ODYSSEYO.MP3 Shadows In Silence Enigma Le Roi Est Mort, Vive Le Roi! New Age 4178055 261 6 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/SHADOWSI.MP3 The Child In Us Enigma Le Roi Est Mort, Vive Le Roi! New Age 4897260 306 7 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/THECHILD.MP3 The Roundabout Enigma Le Roi Est Mort, Vive Le Roi! New Age 3494688 218 10 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/THEROUND.MP3 Third Of Its Kind Enigma Le Roi Est Mort, Vive Le Roi! New Age 305246 19 3 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/THIRDOFI.MP3 T.N.T. For The Brain Enigma Le Roi Est Mort, Vive Le Roi! New Age 4257376 266 8 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/TNTFORTH.MP3 Why! ... Enigma Le Roi Est Mort, Vive Le Roi! New Age 4790304 299 5 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/WHY.MP3 Walking After You Foo Fighters The X-Files: The Album Soundtrack 3965315 247 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/FOOFIGHT/THEXFILE/WALKINGA.MP3 The I-95 Song Fred (August) Campbell N/A Comedy 3104286 194 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/FREDAUGU/UNKNOWNA/THEI95SO.MP3 Baker Street Gerry Rafferty Clowns To The Left, Jokers To Pop 5892806 368 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GERRYRAF/CLOWNSTO/BAKERSTR.MP3 Music for Royal Fireworks, 3rd G.F. Handel N/A N/A 3647499 227 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO1.MP3 Music for Royal Fireworks, 4th G.F. Handel N/A N/A 3768707 235 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO2.MP3 Music for Royal Fireworks, 5th G.F. Handel N/A N/A 3450362 215 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO3.MP3 Music for Royal Fireworks, 1st G.F. Handel N/A N/A 7927817 495 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO4.MP3 Music for Royal Fireworks, 2nd G.F. Handel N/A N/A 1515072 94 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFOR.MP3 Bad To The Bone G Thorogood And The Destroyers The Baddest of GT and The D's Rock 4756395 297 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GTHOROGO/THEBADDE/BADTOTHE.MP3 Who Do You Love G Thorogood And The Destroyers The Baddest of GT and The D's Rock 4163729 260 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GTHOROGO/THEBADDE/WHODOYOU.MP3 You talk Too Much G Thorogood And The Destroyers The Baddest of GT and The D's Rock 4411581 275 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GTHOROGO/THEBADDE/YOUTALKT.MP3 My Dead Dog Rover Hank , Stewart, Dave, Hank Dr. Demento : 25th Anniversary Collection Comedy 2251209 140 12 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/HANKSTEW/DR_DE/MYDEADDO.MP3 Clampetts Go To Maui Jeff Foxworthy Games Rednecks Play Comedy 6583413 411 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/CLAMPETT.MP3 Don't Drink And Drive Jeff Foxworthy Games Rednecks Play Comedy 5083219 317 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/DONTDRIN.MP3 Games Rednecks Play Jeff Foxworthy Games Rednecks Play Comedy 3765392 235 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/GAMESRED.MP3 I Love Being A Parent Jeff Foxworthy Games Rednecks Play Comedy 8426055 526 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/ILOVEBEI.MP3 Introduction Jeff Foxworthy Games Rednecks Play Comedy 1693284 105 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/INTRODUC.MP3 More You Might Be A Redneck If Jeff Foxworthy Games Rednecks Play Comedy 3338389 208 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/MOREYOUM.MP3 NASA & Alabama & Fishing Shows Jeff Foxworthy Games Rednecks Play Comedy 3209100 200 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/NASAALAB.MP3 Out Of The Gene Pool Jeff Foxworthy Games Rednecks Play Comedy 3360391 210 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/OUTOFTHE.MP3 Party All Night Jeff Foxworthy Games Rednecks Play Comedy 2967504 185 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/PARTYALL.MP3 Seek And Destroy Jeff Foxworthy Games Rednecks Play Comedy 3851489 240 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/SEEKANDD.MP3 Southern Accent Jeff Foxworthy Games Rednecks Play Comedy 2308801 144 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/SOUTHERN.MP3 Victoria's Secret Jeff Foxworthy Games Rednecks Play Comedy 3892450 243 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/VICTORIA.MP3 Bathroom Jerry Seinfeld N/A Comedy 2032904 127 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/BATHROOM.MP3 Intro - Phones Jerry Seinfeld N/A Comedy 2026641 126 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/INTROPHO.MP3 n/a Jerry Seinfeld N/A Comedy 3264206 204 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA.MP3 n/a Jerry Seinfeld N/A Comedy 513362 32 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA10.MP3 n/a Jerry Seinfeld N/A Comedy 6493356 405 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA11.MP3 n/a Jerry Seinfeld N/A Comedy 7245684 452 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA12.MP3 n/a Jerry Seinfeld N/A Comedy 2211089 138 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA13.MP3 n/a Jerry Seinfeld N/A Comedy 1198470 74 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA14.MP3 n/a Jerry Seinfeld N/A Comedy 2517453 157 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA15.MP3 n/a Jerry Seinfeld N/A Comedy 6700665 418 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA16.MP3 n/a Jerry Seinfeld N/A Comedy 711731 44 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA2.MP3 n/a Jerry Seinfeld N/A Comedy 3537969 221 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA3.MP3 n/a Jerry Seinfeld N/A Comedy 1619120 101 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA4.MP3 n/a Jerry Seinfeld N/A Comedy 6414921 400 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA5.MP3 n/a Jerry Seinfeld N/A Comedy 9364040 585 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA6.MP3 n/a Jerry Seinfeld N/A Comedy 3573914 223 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA7.MP3 n/a Jerry Seinfeld N/A Comedy 3711422 231 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA8.MP3 n/a Jerry Seinfeld N/A Comedy 1550714 96 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA9.MP3 Scuba Diving Jerry Seinfeld N/A Comedy 1094323 68 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/SCUBADIV.MP3 Sky Diving/The Helmet Jerry Seinfeld N/A Comedy 1288125 80 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/SKYDIVIN.MP3 Autobahn Kraftwerk TransEuropeExpress - Autobahn Electronic 21792365 1362 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/KRAFTWER/TRANSEUR/AUTOBAHN.MP3 Ballade No 2 Chopin Leslie Bridges Leslie Bridges Classical 5111633 319 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADE1.MP3 Ballade No 3 Chopin Leslie Bridges Leslie Bridges Classical 4718334 294 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADE2.MP3 Ballade No 4 Chopin Leslie Bridges Leslie Bridges Classical 7873506 492 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADE3.MP3 Ballade No 1 Chopin Leslie Bridges Leslie Bridges Classical 5966359 372 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADEN.MP3 Fur Elise Beethoven Leslie Bridges Leslie Bridges Classical 2237051 139 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/FURELISE.MP3 Macarena Los Del Rio & Bayside Boys N/A Latin 3694410 230 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LOSDELRI/UNKNOWNA/MACARENA.MP3 Bob & Juanita Maclean & Maclean The Dirty Thirty Comedy 1868259 116 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/BOBJUANI.MP3 Cocaine Hoe Down Maclean & Maclean The Dirty Thirty Comedy 822529 51 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/COCAINEH.MP3 Diary Of A Jealous Boyfriend Maclean & Maclean The Dirty Thirty Comedy 2792382 174 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DIARYOFA.MP3 Doggies Maclean & Maclean The Dirty Thirty Comedy 753557 47 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DOGGIES.MP3 Doggie Vom Maclean & Maclean The Dirty Thirty Comedy 1175698 73 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DOGGIEVO.MP3 Dolly Parton's Tits Maclean & Maclean The Dirty Thirty Comedy 1858234 116 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DOLLYPAR.MP3 Flipper Maclean & Maclean The Dirty Thirty Comedy 640847 40 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/FLIPPER.MP3 Flipper #2 Maclean & Maclean The Dirty Thirty Comedy 486484 30 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/FLIPPER2.MP3 Frankie Fontaine Maclean & Maclean The Dirty Thirty Comedy 2525016 157 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/FRANKIEF.MP3 I Married the Wrong Di Maclean & Maclean The Dirty Thirty Comedy 2078920 129 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/IMARRIED.MP3 I'm Just A Cunt About You Maclean & Maclean The Dirty Thirty Comedy 1868271 116 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/IMJUSTAC.MP3 Ken & Barbie Maclean & Maclean The Dirty Thirty Comedy 711070 44 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/KENBARBI.MP3 Long Distance Daddy Maclean & Maclean The Dirty Thirty Comedy 3568244 223 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/LONGDIST.MP3 Nosers Eh! Maclean & Maclean The Dirty Thirty Comedy 1508392 94 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/NOSERSEH.MP3 Oh Canada Maclean & Maclean The Dirty Thirty Comedy 1056161 66 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/OHCANADA.MP3 Ralph's Homo-Hatin' Half Ton Motors Maclean & Maclean The Dirty Thirty Comedy 1246776 77 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/RALPHSHO.MP3 Shit Maclean & Maclean The Dirty Thirty Comedy 4032582 252 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/SHIT.MP3 Shit-Face Beer Maclean & Maclean The Dirty Thirty Comedy 1529435 95 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/SHITFACE.MP3 Star Trek Maclean & Maclean The Dirty Thirty Comedy 1522603 95 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/STARTREK.MP3 The Arsehole Maclean & Maclean The Dirty Thirty Comedy 1238394 77 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEARSEH.MP3 The Audience Maclean & Maclean The Dirty Thirty Comedy 1227945 76 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEAUDIE.MP3 The Bing Buff Show Maclean & Maclean The Dirty Thirty Comedy 2629784 164 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEBINGB.MP3 The Champ Maclean & Maclean The Dirty Thirty Comedy 1716954 107 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THECHAMP.MP3 The Fox Maclean & Maclean The Dirty Thirty Comedy 1346222 84 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEFOX.MP3 The Little Red Hen Maclean & Maclean The Dirty Thirty Comedy 1055334 65 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THELITTL.MP3 The Lottery Maclean & Maclean The Dirty Thirty Comedy 1303595 81 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THELOTTE.MP3 Whoreofasorethroat Maclean & Maclean The Dirty Thirty Comedy 3637207 227 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/WHOREOFA.MP3 Willie & Wendy Maclean & Maclean The Dirty Thirty Comedy 2045615 127 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/WILLIEWE.MP3 You Set My Dick On Fire Maclean & Maclean The Dirty Thirty Comedy 3137751 196 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/YOUSETMY.MP3 3 AM Matchbox 20 Yourself or Someone Like You Rock 3632472 227 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/3AM.MP3 Argue Matchbox 20 Yourself or Someone Like You Rock 2842531 177 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/ARGUE.MP3 Back 2 Good Matchbox 20 Yourself or Someone Like You Rock 5441962 340 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/BACK2GOO.MP3 Busted Matchbox 20 Yourself or Someone Like You Rock 4114799 257 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/BUSTED.MP3 Damn Matchbox 20 Yourself or Someone Like You Rock 3201556 200 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/DAMN.MP3 Girl Like That Matchbox 20 Yourself or Someone Like You Rock 3599881 224 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/GIRLLIKE.MP3 Hang Matchbox 20 Yourself or Someone Like You Rock 3637906 227 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/HANG.MP3 Kody Matchbox 20 Yourself or Someone Like You Rock 3894672 243 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/KODY.MP3 Long Day Matchbox 20 Yourself or Someone Like You Rock 3609628 225 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/LONGDAY.MP3 Push Matchbox 20 Yourself or Someone Like You Rock 3818882 238 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/PUSH.MP3 Real World Matchbox 20 Yourself or Someone Like You Rock 3708965 231 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/REALWORL.MP3 Shame Matchbox 20 Yourself or Someone Like You Rock 3440212 215 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/SHAME.MP3 n/a Nazareth N/A Metal 3616539 226 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/NAZARETH/UNKNOWNA/NA.MP3 n/a Nazareth N/A Metal 3807964 237 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/NAZARETH/UNKNOWNA/NA2.MP3 Life is Life Opus N/A Rock 4048307 253 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/OPUS/UNKNOWNA/LIFEISLI.MP3 Barcelona Nights Ottmar Liebert Nouveau Flamenco Latin 3901649 243 1 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/OTTMARLI/NOUVEAUF/BARCELON.MP3 Heart Still Beating Ottmar Liebert Nouveau Flamenco Latin 3974784 248 2 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/OTTMARLI/NOUVEAUF/HEARTSTI.MP3 Yakety Yak The Coasters 1958-Rock & Roll Era Rock 1804314 112 7 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/THECOAST/1958ROCK/YAKETYYA.MP3 More Than This The Cure The X-Files: The Album Soundtrack 4974679 310 0 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/THECURE/THEXFILE/MORETHAN.MP3 Star Trekkin' The Firm N/A Comedy 3462463 216 0 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/THEFIRM/UNKNOWNA/STARTREK.MP3 Interlude Aphrodite Aphrodite Drum & Bass 2138854 133 1 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/01INTERL.MP3 Cross Channel Aphrodite Aphrodite Drum & Bass 5311584 331 2 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/02CROSSC.MP3 Spice (even spicier) Aphrodite Aphrodite Drum & Bass 6372093 398 3 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/03SPICEE.MP3 B.M. Funkster Aphrodite Aphrodite Drum & Bass 5664482 354 4 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/04BMFUNK.MP3 Interlude Aphrodite Aphrodite Drum & Bass 1417037 88 5 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/05INTERL.MP3 Rincing Quince (slider mix) Aphrodite Aphrodite Drum & Bass 7081655 442 6 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/06RINCIN.MP3 Style from the Dark Side '99 Aphrodite Aphrodite Drum & Bass 5485888 342 7 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/07STYLEF.MP3 Interlude Aphrodite Aphrodite Drum & Bass 1415924 88 8 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/08INTERL.MP3 Cool Fight Aphrodite Aphrodite Drum & Bass 4957152 309 9 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/09COOLFI.MP3 Stalker Aphrodite Aphrodite Drum & Bass 5298346 331 10 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/10STALKE.MP3 King of the Beats Aphrodite Aphrodite Drum & Bass 6384073 399 11 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/11KINGOF.MP3 Listen to the Rythmn [sic] Aphrodite Aphrodite Drum & Bass 5665751 354 12 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/12LISTEN.MP3 Music's Hynotising (re-charged) Aphrodite Aphrodite Drum & Bass 6728066 420 13 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/13MUSICS.MP3 Woman That Rolls Aphrodite Aphrodite Drum & Bass 5664765 354 14 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/14WOMANT.MP3 Summer Breeze Aphrodite Aphrodite Drum & Bass 5051198 315 15 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/15SUMMER.MP3 Can i be free from crying (underwolves mix) Bim Sherman Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 7292958 455 1 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/01BIMSHE.MP3 Listen to the way Minx Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 4793752 299 2 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/02MINX.MP3 Surreal Liftin' Spirits Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 4310357 269 3 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/03LIFTIN.MP3 Airsign Justice Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5723556 357 4 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/04JUSTIC.MP3 Friday Doc Format vs The kaleidoscope Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 7038207 439 5 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/05DOCFOR.MP3 Headnoddin King Kooba Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 3845402 240 6 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/06KINGKO.MP3 Secret Motion Rogue Unit Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 2613680 163 7 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/07ROGUEU.MP3 Contours Torus Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5248013 328 8 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/08TORUS.MP3 Babies Free4orm Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 6865150 429 9 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/09FREE4O.MP3 Dialogue Seeka feat. Ned Kelly Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 3808021 238 10 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/10SEEKAF.MP3 Dig so deep Grand Unified Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5852656 365 11 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/11GRANDU.MP3 Do right Eugenix Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5668536 354 12 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/12EUGENI.MP3 Dovima's Fantasy Parallax Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 7270582 454 13 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/13PARALL.MP3 Straight From The Heart Voyager Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 5776165 361 1 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/01VOYAGE.MP3 Tears Dazzle-T & Quicky Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 7641570 477 2 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/02DAZZLE.MP3 Perspective Torus Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 5425425 339 3 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/03TORUSP.MP3 The Right Way Future Bound Feat. Jay Hella Ruth Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 6404587 400 4 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/04FUTURE.MP3 how Me Hydraflow Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 6671289 416 5 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/05HYDRAF.MP3 Freeway Ed Solo Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 8518712 532 6 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/06EDSOLO.MP3 Give It To Me (limes mix) Non-Alains Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4057499 253 7 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/07NONALA.MP3 Logic Sub-Logics Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 5349634 334 8 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/08SUBLOG.MP3 Rhythm Factor In Deep Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4704973 294 9 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/09INDEEP.MP3 Sanctuary (original mix remastered) Omni Trio Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4527696 282 10 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/10OMNITR.MP3 Skankin In Deep Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4372686 273 11 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/11INDEEP.MP3 Sweet Sax Unison Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 6053897 378 12 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/12UNISON.MP3 Pressure Rmx John B DJ Hype: Mixmag Live Vol. 29 Drum & Bass 5743712 358 1 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/01JOHNBP.MP3 Tronik Funk Test DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3549071 221 2 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/02TESTTR.MP3 Terminal1 Ram Trilogy DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4817582 301 3 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/03RAMTRI.MP3 Rebels Splash Collective Vol 5 DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4466923 279 4 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/04SPLASH.MP3 Disappear DJ Hype and DJ Zinc DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4548510 284 5 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/05HYPEAN.MP3 Full Metal Jacket Undercover Agent DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4362679 272 6 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/06UNDERC.MP3 Stick Up Kid DJ A-Sides DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4707023 294 7 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/07DJASID.MP3 Bambaata 2012 Shy FX DJ Hype: Mixmag Live Vol. 29 Drum & Bass 2616645 163 8 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/08SHYFXB.MP3 Killa Bees Usual Suspects DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3318072 207 9 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/09USUALS.MP3 Clear Skies DJ Die DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3313965 207 10 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/10DJDIEC.MP3 The Nine Bad Company DJ Hype: Mixmag Live Vol. 29 Drum & Bass 5060417 316 11 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/11BADCOM.MP3 Challenge Dark Soldier DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4811798 300 12 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/12DARKSO.MP3 Submerge DJ Zinc DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3500704 218 13 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/13DJZINC.MP3 Dangerous DJ Brockie & Ed Solo DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4900767 306 14 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/14DJBROC.MP3 Fade 2 Black Souljah DJ Hype: Mixmag Live Vol. 29 Drum & Bass 5253373 328 15 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/15SOULJA.MP3 White on Black Frequency & DJ Zinc DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3662080 228 16 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/16FREQUE.MP3 Freedom Now (Meditation) Patterson Headz (cd1) Electronic 9719763 607 1 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/01FREEDO.MP3 Contemplating Jazz Attica Blues Headz (cd1) Electronic 6146768 384 2 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/02CONTEM.MP3 Symmetrical Jazz Awunsound Headz (cd1) Electronic 6061082 378 3 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/03SYMMET.MP3 Stars Nightmares On Wax Headz (cd1) Electronic 6055505 378 4 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/04STARS.MP3 Ravers Suck Our Sound LA Funk Mob Headz (cd1) Electronic 8067570 504 5 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/05RAVERS.MP3 Miles Out Of Time (Astrocentric Mix'n'Beats) M.F. Outa. National Headz (cd1) Electronic 7593636 474 6 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/06MILESO.MP3 The Inside RPM Headz (cd1) Electronic 5890403 368 7 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/07THEINS.MP3 Lowride Autechre Headz (cd1) Electronic 8340062 521 8 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/08LOWRID.MP3 Wildstyle (The Krush Handshake) Olde Scottish Headz (cd1) Electronic 11713019 732 9 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/09WILDST.MP3 Lost and Found (S.F.L.) DJ Shadow Headz (cd2) Electronic 7622862 476 1 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/01LOSTAN.MP3 Destroy all Monsters Skull Headz (cd2) Electronic 5527208 345 2 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/02DESTRO.MP3 ...Don't Fake it Deflon Sallahr Headz (cd2) Electronic 10053709 628 3 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/03DONTFA.MP3 2000 RPM Headz (cd2) Electronic 6955914 434 4 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/042000.MP3 Slipper Suite ((i) Jeremy's Velvet Slippers (ii) Moonraker (iii) Unspeakable Acts) Palmskin Productions Headz (cd2) Electronic 5099295 318 5 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/05SLIPPE.MP3 The Time Has Come (U.N.K.L.E. vs. The Major Force EMS Orchestra) U.N.K.L.E. Headz (cd2) Electronic 4855179 303 6 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/06THETIM.MP3 Head West - Gunfight at the O.K. Corrall Howie B. Headz (cd2) Electronic 6461788 403 7 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/07HEADWE.MP3 They Came in Peace Tranquility Bass Headz (cd2) Electronic 6915817 432 8 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/08THEYCA.MP3 In Flux (Alternative Interlude '93 Version) DJ Shadow Headz (cd2) Electronic 7725004 482 9 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/09INFLUX.MP3 Tied Up LFO Tied Up Electronic 5153504 322 1 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/01TIEDUP.MP3 Tied Up Electro LFO Tied Up Electronic 4382796 273 2 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/02TIEDUP.MP3 Tied Up (sweep mix) LFO Tied Up Electronic 5320282 332 3 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/03TIEDUP.MP3 Tied Up (acid mix) LFO Tied Up Electronic 4111125 256 4 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/04TIEDUP.MP3 Tied Up - Spiritualized "electric mainline mix" LFO Tied Up Electronic 8934959 558 5 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/05TIEDUP.MP3 System Sylence Rantoul Progression Sessions - Instrumental Version Drum & Bass 8952844 559 1 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/01RANTOU.MP3 A Way Of Life Big Bud Progression Sessions - Instrumental Version Drum & Bass 6442999 402 2 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/02BIGBUD.MP3 Soul 2000 Seba Progression Sessions - Instrumental Version Drum & Bass 6782431 423 3 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/03SEBA.MP3 View Of Life Moonchild Progression Sessions - Instrumental Version Drum & Bass 7179862 448 4 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/04MOONCH.MP3 The Ladder Rantoul Progression Sessions - Instrumental Version Drum & Bass 8606770 537 5 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/05RANTOU.MP3 Rhodes To Freedom LTJ Bukem Progression Sessions - Instrumental Version Drum & Bass 7798935 487 6 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/06LTJBUK.MP3 Butterfly Makoto Progression Sessions - Instrumental Version Drum & Bass 6147592 384 7 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/07MAKOTO.MP3 Too High Rantoul Progression Sessions - Instrumental Version Drum & Bass 6969205 435 8 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/08RANTOU.MP3 Sly Detector Psyne Progression Sessions - Instrumental Version Drum & Bass 8215282 513 9 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/09PSYNE.MP3 Darker Than Blue Big Bud Progression Sessions - Instrumental Version Drum & Bass 7280176 455 10 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/10BIGBUD.MP3 Skeleton Keys (Omni Trio Remix) Omni Trio Skeleton Keys Drum & Bass 6348119 396 1 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/01SKELET.MP3 Silver Omni Trio Skeleton Keys Drum & Bass 6144130 384 2 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/02SILVER.MP3 Fire Island Omni Trio Skeleton Keys Drum & Bass 5834149 364 3 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/03FIREIS.MP3 Ocean Driver Omni Trio Skeleton Keys Drum & Bass 6453006 403 4 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/04OCEAND.MP3 Sanctuary (remastered) Omni Trio Skeleton Keys Drum & Bass 6876410 429 5 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/05SANCTU.MP3 Atomic State Omni Trio Skeleton Keys Drum & Bass 6217418 388 6 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/06ATOMIC.MP3 Red Rain (E-Coli mix) Omni Trio Skeleton Keys Drum & Bass 6027952 376 7 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/07REDRAI.MP3 Twin Town Karaoke (Guardians of Dalliance Remix) Omni Trio Skeleton Keys Drum & Bass 6036338 377 8 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/08TWINTO.MP3 Trippin' V.I.P (remastered) Omni Trio Skeleton Keys Drum & Bass 6063903 378 9 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/09TRIPPI.MP3 Twin Town Karaoke (Original 12" Mix) Omni Trio Skeleton Keys Drum & Bass 6049007 378 10 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/10TWINTO.MP3 Sanctuary (Funky Technicians Remix) Omni Trio Skeleton Keys Drum & Bass 7259693 453 11 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/11SANCTU.MP3 The Seven Samurai (Photek Remix) Photek Form & Function Electronic 6717177 419 1 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/01THESEV.MP3 The Lightening (Digital Remix) Photek Form & Function Electronic 5601364 350 2 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/02THELIG.MP3 Rings Around Saturn (Peshay & Decoder Remix) Photek Form & Function Electronic 7721684 482 3 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/03RINGSA.MP3 The Margin '98 (Doc Scott Remix) Photek Form & Function Electronic 6637764 414 4 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/04THEMAR.MP3 Resolution (Photek Remix) Photek Form & Function Electronic 6395759 399 5 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/05RESOLU.MP3 UFO (J Majik Remix) Photek Form & Function Electronic 6005379 375 6 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/06UFOJMA.MP3 Knitevision Photek Form & Function Electronic 6403686 400 7 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/07KNITEV.MP3 Santiago Photek Form & Function Electronic 5911746 369 8 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/08SANTIA.MP3 The Seven Samurai Photek Form & Function Electronic 6582579 411 9 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/09THESEV.MP3 Rings Around Saturn Photek Form & Function Electronic 7114645 444 10 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/10RINGSA.MP3 The Water Margin Photek Form & Function Electronic 5278270 329 11 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/11THEWAT.MP3 UFO Photek Form & Function Electronic 6021666 376 12 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/12UFO.MP3 Children (full length dream version) Robert Miles Electronica - Disk 2 Electronic 7187144 449 1 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/01CHILDR.MP3 Earth Angel (William Orbit remix) Dreadzone Electronica - Disk 2 Electronic 3442582 215 8 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/08EARTHA.MP3 Valley Of The Shadows (original) Origin Unknown Electronica - Disk 2 Electronic 3506456 219 9 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/09VALLEY.MP3 Wilmot (short version) Sabres of Paradise Electronica - Disk 2 Electronic 4233822 264 11 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/11WILMOT.MP3 De Cara a la Pared Lhasa La Llorona Latin 4086932 255 1 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/01DECARA.MP3 La Celestine Lhasa La Llorona Latin 4604081 287 2 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/02LACELE.MP3 El Desierto Lhasa La Llorona Latin 3739183 233 3 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/03ELDESI.MP3 Por Eso Me Quedo Lhasa La Llorona Latin 3699900 231 4 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/04PORESO.MP3 El Payande Lhasa La Llorona Latin 3393112 212 5 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/05ELPAYA.MP3 Los Peces Lhasa La Llorona Latin 3709088 231 6 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/06LOSPEC.MP3 Floricanto Lhasa La Llorona Latin 4007093 250 7 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/07FLORIC.MP3 Desdenosa Lhasa La Llorona Latin 4386739 274 8 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/08DESDEN.MP3 El Pajaro Lhasa La Llorona Latin 3820265 238 9 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/09ELPAJA.MP3 Mi Vanidad Lhasa La Llorona Latin 4051399 253 10 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/10MIVANI.MP3 El Arbol Del Olvido Lhasa La Llorona Latin 3064329 191 11 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/11ELARBO.MP3 Are you really happy? - Intro Me Mom and Morgentaller Shiva Space Machine Ska 1037999 64 1 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/01AREYOU.MP3 Jacqueline Me Mom and Morgentaller Shiva Space Machine Ska 3937361 246 2 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/02JACQUE.MP3 Oh Well Me Mom and Morgentaller Shiva Space Machine Ska 2635556 164 3 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/03OHWELL.MP3 Everybody got AIDS Me Mom and Morgentaller Shiva Space Machine Ska 4179925 261 4 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/04EVERYB.MP3 I still love you Eve Me Mom and Morgentaller Shiva Space Machine Ska 3477616 217 5 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/05ISTILL.MP3 Angel's time Me Mom and Morgentaller Shiva Space Machine Ska 3028720 189 6 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/06ANGELS.MP3 Heloise Me Mom and Morgentaller Shiva Space Machine Ska 4364094 272 7 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/07HELOIS.MP3 My mother's friends Me Mom and Morgentaller Shiva Space Machine Ska 2195875 137 8 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/08MYMOTH.MP3 Anarchie Me Mom and Morgentaller Shiva Space Machine Ska 2976889 186 9 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/09ANARCH.MP3 Your Friend Me Mom and Morgentaller Shiva Space Machine Ska 3055053 190 10 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/10YOURFR.MP3 Pepita la pistolera Me Mom and Morgentaller Shiva Space Machine Ska 3678656 229 11 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/11PEPITA.MP3 Invasion of the corporate cockroaches from planet Widdley Me Mom and Morgentaller Shiva Space Machine Ska 1367798 85 12 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/12INVASI.MP3 No more nervous breakdown Me Mom and Morgentaller Shiva Space Machine Ska 4095507 255 13 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/13NOMORE.MP3 The ghost of Martin Sheen Me Mom and Morgentaller Shiva Space Machine Ska 1837274 114 14 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/14THEGHO.MP3 Open up for your demon Me Mom and Morgentaller Shiva Space Machine Ska 4043955 252 15 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/15OPENUP.MP3 Landlord Me Mom and Morgentaller Shiva Space Machine Ska 3835797 239 16 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/16LANDLO.MP3 Smells Like Teen Spirit Nirvana Nevermind Alternative 4819209 301 1 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/01SMELLS.MP3 In Bloom Nirvana Nevermind Alternative 4078710 254 2 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/02INBLOO.MP3 Come As You Are Nirvana Nevermind Alternative 3506392 219 3 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/03COMEAS.MP3 Breed Nirvana Nevermind Alternative 2941301 183 4 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/04BREED.MP3 Lithium Nirvana Nevermind Alternative 4113260 257 5 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/05LITHIU.MP3 Polly Nirvana Nevermind Alternative 2831518 176 6 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/06POLLY.MP3 Territorial Pissings Nirvana Nevermind Alternative 2291390 143 7 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/07TERRIT.MP3 Drain You Nirvana Nevermind Alternative 3582872 223 8 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/08DRAINY.MP3 Lounge Act Nirvana Nevermind Alternative 2509554 156 9 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/09LOUNGE.MP3 Stay Away Nirvana Nevermind Alternative 3400644 212 10 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/10STAYAW.MP3 On A Plain Nirvana Nevermind Alternative 3143600 196 11 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/11ONAPLA.MP3 Testify Rage Against The Machine The Battle of Los Angeles Alternative 3366122 210 1 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/01TESTIF.MP3 Guerrilla Radio Rage Against The Machine The Battle of Los Angeles Alternative 3298281 206 2 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/02GUERRI.MP3 Calm Like A Bomb Rage Against The Machine The Battle of Los Angeles Alternative 4783708 298 3 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/03CALMLI.MP3 Mic Ckeck Rage Against The Machine The Battle of Los Angeles Alternative 3420041 213 4 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/04MICCKE.MP3 Sleep Now In the Fire Rage Against The Machine The Battle of Los Angeles Alternative 3292018 205 5 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/05SLEEPN.MP3 Born of Broken Man Rage Against The Machine The Battle of Los Angeles Alternative 4496572 281 6 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/06BORNOF.MP3 Born as Ghost Rage Against The Machine The Battle of Los Angeles Alternative 3234331 202 7 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/07BORNAS.MP3 Maria Rage Against The Machine The Battle of Los Angeles Alternative 3650192 228 8 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/08MARIA.MP3 Voice of the Voiceless Rage Against The Machine The Battle of Los Angeles Alternative 2425172 151 9 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/09VOICEO.MP3 New Millennium Homes Rage Against The Machine The Battle of Los Angeles Alternative 3597965 224 10 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/10NEWMIL.MP3 Ashes in the Fall Rage Against The Machine The Battle of Los Angeles Alternative 4431095 276 11 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/11ASHESI.MP3 War Within the Breath Rage Against The Machine The Battle of Los Angeles Alternative 3470628 216 12 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/12WARWIT.MP3 Impossible Roller Starter Roller Starter - Demo CD Ska 3047900 190 1 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/01IMPOSS.MP3 So Called Friend Roller Starter Roller Starter - Demo CD Ska 3299519 206 2 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/02SOCALL.MP3 Another Asswipe Roller Starter Roller Starter - Demo CD Ska 3382692 211 3 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/03ANOTHE.MP3 It Falls On You Roller Starter Roller Starter - Demo CD Ska 2489095 155 4 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/04ITFALL.MP3 Hopeless Roller Starter Roller Starter - Demo CD Ska 2746969 171 5 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/05HOPELE.MP3 Rotodizer Roller Starter Roller Starter - Demo CD Ska 2270079 141 6 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/06ROTODI.MP3 Tits Of Steel Roller Starter Roller Starter - Demo CD Ska 2615457 163 7 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/07TITSOF.MP3 Vader Roller Starter Roller Starter - Demo CD Ska 1933618 120 8 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/08VADER.MP3 Ice Cream Roller Starter Roller Starter - Demo CD Ska 2085481 130 9 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/09ICECRE.MP3 Just A rat Roller Starter Roller Starter - Demo CD Ska 2739032 171 10 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/10JUSTAR.MP3 Starting To Roll Roller Starter Roller Starter - Demo CD Ska 2595818 162 11 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/11STARTI.MP3 vince_cdnnot.mp3 N/A N/A Comedy 602219 100 0 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 48 44100 MPEG AUDIO FILE MP3011/VARIOUSA/VINCECDN.MP3 Mother Goldie Saturnz Return - Disc 1 - Mother Electronic 57857317 3616 1 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZ1/01MOTHER.MP3 Truth Goldie Saturnz Return - Disc 1 - Mother Electronic 6008666 375 2 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZ1/02TRUTH.MP3 Untitled Goldie Saturnz Return - Disc 1 - Mother Electronic 8276515 517 3 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZ1/03UNTITL.MP3 Temper Temper Goldie Saturnz Return - Disk 2 - Saturn Electronic 5027770 314 1 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/01TEMPER.MP3 Digital Goldie Saturnz Return - Disk 2 - Saturn Electronic 5645090 352 2 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/02DIGITA.MP3 I'll Be There For You Goldie Saturnz Return - Disk 2 - Saturn Electronic 6683314 417 3 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/03ILLBET.MP3 Believe Goldie Saturnz Return - Disk 2 - Saturn Electronic 6873193 429 4 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/04BELIEV.MP3 Dragonfly Goldie Saturnz Return - Disk 2 - Saturn Electronic 15426586 964 5 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/05DRAGON.MP3 Chico - Death of a Rock Star Goldie Saturnz Return - Disk 2 - Saturn Electronic 6954994 434 6 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/06CHICOD.MP3 Letter Of Fate Goldie Saturnz Return - Disk 2 - Saturn Electronic 7590000 474 7 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/07LETTER.MP3 Fury - The Origin Goldie Saturnz Return - Disk 2 - Saturn Electronic 6242781 390 8 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/08FURYTH.MP3 Crystal Clear Goldie Saturnz Return - Disk 2 - Saturn Electronic 6621030 413 9 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/09CRYSTA.MP3 Demonz Goldie Saturnz Return - Disk 2 - Saturn Electronic 5250677 328 10 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/10DEMONZ.MP3 Plateau The Orb live '93 (disc one) Ambient 11355350 709 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/101PLAT.MP3 Oobe The Orb live '93 (disc one) Ambient 11435598 714 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/102OOBE.MP3 Little Fluffy Clouds The Orb live '93 (disc one) Ambient 10549944 659 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/103LITT.MP3 Star 6 & 7 8 9 The Orb live '93 (disc one) Ambient 9477059 592 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/104STAR.MP3 Towers of Dub The Orb live '93 (disc one) Ambient 11957621 747 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/105TOWE.MP3 Blue Room The Orb live '93 (disc one) Ambient 14378764 898 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/106BLUE.MP3 valley The Orb live '93 (disc two) Ambient 9663892 603 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/201VALL.MP3 perpetual dawn The Orb live '93 (disc two) Ambient 8620555 538 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/202PERP.MP3 assassin The Orb live '93 (disc two) Ambient 11338228 708 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/203ASSA.MP3 outlands The Orb live '93 (disc two) Ambient 8687541 542 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/204OUTL.MP3 spanish castles in space The Orb live '93 (disc two) Ambient 10027097 626 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/205SPAN.MP3 A Huge Pulsating Brain The Rules From... The Orb live '93 (disc two) Ambient 18127948 1132 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/206AHUG.MP3 Intergalactic (Fatboy Slim remix) Beastie Boys N/A Hip-Hop 5549196 346 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/BEASTIEB/INTERGAL.MP3 Hunter - Live Bjork Hunter(UK Single) Avantgarde 4297584 268 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/BJORK/HUNTERL.MP3 Hunter - Mood Swing Remix Bjork Hunter(UK Single) Avantgarde 2915811 182 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/BJORK/HUNTERR.MP3 Eskimo Corky and the Juice Pigs Live (Mad TV) Comedy 1483208 185 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 64 48000 MPEG AUDIO FILE MP3010/VARIOUSA/CORKYJP.MP3 Poison Prodigy This is TECHNO (Disc one) Electronic 3859716 241 1 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/01PRODIG.MP3 Higher State Of Consciousness Josh Wink This is TECHNO (Disc one) Electronic 8271716 516 2 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/02JOSHWI.MP3 2 Paintings And A Drum Carl Cox This is TECHNO (Disc one) Electronic 3524112 220 3 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/03CARLCO.MP3 Stormwatch Morph This is TECHNO (Disc one) Electronic 7618283 476 4 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/04MORPH.MP3 Tour De Force This is TECHNO (Disc one) Electronic 4046542 252 5 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/05DEFORC.MP3 Harlequin (The Beauty & The Beast) Sven Vath This is TECHNO (Disc one) Electronic 9616155 601 6 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/06SVENVA.MP3 Spastik Plastikman This is TECHNO (Disc one) Electronic 8956172 559 7 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/07PLASTI.MP3 Cuban Timewarp Neuropolitique This is TECHNO (Disc one) Electronic 7758452 484 8 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/08NEUROP.MP3 Time Mark Broom This is TECHNO (Disc one) Electronic 6384189 399 9 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/09MARKBR.MP3 LFO LFO This is TECHNO (Disc one) Electronic 5096730 318 10 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/10LFO.MP3 Below & Above Trio This is TECHNO (Disc one) Electronic 2937982 183 11 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/11TRIO.MP3 Above Your Eyes Scanner This is TECHNO (Disc one) Electronic 3837435 239 12 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/12SCANNE.MP3 Open Up Leftfield This is TECHNO (Disc Two) Electronic 3627194 226 1 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/01LEFTFI.MP3 Boss Drum The Shamen This is TECHNO (Disc Two) Electronic 5785259 361 2 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/02THESHA.MP3 Dark & Long (Dark Train Mix) Underworld This is TECHNO (Disc Two) Electronic 9635794 602 3 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/03UNDERW.MP3 We No Longer Understand As One This is TECHNO (Disc Two) Electronic 3804003 237 4 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/04ASONE.MP3 Dreamland Carl Craig This is TECHNO (Disc Two) Electronic 7780873 486 5 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/05CARLCR.MP3 Go Moby This is TECHNO (Disc Two) Electronic 6296828 393 6 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/06MOBY.MP3 Little Fluffy Clouds The Orb This is TECHNO (Disc Two) Electronic 8796940 549 7 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/07THEORB.MP3 Digeridoo Aphex Twin This is TECHNO (Disc Two) Electronic 6891037 430 8 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/08APHEXT.MP3 Airbourne (Carl Craig's Drums Suck Mix) Dave Angel This is TECHNO (Disc Two) Electronic 11202455 700 9 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/09DAVEAN.MP3 Progression Mantra This is TECHNO (Disc Two) Electronic 3600447 225 10 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/10MANTRA.MP3 Hypnotic State Fantasy Flight This is TECHNO (Disc Two) Electronic 2773457 173 11 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/11FANTAS.MP3 Collision Eclipse This is TECHNO (Disc Two) Electronic 2195826 137 12 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/12ECLIPS.MP3 Take My Breath Away Berlin Count Three and Pray Pop 4033715 252 0 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/BERLIN/COUNTTHR/TAKEMYBR.MP3 Europa Carlos Santana N/A Rock 3233698 202 0 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/CARLOSSA/UNKNOWNA/EUROPA.MP3 n/a Carlos Santana N/A Rock 6904629 431 0 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/CARLOSSA/UNKNOWNA/NA.MP3 The Ballad Of Peter Pumpkinhead Crash Test Dummies Dumb And Dumber Soundtrack 3598216 224 1 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/DUMBANDD/THEBALLA.MP3 Afternoons & Coffeespoons Crash Test Dummies God Shuffled His Feet Rock 3784638 236 2 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/GODSHUFF/AFTERNOO.MP3 God Shuffled His Feet Crash Test Dummies God Shuffled His Feet Rock 4955839 309 1 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/GODSHUFF/GODSHUFF.MP3 In The Days Of The Caveman Crash Test Dummies God Shuffled His Feet Rock 3558941 222 4 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/GODSHUFF/INTHEDAY.MP3 Benny The Bouncer Emerson, Lake & Palmer Brain Salad Surgery Rock 2212262 138 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/BENNYTHE.MP3 Jerusalem Emerson, Lake & Palmer Brain Salad Surgery Rock 2626870 164 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/JERUSALE.MP3 Karn Evil 9-2nd Impression Emerson, Lake & Palmer Brain Salad Surgery Rock 6839521 427 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/KARNEVI1.MP3 Karn Evil 9-3rd Impression Emerson, Lake & Palmer Brain Salad Surgery Rock 8694233 543 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/KARNEVI2.MP3 Karn Evil 9-1st Impression Pt1 Emerson, Lake & Palmer Brain Salad Surgery Rock 8360592 522 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/KARNEVIL.MP3 Still....You Turn Me On Emerson, Lake & Palmer Brain Salad Surgery Rock 2750600 171 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/STILLYOU.MP3 Toccata Emerson, Lake & Palmer Brain Salad Surgery Rock 7047202 440 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/TOCCATA.MP3 Help me Dr.Dick E-Rotic The power of sex Dance 3579248 223 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 22050 MPEG AUDIO FILE MP3022/EROTIC/THEPOWER/HELPMEDR.MP3 Max Don't Have Sex With YourEx E-Rotic The power of sex Dance 3349234 209 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/EROTIC/THEPOWER/MAXDONTH.MP3 Geek Stink Breath Green Day Insomniac Grunge 2155396 134 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/GREENDAY/INSOMNIA/GEEKSTIN.MP3 Celebrity Skin Hole Celebrity Skin Grunge 2596887 162 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/HOLE/CELEBRIT/CELEBRIT.MP3 Sex & Candy Marcy Playground N/A Rock 2776887 173 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/MARCYPLA/UNKNOWNA/SEXCANDY.MP3 Pretty Fly Offspring Americana Grunge 3018892 188 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/OFFSPRIN/AMERICAN/PRETTYFL.MP3 Why Don't You Get A Job? Offspring Americana Grunge 2747373 171 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/OFFSPRIN/AMERICAN/WHYDONTY.MP3 Self esteem Offspring N/A Grunge 4124508 257 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/OFFSPRIN/UNKNOWNA/SELFESTE.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 35370219 2210 3 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID1.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 23220151 1451 5 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID2.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 21865546 1366 6 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID3.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 28467626 1779 7 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID4.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 23849597 1490 8 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID5.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 28829160 1801 1 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID6.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 27653164 1728 2 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRIDG.MP3 Lecture4-Ain'tSoBlack Stephen William Hawking The Cambridge Lectures Vocal 33076463 2067 4 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/LECTURE4.MP3 Closing Steve Martin Let's Get Small Comedy 992629 124 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/CLOSING.MP3 Excuse Me Steve Martin Let's Get Small Comedy 1462836 182 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/EXCUSEME.MP3 Funny Comedy Gags Steve Martin Let's Get Small Comedy 1492730 186 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/FUNNYCOM.MP3 Grandmother's Song Steve Martin Let's Get Small Comedy 1725256 215 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/GRANDMOT.MP3 Let's Get Small Steve Martin Let's Get Small Comedy 7490036 936 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/LETSGETS.MP3 Mad at My Mother Steve Martin Let's Get Small Comedy 436931 54 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/MADATMYM.MP3 One Way to Leave Your Lover Steve Martin Let's Get Small Comedy 750234 93 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/ONEWAYTO.MP3 Ramblin' Man-Theme from Rambli Steve Martin Let's Get Small Comedy 1077708 134 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/RAMBLINM.MP3 Smoking Steve Martin Let's Get Small Comedy 1046687 130 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/SMOKING.MP3 Vegas Steve Martin Let's Get Small Comedy 1832937 229 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/VEGAS.MP3 Around The World in 80 Days The Goons The Goons Show Comedy 13087232 1635 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 22050 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/AROUNDTH.MP3 At Last The Go On Show - 27 May 1991 The Goons The Goons Show Comedy 33030399 4128 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 22050 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/ATLASTTH.MP3 Drums Along The Mersey The Goons The Goons Show Comedy 14030197 1753 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 44100 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/DRUMSALO.MP3 n/a The Goons The Goons Show Comedy 15715983 1964 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 24000 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/NA.MP3 The Mummified Priest The Goons The Goons Show Comedy 14708962 1838 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 44100 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/THEMUMMI.MP3 Ye Bandit of Sherwood Forest The Goons The Goons Show Comedy 12521105 1565 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 22050 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/YEBANDIT.MP3 tuesday afternoon The Moody Blues Days of Future Passed Rock 8057414 503 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/DAYSOFFU/TUESDAYA.MP3 Are You Sitting Comfortably The Moody Blues On the Threshold of a Dream Rock 3362079 210 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/AREYOUSI.MP3 Dear Diary The Moody Blues On the Threshold of a Dream Rock 3784618 236 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/DEARDIAR.MP3 Have You Heard - Part 2 The Moody Blues On the Threshold of a Dream Rock 2447580 152 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/HAVEYOU1.MP3 Have You Heard - Part 1 The Moody Blues On the Threshold of a Dream Rock 1605615 100 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/HAVEYOUH.MP3 In the Beginning The Moody Blues On the Threshold of a Dream Rock 2063229 128 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/INTHEBEG.MP3 Lazy Day The Moody Blues On the Threshold of a Dream Rock 2614331 163 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/LAZYDAY.MP3 Lovely to See You The Moody Blues On the Threshold of a Dream Rock 2470144 154 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/LOVELYTO.MP3 Never Comes the Day The Moody Blues On the Threshold of a Dream Rock 4538625 283 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/NEVERCOM.MP3 Send Me No Wine The Moody Blues On the Threshold of a Dream Rock 2238733 139 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/SENDMENO.MP3 So Deep Within You The Moody Blues On the Threshold of a Dream Rock 2910900 181 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/SODEEPWI.MP3 The Dream The Moody Blues On the Threshold of a Dream Rock 929539 58 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/THEDREAM.MP3 The Voyage The Moody Blues On the Threshold of a Dream Rock 3821923 238 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/THEVOYAG.MP3 To Share Our Love The Moody Blues On the Threshold of a Dream Rock 2794480 174 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/TOSHAREO.MP3 for my lady The Moody Blues Seventh Sojourn Rock 3800908 237 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/FORMYLAD.MP3 i'm just a singer The Moody Blues Seventh Sojourn Rock 4194213 262 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/IMJUSTAS.MP3 isn't life strange The Moody Blues Seventh Sojourn Rock 5763790 360 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/ISNTLIFE.MP3 lost in a lost world The Moody Blues Seventh Sojourn Rock 4564250 285 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/LOSTINAL.MP3 new horizons The Moody Blues Seventh Sojourn Rock 4963810 310 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/NEWHORIZ.MP3 the land of make-believe The Moody Blues Seventh Sojourn Rock 4663170 291 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/THELANDO.MP3 when you're a free man The Moody Blues Seventh Sojourn Rock 5842230 365 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/WHENYOUR.MP3 you and me The Moody Blues Seventh Sojourn Rock 4152410 259 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/YOUANDME.MP3 Bagged Me A Homer The Simpsons Songs In The Key Of Springfiel Comedy 2218673 138 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/BAGGEDME.MP3 Homer's Barbershop Quartet The Simpsons Songs In The Key Of Springfiel Comedy 1562904 97 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/HOMERSBA.MP3 Honey Roasted Peanuts The Simpsons Songs In The Key Of Springfiel Comedy 986950 61 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/HONEYROA.MP3 TV Sucks! The Simpsons Songs In The Key Of Springfiel Comedy 557138 34 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/TVSUCKS.MP3 Won't Get Fooled Again The Who Who's Next Pop 8195048 512 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEWHO/WHOSNEXT/WONTGETF.MP3 n/a N/A N/A Comedy 1955554 244 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 64 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA.MP3 n/a N/A N/A Comedy 2904334 181 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA10.MP3 n/a N/A N/A Comedy 4760488 297 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA11.MP3 n/a N/A N/A Comedy 3151347 196 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA12.MP3 n/a N/A N/A Comedy 2564533 160 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA13.MP3 n/a N/A N/A Comedy 4423615 276 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA2.MP3 n/a N/A N/A Comedy 4177994 261 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA3.MP3 n/a N/A N/A Comedy 4381958 273 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA4.MP3 n/a N/A N/A Comedy 5491918 343 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA5.MP3 n/a N/A N/A Comedy 2801098 175 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA6.MP3 n/a N/A N/A Comedy 2688667 168 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA7.MP3 n/a N/A N/A Comedy 3803781 237 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA8.MP3 n/a N/A N/A Comedy 5347026 334 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA9.MP3 Usage of Fuck N/A N/A Comedy 1200655 150 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 64 22050 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/USAGEOFF.MP3 Gypsy Uriah Heep A Time Of Revelation - Disc 1 Pop 6382783 398 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/URIAHHEE/ATIMEOF1/GYPSY.MP3 The Wizard Uriah Heep A Time Of Revelation - Disc 2 Pop 2875136 179 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/URIAHHEE/ATIMEOFR/THEWIZAR.MP3 Sweet Freedom Uriah Heep Sweet Freedom Pop 6351288 396 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/URIAHHEE/SWEETFRE/SWEETFRE.MP3 Volcano Girls Veruca Salt Eight Arms to Hold You Rock 3182751 198 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/VERUCASA/EIGHTARM/VOLCANOG.MP3 YMCA Village People Cruisin' Pop 4615512 288 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/VILLAGEP/CRUISIN/YMCA.MP3 Amish Paradise Weird Al Yankovic N/A Comedy 3206124 200 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/WEIRDALY/UNKNOWNA/AMISHPAR.MP3 Night Club Years 1964-68 Woody Allen Night Club Years Comedy 12430955 1553 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 64 22050 MPEG AUDIO FILE MP3022/WOODYALL/NIGHTCLU/NIGHTCLU.MP3 Devorzhum DeadCanDance N/A Alternative 5980526 373 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEADCAND/UNKNOWNA/DEVORZHU.MP3 Barrel Of A Gun (Single Version) Depeche Mode Barrel Of A Gun - Single Alternative 5286467 330 1 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/01BARREL.MP3 Painkiller Plastikman Barrel Of A Gun - Single Alternative 8322516 520 2 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/02PAINKI.MP3 Barrel Of A Gun (Soft Mix) Underworld Barrel Of A Gun - Single Alternative 6238165 389 3 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/03BARREL.MP3 Barrel Of A Gun One Inch Punch Barrel Of A Gun - Single Alternative 5289397 330 4 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/04BARREL.MP3 Barrel Of A Gun (Hard Mix) Underworld Barrel Of A Gun - Single Alternative 9232005 577 5 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/05BARREL.MP3 Never Let Me Down Again Depeche Mode Music for the Masses Alternative 4602319 287 1 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/01NEVERL.MP3 The Things You Said Depeche Mode Music for the Masses Alternative 3886769 242 2 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/02THETHI.MP3 Strangelove Depeche Mode Music for the Masses Alternative 4726581 295 3 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/03STRANG.MP3 Sacred Depeche Mode Music for the Masses Alternative 4625290 289 4 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/04SACRED.MP3 Little 15 Depeche Mode Music for the Masses Alternative 4143804 258 5 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/05LITTLE.MP3 Behind The Wheel Depeche Mode Music for the Masses Alternative 5090070 318 6 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/06BEHIND.MP3 I Want You Now Depeche Mode Music for the Masses Alternative 3590849 224 7 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/07IWANTY.MP3 To Have And To Hold Depeche Mode Music for the Masses Alternative 2747831 171 8 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/08TOHAVE.MP3 Nothing Depeche Mode Music for the Masses Alternative 4132935 258 9 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/09NOTHIN.MP3 Pimpf Depeche Mode Music for the Masses Alternative 5206394 325 10 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/10PIMPF.MP3 Agent Orange Depeche Mode Music for the Masses Alternative 4882900 305 11 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/11AGENTO.MP3 Never Let Me Down Again (Aggro Mix) Depeche Mode Music for the Masses Alternative 4764501 297 12 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/12NEVERL.MP3 To Have And To Hold (Spanish Taster) Depeche Mode Music for the Masses Alternative 2502926 156 13 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/13TOHAVE.MP3 Pleasure, Little Treasure Depeche Mode Music for the Masses Alternative 5371507 335 14 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/14PLEASU.MP3 People Are People Depeche Mode People Are People Alternative 3643892 227 1 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/01PEOPLE.MP3 Now This Is Fun Depeche Mode People Are People Alternative 3301582 206 2 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/02NOWTHI.MP3 Love In Itself Depeche Mode People Are People Alternative 4257453 266 3 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/03LOVEIN.MP3 Work Hard Depeche Mode People Are People Alternative 4241983 265 4 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/04WORKHA.MP3 Told You So Depeche Mode People Are People Alternative 4270407 266 5 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/05TOLDYO.MP3 Get The Balance Right Depeche Mode People Are People Alternative 3142345 196 6 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/06GETTHE.MP3 Leave In Silence Depeche Mode People Are People Alternative 3892159 243 7 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/07LEAVEI.MP3 Pipeline Depeche Mode People Are People Alternative 5967457 372 8 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/08PIPELI.MP3 Everything Counts Depeche Mode People Are People Alternative 7030196 439 9 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/09EVERYT.MP3 I Feel You Depeche Mode Songs Of Faith And Devotion Alternative 4405426 275 1 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/01IFEELY.MP3 Walking In My Shoes Depeche Mode Songs Of Faith And Devotion Alternative 5363397 335 2 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/02WALKIN.MP3 Condemnation Depeche Mode Songs Of Faith And Devotion Alternative 3207558 200 3 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/03CONDEM.MP3 Mercy In You Depeche Mode Songs Of Faith And Devotion Alternative 4124700 257 4 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/04MERCYI.MP3 Judas Depeche Mode Songs Of Faith And Devotion Alternative 5031106 314 5 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/05JUDAS.MP3 In Your Room Depeche Mode Songs Of Faith And Devotion Alternative 6189835 386 6 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/06INYOUR.MP3 Get Right With Me Depeche Mode Songs Of Faith And Devotion Alternative 3726390 232 7 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/07GETRIG.MP3 Rush Depeche Mode Songs Of Faith And Devotion Alternative 4442201 277 8 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/08RUSH.MP3 One Caress Depeche Mode Songs Of Faith And Devotion Alternative 3406922 212 9 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/09ONECAR.MP3 Higher Love Depeche Mode Songs Of Faith And Devotion Alternative 5732867 358 10 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/10HIGHER.MP3 Barrel Of A Gun Depeche Mode Ultra Alternative 5369238 335 1 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/01BARREL.MP3 The Love Thieves Depeche Mode Ultra Alternative 6307975 394 2 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/02THELOV.MP3 Home Depeche Mode Ultra Alternative 5487509 342 3 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/03HOME.MP3 It's No Good Depeche Mode Ultra Alternative 5735367 358 4 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/04ITSNOG.MP3 Uselink Depeche Mode Ultra Alternative 2262123 141 5 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/05USELIN.MP3 Useless Depeche Mode Ultra Alternative 4995574 312 6 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/06USELES.MP3 Sister Of Night Depeche Mode Ultra Alternative 5833590 364 7 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/07SISTER.MP3 Jazz Thieves Depeche Mode Ultra Alternative 2798787 174 8 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/08JAZZTH.MP3 Freestate Depeche Mode Ultra Alternative 6464702 404 9 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/09FREEST.MP3 The Bottom Line Depeche Mode Ultra Alternative 4272097 267 10 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/10THEBOT.MP3 Insight Depeche Mode Ultra Alternative 6186481 386 11 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/11INSIGH.MP3 Junior Painkiller Depeche Mode Ultra Alternative 303719 18 12 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/12JUNIOR.MP3 Never let me down again Smashing Pumpkins Various artists for the MASSES Alternative 3862979 241 1 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/01SMASHI.MP3 Fly on the windscreen God Lives Underwater Various artists for the MASSES Alternative 5168683 323 2 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/02GODLIV.MP3 Enjoy the silence Failure Various artists for the MASSES Alternative 4168073 260 3 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/03FAILUR.MP3 The world in my eyes The Cure Various artists for the MASSES Alternative 4669627 291 4 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/04THECUR.MP3 Policy of truth Dishwalla Various artists for the MASSES Alternative 3613859 225 5 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/05DISHWA.MP3 Somebody Veruca Salt Various artists for the MASSES Alternative 3931643 245 6 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/06VERUCA.MP3 Everything counts Meat Beat Manifesto Various artists for the MASSES Alternative 5185815 324 7 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/07MEATBE.MP3 Shake the disease Hooverphonic Various artists for the MASSES Alternative 3828277 239 8 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/08HOOVER.MP3 Master and servant Locust Various artists for the MASSES Alternative 3530685 220 9 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/09LOCUST.MP3 Shame Self Various artists for the MASSES Alternative 4037656 252 10 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/10SELF.MP3 Black celebration Monster Magnet Various artists for the MASSES Alternative 4106364 256 11 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/11MONSTE.MP3 Waiting for the night Rabbit in the Moon Various artists for the MASSES Alternative 7269903 454 12 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/12WAITIN.MP3 I feel you Apollo Four Forty Various artists for the MASSES Alternative 5147356 321 13 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/13IFEELY.MP3 Monument Gus Gus Various artists for the MASSES Alternative 5143304 321 14 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/14MONUME.MP3 To have and to hold Deftones Various artists for the MASSES Alternative 2774602 173 15 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/15TOHAVE.MP3 Stripped Rammstein Various artists for the MASSES Alternative 4552590 284 16 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/16STRIPP.MP3 WORLD IN MY EYES Depeche Mode VIOLATOR Alternative 4272075 267 1 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/01WORLDI.MP3 SWEETEST PERFECTION Depeche Mode VIOLATOR Alternative 4543334 283 2 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/02SWEETE.MP3 PERSONAL JESUS Depeche Mode VIOLATOR Alternative 4735730 295 3 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/03PERSON.MP3 HALO Depeche Mode VIOLATOR Alternative 4322358 270 4 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/04HALO.MP3 WAITING FOR THE NIGHT Depeche Mode VIOLATOR Alternative 5877183 367 5 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/05WAITIN.MP3 ENJOY THE SILENCE Depeche Mode VIOLATOR Alternative 5964532 372 6 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/06ENJOYT.MP3 POLICY OF TRUTH Depeche Mode VIOLATOR Alternative 4725978 295 7 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/07POLICY.MP3 BLUE DRESS Depeche Mode VIOLATOR Alternative 5435808 339 8 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/08BLUEDR.MP3 CLEAN Depeche Mode VIOLATOR Alternative 5305259 331 9 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/09CLEAN.MP3 World In My Eyes Single Version Depeche Mode World In My Eyes Alternative 3844235 240 1 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/01WORLDI.MP3 World In My Eyes Oil Tank World In My Eyes Alternative 7206574 450 2 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/02WORLDI.MP3 Happiest Girl Orbital World In My Eyes Alternative 6216435 388 3 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/03HAPPIE.MP3 Sea Of Sin Tonal World In My Eyes Alternative 4557540 284 4 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/04SEAOFS.MP3 World In My Eyes Mode To Joy World In My Eyes Alternative 6278429 392 5 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/05WORLDI.MP3 Happiest Girl Jack World In My Eyes Alternative 4778225 298 6 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/06HAPPIE.MP3 Sea Of Sin Sensoria World In My Eyes Alternative 5869657 366 7 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/07SEAOFS.MP3 Je T'Aimais, Je T'Aime Et Je T Francis Cabrel 77-87 Rock 4452225 278 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/JETAIMAI.MP3 Je T'Aime A Mourir Francis Cabrel 77-87 Rock 2640638 165 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/JETAIMEA.MP3 Je te suivrai Francis Cabrel 77-87 Rock 3984940 249 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/JETESUIV.MP3 Petite Marie Francis Cabrel 77-87 Rock 3319967 207 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/PETITEMA.MP3 L'Arbre Va Tomber Francis Cabrel N/A Rock 5300099 331 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/UNKNOWNA/LARBREVA.MP3 Expander Future Sound Of London Accelerator Ambient 5437357 339 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FUTURESO/ACCELERA/EXPANDER.MP3 My Kingdom Future Sound Of London Dead Cities Ambient 5536693 346 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FUTURESO/DEADCITI/MYKINGDO.MP3 Demention Hallucinogen The Lone Deranger Electronic 6997862 437 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/HALLUCIN/THELONED/DEMENTIO.MP3 Dadamnphreaknoizph Hardfloor DJ Kicks: Kruder & Dorfmeister Electronic 5200319 325 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/DJKICKSK/DADAMNPH.MP3 Spook & Spell Hardfloor Ghost in the Shell Soundtrack Electronic 5650793 353 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/GHOSTINT/SPOOKSPE.MP3 Acid Techno Mix Hardfloor N/A Electronic 4752147 297 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/UNKNOWNA/ACIDTECH.MP3 Vicious Games Hardfloor N/A Electronic 3943623 246 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/UNKNOWNA/VICIOUSG.MP3 Deeper Underground Jamiroquai Godzilla SoundTrack Soundtrack 4515742 282 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/JAMIROQU/GODZILLA/DEEPERUN.MP3 Children of the Night Juno Reactor Bible of Dreams Electronic 7638754 477 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/JUNOREAC/BIBLEOFD/CHILDREN.MP3 Planet of the Shapes Orbital Orbital 2 Ambient 9218296 576 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/ORBITAL/ORBITAL2/PLANETOF.MP3 Cherub Rock Smashing Pumpkins Siamese Dream Alternative 4769621 298 1 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/01CHERUB.MP3 Quiet Smashing Pumpkins Siamese Dream Alternative 3552379 222 2 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/02QUIET.MP3 Today Smashing Pumpkins Siamese Dream Alternative 3200040 200 3 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/03TODAY.MP3 Hummer Smashing Pumpkins Siamese Dream Alternative 6674952 417 4 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/04HUMMER.MP3 Rocket Smashing Pumpkins Siamese Dream Alternative 3949999 246 5 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/05ROCKET.MP3 Disarm Smashing Pumpkins Siamese Dream Alternative 3155041 197 6 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/06DISARM.MP3 Soma Smashing Pumpkins Siamese Dream Alternative 6399933 399 7 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/07SOMA.MP3 Geek U.S.A. Smashing Pumpkins Siamese Dream Alternative 5023183 313 8 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/08GEEKUS.MP3 Mayonaise Smashing Pumpkins Siamese Dream Alternative 5586311 349 9 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/09MAYONA.MP3 Spaceboy Smashing Pumpkins Siamese Dream Alternative 4298859 268 10 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/10SPACEB.MP3 Silverfuck Smashing Pumpkins Siamese Dream Alternative 8376469 523 11 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/11SILVER.MP3 Sweet Sweet Smashing Pumpkins Siamese Dream Alternative 1584218 99 12 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/12SWEETS.MP3 Luna Smashing Pumpkins Siamese Dream Alternative 3210906 200 13 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/13LUNA.MP3 Plainsong The Cure Disintegration Alternative 5051309 315 1 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/01PLAINS.MP3 Pictures Of You The Cure Disintegration Alternative 7177890 448 2 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/02PICTUR.MP3 Closedown The Cure Disintegration Alternative 4176381 261 3 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/03CLOSED.MP3 Love Song The Cure Disintegration Alternative 3366098 210 4 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/04LOVESO.MP3 Last Dance The Cure Disintegration Alternative 4593923 287 5 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/05LASTDA.MP3 Lullaby The Cure Disintegration Alternative 4016299 251 6 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/06LULLAB.MP3 Fascination Street The Cure Disintegration Alternative 5054660 315 7 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/07FASCIN.MP3 Prayers For Rain The Cure Disintegration Alternative 5908410 369 8 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/08PRAYER.MP3 The Same Deep Water As You The Cure Disintegration Alternative 8990868 561 9 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/09THESAM.MP3 Disintegration The Cure Disintegration Alternative 8061873 503 10 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/10DISINT.MP3 Homesick The Cure Disintegration Alternative 6881830 430 11 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/11HOMESI.MP3 Untitled The Cure Disintegration Alternative 6178405 386 12 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/12UNTITL.MP3 Want The Cure Wild Mood Swings Alternative 4905730 306 1 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/01WANT.MP3 Club America The Cure Wild Mood Swings Alternative 4823122 301 2 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/02CLUBAM.MP3 This Is A Lie The Cure Wild Mood Swings Alternative 4318089 269 3 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/03THISIS.MP3 The 13Th The Cure Wild Mood Swings Alternative 3972432 248 4 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/04THE13T.MP3 Strange Attraction The Cure Wild Mood Swings Alternative 4148960 259 5 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/05STRANG.MP3 Mint Car The Cure Wild Mood Swings Alternative 3402336 212 6 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/06MINTCA.MP3 Jupiter Crash The Cure Wild Mood Swings Alternative 4090301 255 7 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/07JUPITE.MP3 Round & Round & Round The Cure Wild Mood Swings Alternative 2543025 158 8 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/08ROUNDR.MP3 Gone! The Cure Wild Mood Swings Alternative 4347338 271 9 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/09GONE.MP3 Numb The Cure Wild Mood Swings Alternative 4633641 289 10 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/10NUMB.MP3 Return The Cure Wild Mood Swings Alternative 3330447 208 11 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/11RETURN.MP3 Trap The Cure Wild Mood Swings Alternative 3480074 217 12 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/12TRAP.MP3 Treasure The Cure Wild Mood Swings Alternative 3605188 225 13 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/13TREASU.MP3 Bare The Cure Wild Mood Swings Alternative 7621630 476 14 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/14BARE.MP3 All I Really Want Alanis Morissette Jagged Little Pill Rock 4571379 285 1 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/01ALLIRE.MP3 You Oughta Know Alanis Morissette Jagged Little Pill Rock 3987488 249 2 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/02YOUOUG.MP3 Perfect Alanis Morissette Jagged Little Pill Rock 3009874 188 3 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/03PERFEC.MP3 Hand In My Pocket Alanis Morissette Jagged Little Pill Rock 3547378 221 4 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/04HANDIN.MP3 Right Through You Alanis Morissette Jagged Little Pill Rock 2816787 176 5 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/05RIGHTT.MP3 Forgiven Alanis Morissette Jagged Little Pill Rock 4803477 300 6 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/06FORGIV.MP3 You Learn Alanis Morissette Jagged Little Pill Rock 3832141 239 7 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/07YOULEA.MP3 Head Over Feet Alanis Morissette Jagged Little Pill Rock 4280059 267 8 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/08HEADOV.MP3 Mary Jane Alanis Morissette Jagged Little Pill Rock 4489033 280 9 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/09MARYJA.MP3 Ironic Alanis Morissette Jagged Little Pill Rock 3676938 229 10 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/10IRONIC.MP3 Not the Doctor Alanis Morissette Jagged Little Pill Rock 3641837 227 11 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/11NOTTHE.MP3 Wake Up Alanis Morissette Jagged Little Pill Rock 4696759 293 12 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/12WAKEUP.MP3 You Oughta Know (reprise) / Your House Alanis Morissette Jagged Little Pill Rock 7864223 491 13 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/13YOUOUG.MP3 God Made Me Chantal Kreviazuk Under These Rocks And Stones Rock 3060454 191 1 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/01GODMAD.MP3 Surrounded Chantal Kreviazuk Under These Rocks And Stones Rock 5075434 317 2 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/02SURROU.MP3 Don't Be Good Chantal Kreviazuk Under These Rocks And Stones Rock 3929951 245 3 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/03DONTBE.MP3 Believer Chantal Kreviazuk Under These Rocks And Stones Rock 3141535 196 4 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/04BELIEV.MP3 Grace Chantal Kreviazuk Under These Rocks And Stones Rock 3688641 230 5 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/05GRACE.MP3 Wayne Chantal Kreviazuk Under These Rocks And Stones Rock 4573600 285 6 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/06WAYNE.MP3 Hands Chantal Kreviazuk Under These Rocks And Stones Rock 4370750 273 7 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/07HANDS.MP3 Disagree Chantal Kreviazuk Under These Rocks And Stones Rock 3346753 209 8 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/08DISAGR.MP3 Co-Dependent Chantal Kreviazuk Under These Rocks And Stones Rock 3608539 225 9 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/09CODEPE.MP3 Green Apples Chantal Kreviazuk Under These Rocks And Stones Rock 4249969 265 10 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/10GREENA.MP3 Boot Chantal Kreviazuk Under These Rocks And Stones Rock 3678193 229 11 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/11BOOT.MP3 Imaginary Friend Chantal Kreviazuk Under These Rocks And Stones Rock 4039321 252 12 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/12IMAGIN.MP3 Below Zero Chiwawa The Sick World Of Yona Rock 4175978 260 1 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/01BELOWZ.MP3 Umbrella Man Chiwawa The Sick World Of Yona Rock 4226971 264 2 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/02UMBREL.MP3 Dream Sequence Chiwawa The Sick World Of Yona Rock 4337314 271 3 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/03DREAMS.MP3 Seaship Chiwawa The Sick World Of Yona Rock 3649345 228 4 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/04SEASHI.MP3 10 To 13 Chiwawa The Sick World Of Yona Rock 5778988 361 5 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/0510TO13.MP3 Details Chiwawa The Sick World Of Yona Rock 4136269 258 6 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/06DETAIL.MP3 On Top Of Tree Chiwawa The Sick World Of Yona Rock 4326029 270 7 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/07ONTOPO.MP3 Nep-Tune Chiwawa The Sick World Of Yona Rock 4646598 290 8 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/08NEPTUN.MP3 Drone Chiwawa The Sick World Of Yona Rock 5212233 325 9 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/09DRONE.MP3 Innuendo Chiwawa The Sick World Of Yona Rock 4656631 291 10 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/10INNUEN.MP3 Ode To You Chiwawa The Sick World Of Yona Rock 4135160 258 11 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/11ODETOY.MP3 Hush Chiwawa The Sick World Of Yona Rock 5684110 355 12 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/12HUSH.MP3 Gibber Chiwawa The Sick World Of Yona Rock 2824018 176 13 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/13GIBBER.MP3 Signe Eric Clapton Unplugged Rock 3088214 193 1 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/01SIGNE.MP3 Before You Accuse Me Eric Clapton Unplugged Rock 3590525 224 2 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/02BEFORE.MP3 Hey Hey Eric Clapton Unplugged Rock 3143293 196 3 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/03HEYHEY.MP3 Tears In Heaven Eric Clapton Unplugged Rock 4393798 274 4 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/04TEARSI.MP3 Lonely Stranger Eric Clapton Unplugged Rock 5263171 328 5 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/05LONELY.MP3 Nobody Knows You When You're Down & Out Eric Clapton Unplugged Rock 3665729 229 6 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/06NOBODY.MP3 Layla Eric Clapton Unplugged Rock 4578883 286 7 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/07LAYLA.MP3 Running On Faith Eric Clapton Unplugged Rock 6237076 389 8 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/08RUNNIN.MP3 Walkin' Blues Eric Clapton Unplugged Rock 3479241 217 9 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/09WALKIN.MP3 Alberta Eric Clapton Unplugged Rock 3557564 222 10 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/10ALBERT.MP3 San Francisco Bay Blues Eric Clapton Unplugged Rock 3253973 203 11 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/11SANFRA.MP3 Malted Milk Eric Clapton Unplugged Rock 3464820 216 12 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/12MALTED.MP3 Old Love Eric Clapton Unplugged Rock 7577326 473 13 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/13OLDLOV.MP3 Rollin' & Tumblin' Eric Clapton Unplugged Rock 4021341 251 14 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/14ROLLIN.MP3 La fille qui m'accompagne Francis Cabrel 77-87 Rock 4348844 271 0 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/LAFILLEQ.MP3 L'encre De Tes Yeux Francis Cabrel 77-87 Rock 2996323 187 0 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/LENCREDE.MP3 Les chemins de traverse Francis Cabrel 77-87 Rock 2810761 175 1 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/LESCHEMI.MP3 Rosie Francis Cabrel 77-87 Rock 3583681 223 0 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/ROSIE.MP3 Djobi Djoba Gipsy Kings Gipsy Kings - Greatest Hits Latin 3317951 207 1 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/01DJOBID.MP3 Baila Me Gipsy Kings Gipsy Kings - Greatest Hits Latin 3638523 227 2 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/02BAILAM.MP3 Bamboleo Gipsy Kings Gipsy Kings - Greatest Hits Latin 3294542 205 3 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/03BAMBOL.MP3 Pida Me La Gipsy Kings Gipsy Kings - Greatest Hits Latin 3182949 198 4 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/04PIDAME.MP3 Bem, Bem, Maria Gipsy Kings Gipsy Kings - Greatest Hits Latin 2979826 186 5 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/05BEMBEM.MP3 Volare (Nel Blu Di Pinto Di Blu) Gipsy Kings Gipsy Kings - Greatest Hits Latin 3541998 221 6 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/06VOLARE.MP3 Moorea Gipsy Kings Gipsy Kings - Greatest Hits Latin 3898491 243 7 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/07MOOREA.MP3 A Mi Manera (Comme D'habitude) Gipsy Kings Gipsy Kings - Greatest Hits Latin 3753065 234 8 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/08AMIMAN.MP3 Un Amor Gipsy Kings Gipsy Kings - Greatest Hits Latin 3528180 220 9 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/09UNAMOR.MP3 Galaxia Gipsy Kings Gipsy Kings - Greatest Hits Latin 2516026 157 10 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/10GALAXI.MP3 Escucha Me Gipsy Kings Gipsy Kings - Greatest Hits Latin 4473191 279 11 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/11ESCUCH.MP3 Tu Quieres Volver Gipsy Kings Gipsy Kings - Greatest Hits Latin 3119011 194 12 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/12TUQUIE.MP3 Soy Gipsy Kings Gipsy Kings - Greatest Hits Latin 3087232 192 13 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/13SOY.MP3 La Quiero Gipsy Kings Gipsy Kings - Greatest Hits Latin 3613448 225 14 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/14LAQUIE.MP3 Allegria Gipsy Kings Gipsy Kings - Greatest Hits Latin 2724588 170 15 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/15ALLEGR.MP3 Vamos A Bailar Gipsy Kings Gipsy Kings - Greatest Hits Latin 4750719 296 16 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/16VAMOSA.MP3 La Dona Gipsy Kings Gipsy Kings - Greatest Hits Latin 4408126 275 17 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/17LADONA.MP3 Mississippi Paula Cole Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4644545 290 1 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/01MISSIS.MP3 Scooter Boys Indigo Girls Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3312095 207 2 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/02SCOOTE.MP3 Sur Tes Pas Autour de Lucie Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3284929 205 3 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/03SURTES.MP3 Been It The Cardigans Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3934014 245 4 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/04BEENIT.MP3 I Want Dayna Manning Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4563459 285 5 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/05IWANT.MP3 Four Leaf Clover Abra Moore Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4335260 270 6 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/06FOURLE.MP3 Falling In Love Lisa Loeb Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4411049 275 7 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/07FALLIN.MP3 Loneliness Of The Long Distance Runner September 67 Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4061103 253 8 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/08LONELI.MP3 El Payande Lhasa Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3829519 239 9 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/09ELPAYA.MP3 Eternal Flame Susanna Hoffs Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3140735 196 10 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/10ETERNA.MP3 Rock In This Pocket (Song Of David) Suzanne Vega Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3981690 248 11 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/11ROCKIN.MP3 Ladder Joan Osborne Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4099943 256 12 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/12LADDER.MP3 Building A Mystery Sarah McLachlan Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4255857 265 13 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/13BUILDI.MP3 Water Is Wide Indigo Girls/Jewel/Sarah McLachlan Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4133401 258 1 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/01WATERI.MP3 Going Back To Harlan Emmylou Harris Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4862309 303 2 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/02GOINGB.MP3 Wash My Hands Meredith Brooks Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 5096778 318 3 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/03WASHMY.MP3 Cain Patty Griffin Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3668601 229 4 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/04CAIN.MP3 I Don't Want To Think About It Wild Strawberries Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3864375 241 5 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/05IDONTW.MP3 What Did You Hear In These Sounds Dar Williams Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3704713 231 6 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/06WHATDI.MP3 Trouble Shawn Colvin Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3966189 247 7 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/07TROUBL.MP3 Lama Dorje Chand Yungchen Lhamo Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 2954740 184 8 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/08LAMADO.MP3 The One Tracy Bonham Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4447260 277 9 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/09THEONE.MP3 Charm Wild Colonials Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3225290 201 10 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/10CHARM.MP3 Hold Me Jordan Tara MacLean Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4871080 304 11 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/11HOLDME.MP3 Periwinkle Sky Victoria Williams Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 2500003 156 12 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/12PERIWI.MP3 Indios De Barcelona Mano Negra N/A Ska 2260028 141 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/INDIOSDE.MP3 La Vida Mano Negra N/A Ska 2634760 164 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/LAVIDA.MP3 Mad House Mano Negra N/A Ska 2569282 160 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/MADHOUSE.MP3 Paris La Nuit Mano Negra N/A Ska 3183178 198 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/PARISLAN.MP3 Pas Assez De Toi Mano Negra N/A Ska 2221408 138 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/PASASSEZ.MP3 Patchanka Mano Negra N/A Ska 2978742 186 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/PATCHANK.MP3 Ronde De Nuit Mano Negra N/A Ska 2782521 173 0 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/RONDEDEN.MP3 Sidi H' Bibi Mano Negra N/A Ska 3261286 203 0 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/SIDIHBIB.MP3 Tiger Paula Cole This Fire Rock 4136800 258 1 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/01TIGER.MP3 Where Have All The Cowboys Gone? Paula Cole This Fire Rock 4267926 266 2 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/02WHEREH.MP3 Throwing Stones Paula Cole This Fire Rock 3626900 226 3 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/03THROWI.MP3 Carmen Paula Cole This Fire Rock 3600559 225 4 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/04CARMEN.MP3 Mississippi Paula Cole This Fire Rock 4912816 307 5 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/05MISSIS.MP3 Nietzsche's Eyes Paula Cole This Fire Rock 5321306 332 6 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/06NIETZS.MP3 Road To Dead Paula Cole This Fire Rock 3538149 221 7 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/07ROADTO.MP3 Me Paula Cole This Fire Rock 4842170 302 8 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/08ME.MP3 Feelin' Love Paula Cole This Fire Rock 5403500 337 9 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/09FEELIN.MP3 Hush, Hush, Hush. Paula Cole This Fire Rock 4198532 262 10 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/10HUSHHU.MP3 I Don't Want To Wait Paula Cole This Fire Rock 5107176 319 11 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/11IDONTW.MP3 Blow At High Dough The Tragically Hip Up To Here Rock 4436358 277 1 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/01BLOWAT.MP3 I'll Believe In You (Or I'll Be Leaving You Tonight) The Tragically Hip Up To Here Rock 3906838 244 2 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/02ILLBEL.MP3 New Orleans Is Sinking The Tragically Hip Up To Here Rock 4120385 257 3 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/03NEWORL.MP3 38 Years Old The Tragically Hip Up To Here Rock 4173596 260 4 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/0438YEAR.MP3 She Didn't Know The Tragically Hip Up To Here Rock 3420297 213 5 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/05SHEDID.MP3 Boots Or Hearts The Tragically Hip Up To Here Rock 3592078 224 6 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/06BOOTSO.MP3 Everytime You Go The Tragically Hip Up To Here Rock 3232216 202 7 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/07EVERYT.MP3 When The Weight Comes Down The Tragically Hip Up To Here Rock 4556460 284 8 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/08WHENTH.MP3 Trickle Down The Tragically Hip Up To Here Rock 3060431 191 9 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/09TRICKL.MP3 Another Midnight The Tragically Hip Up To Here Rock 3781833 236 10 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/10ANOTHE.MP3 Opiated The Tragically Hip Up To Here Rock 3556546 222 11 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/11OPIATE.MP3 Everybody Knows Concrete Blonde Pump Up the Volume Soundtrack 4549627 284 1 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/01EVERYB.MP3 Why Can't I Fall In Love Ivan Neville Pump Up the Volume Soundtrack 3877555 242 2 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/02WHYCAN.MP3 Stand Liquid Jesus Pump Up the Volume Soundtrack 4222352 263 3 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/03STAND.MP3 Wave of Mutilation (U.K. Surf) The Pixies Pump Up the Volume Soundtrack 2908730 181 4 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/04WAVEOF.MP3 I've Got A Secret Miniature Camera Peter Murphy Pump Up the Volume Soundtrack 4282985 267 5 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/05IVEGOT.MP3 Kick Out The Jams Bad Brains with Henry Rollins Pump Up the Volume Soundtrack 2973102 185 6 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/06KICKOU.MP3 Freedom Of Speech Above The Law Pump Up the Volume Soundtrack 4104083 256 7 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/07FREEDO.MP3 Heretic Soundgarden Pump Up the Volume Soundtrack 3667722 229 8 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/08HERETI.MP3 Titanium Expose Sonic Youth Pump Up the Volume Soundtrack 6205995 387 9 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/09TITANI.MP3 Me and the Devil Blues Cowboy Junkies Pump Up the Volume Soundtrack 5381374 336 10 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/10MEANDT.MP3 Tale O' the Twister Chagall Guevara Pump Up the Volume Soundtrack 3188481 199 11 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/11TALEOT.MP3 Schoolhouse Rocky (Original Theme Music) Bob Dorough & Friends Schoolhouse Rock! Rocks Soundtrack 222977 13 1 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/01SCHOOL.MP3 I'm Just A Bill Deluxx Folk Implosion Schoolhouse Rock! Rocks Soundtrack 3302474 206 2 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/02IMJUST.MP3 Three Is A Magic Number Blind Melon Schoolhouse Rock! Rocks Soundtrack 3105753 194 3 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/03THREEI.MP3 Conjunction Junction Better Than Ezra Schoolhouse Rock! Rocks Soundtrack 3587522 224 4 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/04CONJUN.MP3 Electricity, Electricity Goodness Schoolhouse Rock! Rocks Soundtrack 3228909 201 5 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/05ELECTR.MP3 No More Kings Pavement Schoolhouse Rock! Rocks Soundtrack 4200652 262 6 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/06NOMORE.MP3 The Shot Heard 'Round The World Ween Schoolhouse Rock! Rocks Soundtrack 3038740 189 7 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/07THESHO.MP3 My Hero, Zero The Lemonheads Schoolhouse Rock! Rocks Soundtrack 2977710 186 8 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/08MYHERO.MP3 The Energy Blues Biz Markie Schoolhouse Rock! Rocks Soundtrack 3047091 190 9 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/09THEENE.MP3 Little Twelvetoes Chavez Schoolhouse Rock! Rocks Soundtrack 3789385 236 10 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/10LITTLE.MP3 Verb: That's What's Happening Moby Schoolhouse Rock! Rocks Soundtrack 4306968 269 11 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/11VERBTH.MP3 Interplanet Janet Man Or Astro-Man? Schoolhouse Rock! Rocks Soundtrack 2670659 166 12 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/12INTERP.MP3 Lolly, Lolly, Lolly, Get Your Adverbs Here Buffalo Tom Schoolhouse Rock! Rocks Soundtrack 2152827 134 13 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/13LOLLYL.MP3 Unpack Your Adjectives Daniel Johnston Schoolhouse Rock! Rocks Soundtrack 2968945 185 14 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/14UNPACK.MP3 The Tale Of Mr. Morton Skee-Lo Schoolhouse Rock! Rocks Soundtrack 3927317 245 15 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/15THETAL.MP3 Video Killed The Radio Star The Presidents Of The United States Of America The Wedding Singer Soundtrack Soundtrack 3223519 201 1 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/01VIDEOK.MP3 Do You Really Want To Hurt Me Culture Club The Wedding Singer Soundtrack Soundtrack 4158044 259 2 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/02DOYOUR.MP3 Every Little Thing She Does Is Magic The Police The Wedding Singer Soundtrack Soundtrack 4140912 258 3 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/03EVERYL.MP3 How Soon Is Now? The Smiths The Wedding Singer Soundtrack Soundtrack 6432560 402 4 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/04HOWSOO.MP3 Love My Way Psychedelic Furs The Wedding Singer Soundtrack Soundtrack 3364883 210 5 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/05LOVEMY.MP3 Hold Me Now Thompson Twins The Wedding Singer Soundtrack Soundtrack 4546728 284 6 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/06HOLDME.MP3 Everyday I Write The Book Elvis Costello The Wedding Singer Soundtrack Soundtrack 3704696 231 7 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/07EVERYD.MP3 White Wedding Billy Idol The Wedding Singer Soundtrack Soundtrack 3988474 249 8 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/08WHITEW.MP3 China Girl David Bowie The Wedding Singer Soundtrack Soundtrack 5261575 328 9 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/09CHINAG.MP3 Blue Monday New Order The Wedding Singer Soundtrack Soundtrack 7134311 445 10 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/10BLUEMO.MP3 Pass The Dutchie Musical Youth The Wedding Singer Soundtrack Soundtrack 3258586 203 11 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/11PASSTH.MP3 Have You Written Anything Lately? (Dialogue) Adam Sandler The Wedding Singer Soundtrack Soundtrack 429866 26 12 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/12HAVEYO.MP3 Somebody Kill Me Adam Sandler The Wedding Singer Soundtrack Soundtrack 1806177 112 13 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/13SOMEBO.MP3 Rapper's Delight (Medley) Ellen Dow Plus Sugarhill Gang The Wedding Singer Soundtrack Soundtrack 4258091 266 14 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/14RAPPER.MP3 James Brown Is Dead (Dream On remix) L.A. Style Technodrome Techno 4681326 292 1 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/01JAMESB.MP3 Dance Your Ass Off (Rap radio Version) RTZ Technodrome Techno 3310834 206 2 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/02DANCEY.MP3 We Gonna Get RAF Technodrome Techno 5383466 336 3 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/03WEGONN.MP3 James Brown Is Still Alive! (HN Style) Holly Noise Technodrome Techno 4813962 300 4 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/04JAMESB.MP3 The Tingler (Meltram Mix) Smart System Technodrome Techno 4803501 300 5 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/05THETIN.MP3 Everybody In The Place (Fairground remix) Prodigy Technodrome Techno 4907584 306 6 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/06EVERYB.MP3 LFO (Eclipse Mix) LFO Technodrome Techno 3665660 229 7 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/07LFOECL.MP3 Let The Bass Kick (Extended Mix) Egma Technodrome Techno 6011262 375 8 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/08LETTHE.MP3 Tricky Disco Tricky Disco Technodrome Techno 6785868 424 9 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/09TRICKY.MP3 Apache (Original Version) Hans G Technodrome Techno 8072215 504 10 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/10APACHE.MP3 Atomic Playgirl Culture Shock Technodrome Techno 4955491 309 11 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/11ATOMIC.MP3 Discovery Mastermind Technodrome Techno 4443065 277 12 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/12DISCOV.MP3 A1 Anything You Like Technodrome Techno 5569882 348 13 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/13A1.MP3 Robocop Sub System Technodrome Techno 5399075 337 14 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/14ROBOCO.MP3 Descarga Total Maraca Descarga Total Latin 5834839 364 1 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/01DESCAR.MP3 Oy Guajira Mi Son Maraca Descarga Total Latin 4743969 296 2 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/02OYGUAJ.MP3 Pa' Gozar Piln Maraca Descarga Total Latin 5352515 334 3 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/03PAGOZA.MP3 Havana Danzn Maraca Descarga Total Latin 5697748 356 4 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/04HAVANA.MP3 Solo Me QuedEMaraca Descarga Total Latin 5489744 343 5 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/05SOLOME.MP3 La Pelea Maraca Descarga Total Latin 5100061 318 6 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/06LAPELE.MP3 Mambo Con ChachachEMaraca Descarga Total Latin 5328278 333 7 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/07MAMBOC.MP3 Llvatela Maraca Descarga Total Latin 6094387 380 8 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/08LLVATE.MP3 Yoruba Song - Introduction Maraca Descarga Total Latin 1314764 82 9 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/09YORUBA.MP3 Yoruba Song Maraca Descarga Total Latin 5403644 337 10 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/10YORUBA.MP3 Tumbao Pa' Changuito Maraca Descarga Total Latin 5893919 368 11 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/11TUMBAO.MP3 The Power of Equality Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3895635 243 1 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/01THEPOW.MP3 If You Have to Ask Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3468421 216 2 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/02IFYOUH.MP3 Breaking the Girl Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4727313 295 3 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/03BREAKI.MP3 Funky Monks Red Hot Chili Peppers Blood Sugar Sex Magik Rock 5174523 323 4 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/04FUNKYM.MP3 Suck My Kiss Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3474685 217 5 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/05SUCKMY.MP3 I Could Have Lied Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3912293 244 6 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/06ICOULD.MP3 Mellowship Slinky in B Major Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3840482 240 7 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/07MELLOW.MP3 The Righteous & The Wicked Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3968726 248 8 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/08THERIG.MP3 Give it Away Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4528777 283 9 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/09GIVEIT.MP3 Blood Sugar Sex Magik Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4339453 271 10 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/10BLOODS.MP3 Under the Bridge Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4229943 264 11 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/11UNDERT.MP3 Naked in the Rain Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4250006 265 12 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/12NAKEDI.MP3 Apache Rose Peacock Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4513880 282 13 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/13APACHE.MP3 The Greeting Song Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3097275 193 14 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/14THEGRE.MP3 My Lovely Man Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4464972 279 15 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/15MYLOVE.MP3 Sir Psycho Sexy Red Hot Chili Peppers Blood Sugar Sex Magik Rock 7947269 496 16 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/16SIRPSY.MP3 They're Red Hot Red Hot Chili Peppers Blood Sugar Sex Magik Rock 1152090 72 17 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/17THEYRE.MP3 Around the World Red Hot Chili Peppers Californication Rock 3819625 238 1 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/01AROUND.MP3 Parallel Universe Red Hot Chili Peppers Californication Rock 4330232 270 2 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/02PARALL.MP3 Scar Tissue Red Hot Chili Peppers Californication Rock 3479261 217 3 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/03SCARTI.MP3 Otherside Red Hot Chili Peppers Californication Rock 4095331 255 4 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/04OTHERS.MP3 Get on Top Red Hot Chili Peppers Californication Rock 3168855 198 5 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/05GETONT.MP3 Californication Red Hot Chili Peppers Californication Rock 5144972 321 6 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/06CALIFO.MP3 Easily Red Hot Chili Peppers Californication Rock 3702446 231 7 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/07EASILY.MP3 Porcelain Red Hot Chili Peppers Californication Rock 2618821 163 8 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/08PORCEL.MP3 Emit Remmus Red Hot Chili Peppers Californication Rock 3844557 240 9 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/09EMITRE.MP3 I Like Dirt Red Hot Chili Peppers Californication Rock 2523391 157 10 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/10ILIKED.MP3 This Velvet Glove Red Hot Chili Peppers Californication Rock 3604239 225 11 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/11THISVE.MP3 Savior Red Hot Chili Peppers Californication Rock 4679636 292 12 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/12SAVIOR.MP3 Purple Stain Red Hot Chili Peppers Californication Rock 4054794 253 13 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/13PURPLE.MP3 Right on Time Red Hot Chili Peppers Californication Rock 1801578 112 14 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/14RIGHTO.MP3 Road Trippin' Red Hot Chili Peppers Californication Rock 3289930 205 15 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/15ROADTR.MP3 Brandenberg Concerto No.2: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4734906 295 1 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/01BRANDE.MP3 Concerto for 2 Violins: Largo Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 6243733 390 2 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/02CONCER.MP3 Lute Suite No.4: Prelude Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3723853 232 3 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/03LUTESU.MP3 Sheep may safely graze Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4340899 271 4 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/04SHEEPM.MP3 Cello Sonata No.3: Adagio (excerpt) Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3109186 194 5 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/05CELLOS.MP3 Italian Concerto: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3759937 234 6 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/06ITALIA.MP3 Christmas Oratorio: Pastoral sinfonia Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 6381389 398 7 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/07CHRIST.MP3 Jesu, joy of man's desiring Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 2956052 184 8 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/08JESUJO.MP3 Keyboard Concerto No.4: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3871944 241 9 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/09KEYBOA.MP3 Cello Suite No.3: Bourees I & II Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3519607 219 10 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/10CELLOS.MP3 Concerto for Oboe & Violin: Adagio Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5085282 317 11 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/11CONCER.MP3 B Minor Mass: Crucifixus Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3623671 226 12 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/12BMINOR.MP3 Cello Suite No.1: Praeludium Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 2367708 147 13 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/13CELLOS.MP3 French Suite No.5: Gigue Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3377353 211 14 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/14FRENCH.MP3 Prelude in D Minor Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 1422553 88 15 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/15PRELUD.MP3 Brandenburg Concerto No.5: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5012001 313 16 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/16BRANDE.MP3 St Matthew Passion: In tears of grief Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 6186608 386 17 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/17STMATT.MP3 Toccata in D minor Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3418445 213 1 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/01TOCCAT.MP3 Air on a G string Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5022849 313 2 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/02AIRONA.MP3 Prelude in C major Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3151787 196 3 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/03PRELUD.MP3 Brandenburg Concerto No.4: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 6929177 433 4 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/04BRANDE.MP3 Goldberg Variations: Aria Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3715899 232 5 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/05GOLDBE.MP3 Sleepers awake Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5290479 330 6 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/06SLEEPE.MP3 Violin Concerto No.1: Allegro moderato Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [Disc 1] Classical 3793234 237 7 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/07VIOLIN.MP3 Violin Concerto No.1: Andante Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 6179785 386 8 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/08VIOLIN.MP3 Partita No.1: Gigue Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 2457432 153 9 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/09PARTIT.MP3 Orchestral Suite No.2: Menuet Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 1182668 73 10 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/10ORCHES.MP3 Orchestra Suite No.2: Badinerie Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 1373401 85 11 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/11ORCHES.MP3 Oboe Concerto: Siciliano Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4142650 258 12 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/12OBOECO.MP3 Brandenberg Concerto No.3: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 5380237 336 13 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/13BRANDE.MP3 Violin Partita No.2: Allemande Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4023678 251 14 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/14VIOLIN.MP3 Violin Partita No.2: Gigue Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3026423 189 15 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/15VIOLIN.MP3 Keyboard Concerto No.2: Allegro (excerpt) Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 2809378 175 16 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/16KEYBOA.MP3 Sanctify us by thy goodness Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3091904 193 17 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/17SANCTI.MP3 Keyboard Concerto No.5: Largo Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 2814381 175 18 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/18KEYBOA.MP3 Concerto in A minor for Organ: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3430462 214 19 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/19CONCER.MP3 Crazy Mary Pearl Jam N/A Grunge 4717784 336 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 112 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/CRAZYMAR.MP3 Daughter Pearl Jam N/A Grunge 3683124 230 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/DAUGHTER.MP3 Indifference Pearl Jam N/A Grunge 4840457 302 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/FFERENCE.MP3 Nothing To Say Pearl Jam N/A Grunge 3800220 237 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/INGTOSAY.MP3 Animal Pearl Jam N/A Grunge 2668735 166 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/PEARLJAM.MP3 Undertow Pearl Jam N/A Grunge 5357223 334 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/UNDERTOW.MP3 I Am a Newfie N/A N/A Comedy 1626716 101 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/IAMNEWFI.MP3 I am a British Columbian N/A N/A Comedy 988002 61 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/BRITCOL.MP3 Two tribes Frankie goes to Hollywood Fantastic 80s! - Disk Two Pop 4067328 203 1 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 160 44100 MPEG AUDIO FILE MP3015/VARIOUS/01FRA1.MP3 Eyes Kim Carnes & Bette Davis Fantastic 80s! - Disk One Pop 4411392 220 20 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 160 44100 MPEG AUDIO FILE MP3015/VARIOUS/20KIM1.MP3 Zombie Cranberries No Need to Argue Rock 4304219 307 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 112 44100 MPEG AUDIO FILE MP3015/VARIOUS/CRANBERR.MP3 Da Da Da I Don't Love You You Don't Love Me Aha Aha Aha Trio Da Da Da Pop 1411580 201 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 56 22050 MPEG AUDIO FILE MP3015/VARIOUS/DADADA.MP3 I Want You Savage Garden N/A Pop 3707425 231 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/SAVAG1.MP3 One Headlight Wallflowers N/A Rock 5003099 312 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/WALLFLOW.MP3 Music (Deep Dish Remix) Madonna Music Dance 4086785 255 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/MADONNA/MUSIC/DEEPDISH.MP3 Life is a Flower Ace of Base Flowers Pop 4479410 223 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/01LIFEIS.MP3 Travel to romantis Ace of Base Flowers Pop 4954952 247 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/02TRAVEL.MP3 Cruel summer Ace of Base Flowers Pop 4251818 212 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/03CRUELS.MP3 Always have, Always will Ace of Base Flowers Pop 4474712 223 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/04ALW1.MP3 Adventures in paradise Ace of Base Flowers Pop 4189700 209 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/05ADVENT.MP3 Dr sun Ace of Base Flowers Pop 4273220 213 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/06DRSUN.MP3 Cecilia Ace of Base Flowers Pop 4665242 233 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/07CECILI.MP3 He decides Ace of Base Flowers Pop 3742868 187 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/08HEDECI.MP3 I Pray Ace of Base Flowers Pop 3916172 195 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/09IPRAY.MP3 Tokyo girl Ace of Base Flowers Pop 4275830 213 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/10TOKYOG.MP3 Don't go away Ace of Base Flowers Pop 4373444 218 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/11DONTGO.MP3 Captain nemo Ace of Base Flowers Pop 4803050 240 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/12CAPTAI.MP3 Donnie Ace of Base Flowers Pop 5536982 276 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/13DONNIE.MP3 Cruel summer (Big Bonus Mix Ace of Base Flowers Pop 4905362 245 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/14CRU1.MP3 low expectations Calexico Spoke Folk 2505144 156 1 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/01LOWEXP.MP3 mind the gap Calexico Spoke Folk 836507 52 2 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/02MINDTH.MP3 mazurra Calexico Spoke Folk 1704603 106 3 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/03MAZURR.MP3 sanchez Calexico Spoke Folk 3170803 198 4 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/04SANCHE.MP3 haul Calexico Spoke Folk 1300913 81 5 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/05HAUL.MP3 slag Calexico Spoke Folk 2377932 148 6 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/06SLAG.MP3 paper route Calexico Spoke Folk 1931977 120 7 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/07PAPERR.MP3 glimpse Calexico Spoke Folk 2554732 159 8 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/08GLIMPS.MP3 navy cut Calexico Spoke Folk 472879 29 9 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/09NAVYCU.MP3 spokes Calexico Spoke Folk 3484414 217 10 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/10SPOKES.MP3 scout Calexico Spoke Folk 2072825 129 11 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/11SCOUT.MP3 point vicente Calexico Spoke Folk 3778106 236 12 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/12POINTV.MP3 wash Calexico Spoke Folk 2480892 155 13 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/13WASH.MP3 ice cream jeep Calexico Spoke Folk 490581 30 14 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/14ICECRE.MP3 windjammer Calexico Spoke Folk 2532167 158 15 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/15WINDJA.MP3 mazurka Calexico Spoke Folk 1273411 79 16 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/16MAZURK.MP3 removed Calexico Spoke Folk 3708023 231 17 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/17REMOVE.MP3 hitch Calexico Spoke Folk 2776250 173 18 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/18HITCH.MP3 stinging nettle Calexico Spoke Folk 3532348 220 19 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/19STINGI.MP3 Hommage a Noir - Single mix Ralk Hildenbeutal Hommage a Noir Soundtrack 3588485 224 1 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/01HOMMAG.MP3 Intro/National Holiday Ralk Hildenbeutal Hommage a Noir Soundtrack 6370276 398 2 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/02INTRON.MP3 The Fantasia Riders Ralk Hildenbeutal Hommage a Noir Soundtrack 2697667 168 3 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/03THEFAN.MP3 Market in Bamenda Ralk Hildenbeutal Hommage a Noir Soundtrack 2826396 176 4 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/04MARKET.MP3 The Elephantmen Society Ralk Hildenbeutal Hommage a Noir Soundtrack 3187519 199 5 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/05THEELE.MP3 In the Village Ralk Hildenbeutal Hommage a Noir Soundtrack 2938079 183 6 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/06INTHEV.MP3 Largo for a day in Africa Ralk Hildenbeutal Hommage a Noir Soundtrack 3209673 200 7 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/07LARGOF.MP3 Warriors of Foumban Ralk Hildenbeutal Hommage a Noir Soundtrack 4364069 272 8 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/08WARRIO.MP3 Holy Life in Bafut Ralk Hildenbeutal Hommage a Noir Soundtrack 2902466 181 9 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/09HOLYLI.MP3 Hommage a Noir Ralk Hildenbeutal Hommage a Noir Soundtrack 8495313 530 10 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/10HOMMAG.MP3 Stiltdance Ralk Hildenbeutal Hommage a Noir Soundtrack 1862578 116 11 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/11STILTD.MP3 Hommage a Noir - remixed by Bassface Sascha Ralk Hildenbeutal Hommage a Noir Soundtrack 7061325 441 12 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/12HOMMAG.MP3 Hommage a Noir - remixed by Der Process Ralk Hildenbeutal Hommage a Noir Soundtrack 7560224 472 13 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/13HOMMAG.MP3 Paradise By The Dashboard Light Meat Loaf N/A Rock 8143901 508 0 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3014/MEATLOAF/UNKNOWNALBU/PARADISE.MP3 Party Time Dj Jean N/A Techno 3132131 195 0 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3014/DJJEAN/UNKNOWNALBU/PARTYTIM.MP3 Revolution 909 Daft Punk Homework Electronic 5225497 326 3 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/03REVOLU.MP3 Da Funk Daft Punk Homework Electronic 5273961 329 4 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/04DAFUNK.MP3 Phoenix Daft Punk Homework Electronic 4755274 297 5 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/05PHOENI.MP3 Fresh Daft Punk Homework Electronic 3911413 244 6 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/06FRESH.MP3 Around The World Daft Punk Homework Electronic 6873499 429 7 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/07AROUND.MP3 Rollin' & Scratchin' Daft Punk Homework Electronic 7161895 447 8 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/08ROLLIN.MP3 Teachers Daft Punk Homework Electronic 2777075 173 9 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/09TEACHE.MP3 High Fidelity Daft Punk Homework Electronic 5801433 362 10 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/10HIGHFI.MP3 Rock'n Roll Daft Punk Homework Electronic 7262616 453 11 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/11ROCKNR.MP3 Oh Yeah Daft Punk Homework Electronic 1940322 121 12 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/12OHYEAH.MP3 Burnin' Daft Punk Homework Electronic 6619791 413 13 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/13BURNIN.MP3 Indo Silver Club Daft Punk Homework Electronic 4397094 274 14 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/14INDOSI.MP3 Alive Daft Punk Homework Electronic 5043806 315 15 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/15ALIVE.MP3 Funk Ad Daft Punk Homework Electronic 853211 53 16 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/16FUNKAD.MP3 Daftendirekt Daft Punk Homework Electronic 2633911 164 1 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/01DAFTEN.MP3 Wdpk 83.7 fm Daft Punk Homework Electronic 452531 28 2 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/02WDPK83.MP3 Party Time Moby N/A Techno 4065849 254 0 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/MOBY/UNKNOWNALBU/PARTYTIM.MP3 Mr. Pitiful The Commitments The Commitments Soundtrack Soundtrack 2096898 131 10 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/MRPITIFU.MP3 Mustang Sally The Commitments The Commitments Soundtrack Soundtrack 3863192 241 1 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/MUSTANGS.MP3 Treat Her Right The Commitments The Commitments Soundtrack Soundtrack 3509602 219 8 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/TREATHER.MP3 Bye Bye Baby The Commitments The Commitments Soundtrack Soundtrack 3287804 205 13 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/BYEBYEBA.MP3 Destination Anywhere The Commitments The Commitments Soundtrack Soundtrack 3040239 190 5 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/DESTINAT.MP3 The Dark End Of The Street The Commitments The Commitments Soundtrack Soundtrack 2502054 156 4 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/THEDARKE.MP3 Chain Of Fools The Commitments The Commitments Soundtrack Soundtrack 2852152 178 3 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/CHAINOFF.MP3 Slip Away The Commitments The Commitments Soundtrack Soundtrack 4327125 270 14 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/SLIPAWAY.MP3 Tubular Bells Mike Oldfield The Exorcist Soundtrack Soundtrack 4797319 299 0 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/MIKEOLDFIEL/THEEXORCIST/TUBULARB.MP3 Stan [Featuring Dido] Eminem The Marshal Mathers LP Hip-Hop 6465180 404 3 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/EMINEM/THEMARSHALM/03STANFE.MP3 My Name Is Eminem The Slim Shady LP Hip-Hop 4295552 268 2 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/EMINEM/THESLIMSHAD/02MYNAME.MP3 Rock Bottom Eminem The Slim Shady LP Hip-Hop 3426618 214 14 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/EMINEM/THESLIMSHAD/14ROCKBO.MP3 Deaf Mick's Throwdown (Fatboy Slim Remix) Clockwork Voodoo Freaks On The Floor At The Boutique Electronic 1989159 124 3 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/03DEAFMI.MP3 Because I Got It Like That (Ultimatum Mix By Fatboy Slim) Jungle Brothers On The Floor At The Boutique Electronic 3042057 190 4 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/04BECAUS.MP3 Vol 1 Side 2 Track 2 (Fatboy Slim Remix) Bassbin Twins On The Floor At The Boutique Electronic 2426355 151 5 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/05VOL1SI.MP3 That Green Jesus (Fatboy Slim Remix) Mr Natural On The Floor At The Boutique Electronic 4340173 271 6 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/06THATGR.MP3 The World's Made Up Of This & That (Fatboy Slim Remix) Deeds Plus Thoughts On The Floor At The Boutique Electronic 3350292 209 7 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/07THEWOR.MP3 Michael Jackson (Fatboy Slim Remix) Fatboy Slim On The Floor At The Boutique Electronic 4451013 278 8 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/08MICHAE.MP3 Phun-Ky (Fatboy Slim Remix) DJ Tonka On The Floor At The Boutique Electronic 4567390 285 9 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/09PHUNKY.MP3 Forget It (Fatboy Slim Remix) Cut and Paste On The Floor At The Boutique Electronic 2969612 185 10 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/10FORGET.MP3 Everybody In The House (Fatboy Slim Remix) Buzzthrill On The Floor At The Boutique Electronic 2911486 181 11 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/11EVERYB.MP3 Can You Feel It (Fatboy Slim Remix) CLS On The Floor At The Boutique Electronic 3890903 243 12 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/12CANYOU.MP3 Acid Enlightenment (Fatboy Slim Remix) Aldo Bender On The Floor At The Boutique Electronic 2368384 148 13 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/13ACIDEN.MP3 I'm a Disco Dancer (Fatboy Slim Remix) Christopher Just On The Floor At The Boutique Electronic 2396532 149 14 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/14IMADIS.MP3 Psychopath (Fatboy Slim Remix) Hardknox On The Floor At The Boutique Electronic 4070792 254 15 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/15PSYCHO.MP3 Break In (Fatboy Slim Remix) Cirrus On The Floor At The Boutique Electronic 3340845 208 16 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/16BREAKI.MP3 Give Me My Auger Back (Fatboy Slim Remix) Psychedeliasmith On The Floor At The Boutique Electronic 4186409 261 17 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/17GIVEME.MP3 Post Punk Progression (Fatboy Slim Remix) Cut La Roc On The Floor At The Boutique Electronic 2253727 140 18 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/18POSTPU.MP3 The Rockefeller Skank (Fatboy Slim Remix) Fatboy Slim On The Floor At The Boutique Electronic 5837587 364 19 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/19THEROC.MP3 Apache (Fatboy Slim Remix) Michael Viner's Incredible Bongo Band On The Floor At The Boutique Electronic 2670583 166 1 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/01APACHE.MP3 Discositdown (Fatboy Slim Remix) Fred Wesley & The Horny Horns On The Floor At The Boutique Electronic 3427059 214 2 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/02DISCOS.MP3 N.W.O. Ministry Psalm 69 Rock 5292299 330 1 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/01NWO.MP3 Just One Fix Ministry Psalm 69 Rock 4984686 311 2 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/02JUSTON.MP3 Tv Ii Ministry Psalm 69 Rock 2958415 184 3 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/03TVII.MP3 Hero Ministry Psalm 69 Rock 4053467 253 4 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/04HERO.MP3 Jesus Built My Hotrod Ministry Psalm 69 Rock 4670113 291 5 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/05JESUSB.MP3 Scarecrow Ministry Psalm 69 Rock 8027008 501 6 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/06SCAREC.MP3 Psalm 69 Ministry Psalm 69 Rock 5273075 329 7 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/07PSALM6.MP3 Corrosion Ministry Psalm 69 Rock 4743662 296 8 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/08CORROS.MP3 Grace Ministry Psalm 69 Rock 2973044 185 9 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/09GRACE.MP3 Just Like You Ministry Twitch New Age 4859860 303 1 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/01JUSTLI.MP3 We believe Ministry Twitch New Age 5704134 356 2 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/02WEBELI.MP3 All Day Remix Ministry Twitch New Age 5808209 363 3 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/03ALLDAY.MP3 The Angel Ministry Twitch New Age 5868251 366 4 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/04THEANG.MP3 Over the Shoulder Ministry Twitch New Age 5018130 313 5 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/05OVERTH.MP3 My Possession Ministry Twitch New Age 4882290 305 6 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/06MYPOSS.MP3 Where you at Now? / Crash & Burn / Twitch (V2) Ministry Twitch New Age 11765689 735 7 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/07WHEREY.MP3 Over the Shoulder (12" Version) Ministry Twitch New Age 6501899 406 8 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/08OVERTH.MP3 Isle of man (V2) Ministry Twitch New Age 4340758 271 9 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/09ISLEOF.MP3 Head Like a Hole Nine Inch Nails Pretty Hate Machine Rock 4795383 299 1 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/01HEADLI.MP3 Terrible Lie Nine Inch Nails Pretty Hate Machine Rock 4464356 279 2 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/02TERRIB.MP3 Down In It Nine Inch Nails Pretty Hate Machine Rock 3623420 226 3 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/03DOWNIN.MP3 Sanctified Nine Inch Nails Pretty Hate Machine Rock 5575707 348 4 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/04SANCTI.MP3 Something I Can Never Have Nine Inch Nails Pretty Hate Machine Rock 5680212 355 5 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/05SOMETH.MP3 Kinda I Want To Nine Inch Nails Pretty Hate Machine Rock 4370596 273 6 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/06KINDAI.MP3 Sin Nine Inch Nails Pretty Hate Machine Rock 3940784 246 7 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/07SIN.MP3 That's What I Get Nine Inch Nails Pretty Hate Machine Rock 4333957 270 8 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/08THATSW.MP3 The Only Time Nine Inch Nails Pretty Hate Machine Rock 4605209 287 9 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/09THEONL.MP3 Ringfinger Nine Inch Nails Pretty Hate Machine Rock 5454918 340 10 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/10RINGFI.MP3 Mr. Self Destruct Nine Inch Nails The Downward Spiral Rock 4321028 270 1 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/01MRSELF.MP3 Piggy Nine Inch Nails The Downward Spiral Rock 4233384 264 2 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/02PIGGY.MP3 Heresy Nine Inch Nails The Downward Spiral Rock 3751756 234 3 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/03HERESY.MP3 March of the Pigs Nine Inch Nails The Downward Spiral Rock 2856221 178 4 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/04MARCHO.MP3 Closer Nine Inch Nails The Downward Spiral Rock 5967497 372 5 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/05CLOSER.MP3 Ruiner Nine Inch Nails The Downward Spiral Rock 4782861 298 6 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/06RUINER.MP3 The Becoming Nine Inch Nails The Downward Spiral Rock 5304282 331 7 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/07THEBEC.MP3 I Do Not Want This Nine Inch Nails The Downward Spiral Rock 5458853 341 8 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/08IDONOT.MP3 Big Man With a Gun Nine Inch Nails The Downward Spiral Rock 1540078 96 9 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/09BIGMAN.MP3 A Warm Place Nine Inch Nails The Downward Spiral Rock 3246034 202 10 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/10AWARMP.MP3 Eraser Nine Inch Nails The Downward Spiral Rock 4697182 293 11 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/11ERASER.MP3 Reptile Nine Inch Nails The Downward Spiral Rock 6598478 412 12 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/12REPTIL.MP3 The Downward Spiral Nine Inch Nails The Downward Spiral Rock 3791896 236 13 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/13THEDOW.MP3 Hurt Nine Inch Nails The Downward Spiral Rock 6016816 376 14 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/14HURT.MP3 Jackie Sinead O'Connor The Lion And The Cobra Rock 2377055 148 1 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/01JACKIE.MP3 Mandinka Sinead O'Connor The Lion And The Cobra Rock 3628009 226 2 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/02MANDIN.MP3 Jerusalem Sinead O'Connor The Lion And The Cobra Rock 4164391 260 3 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/03JERUSA.MP3 Just Like U Said It Would B Sinead O'Connor The Lion And The Cobra Rock 4365029 272 4 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/04JUSTLI.MP3 Never Get Old Sinead O'Connor The Lion And The Cobra Rock 4418932 276 5 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/05NEVERG.MP3 Troy Sinead O'Connor The Lion And The Cobra Rock 6313949 394 6 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/06TROY.MP3 I Want Your (Hands On Me) Sinead O'Connor The Lion And The Cobra Rock 4518418 282 7 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/07IWANTY.MP3 Drink Before The War Sinead O'Connor The Lion And The Cobra Rock 5207070 325 8 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/08DRINKB.MP3 Just Call Me Joe Sinead O'Connor The Lion And The Cobra Rock 5627672 351 9 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/09JUSTCA.MP3 Maniac Various Artists Sounds Of The Seventies - Celebration Rock 4050225 253 1 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/01MANIAC.MP3 Celebration Various Artists Sounds Of The Seventies - Celebration Rock 3603432 225 2 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/02CELEBR.MP3 I'm So Excited Various Artists Sounds Of The Seventies - Celebration Rock 4262696 266 3 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/03IMSOEX.MP3 Call Me (Theme from "American Gigolo" ) Various Artists Sounds Of The Seventies - Celebration Rock 3425827 214 4 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/04CALLME.MP3 Fame Various Artists Sounds Of The Seventies - Celebration Rock 3701785 231 5 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/05FAME.MP3 Upside Down Various Artists Sounds Of The Seventies - Celebration Rock 3547843 221 6 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/06UPSIDE.MP3 Physical Various Artists Sounds Of The Seventies - Celebration Rock 3616386 226 7 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/07PHYSIC.MP3 More, More, More Pt. 1 Various Artists Sounds Of The Seventies - Celebration Rock 2944322 184 8 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/08MOREMO.MP3 Right Back Where We Started From Various Artists Sounds Of The Seventies - Celebration Rock 3168358 198 9 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/09RIGHTB.MP3 Last Dance Various Artists Sounds Of The Seventies - Celebration Rock 3213895 200 10 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/10LASTDA.MP3 In the Navy Various Artists Sounds Of The Seventies - Celebration Rock 3623496 226 11 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/11INTHEN.MP3 Gloria Various Artists Sounds Of The Seventies - Celebration Rock 3735086 233 12 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/12GLORIA.MP3 Shake Your Booty Various Artists Sounds Of The Seventies - Celebration Rock 3022894 188 13 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/13SHAKEY.MP3 Get Up and Boogie Various Artists Sounds Of The Seventies - Celebration Rock 3871910 241 14 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/14GETUPA.MP3 Funkytown Various Artists Sounds Of The Seventies - Celebration Rock 3959951 247 15 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/15FUNKYT.MP3 Shake Your Groove Thing Various Artists Sounds Of The Seventies - Celebration Rock 3337346 208 16 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/16SHAKEY.MP3 Take Me Home Various Artists Sounds Of The Seventies - Celebration Rock 3356979 209 17 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/17TAKEME.MP3 Shadow Dancing Various Artists Sounds Of The Seventies - Celebration Rock 4333611 270 18 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/18SHADOW.MP3 Assistant Principal's Big Day Adam Sandler They're all Gonna Laugh at You Comedy 2268503 141 1 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/01ASSIST.MP3 The Buffoon and the Dean of Admissions Adam Sandler They're all Gonna Laugh at You Comedy 2165694 135 2 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/02THEBUF.MP3 Buddy Adam Sandler They're all Gonna Laugh at You Comedy 2142673 133 3 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/03BUDDY.MP3 The Longest Pee Adam Sandler They're all Gonna Laugh at You Comedy 2168597 135 4 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/04THELON.MP3 Food Innuendo Guy Adam Sandler They're all Gonna Laugh at You Comedy 2350551 146 5 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/05FOODIN.MP3 The Beating of a High School Janitor Adam Sandler They're all Gonna Laugh at You Comedy 526179 32 6 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/06THEBEA.MP3 Right Field Adam Sandler They're all Gonna Laugh at You Comedy 3087267 192 7 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/07RIGHTF.MP3 The Buffoon and the Valedictorian Adam Sandler They're all Gonna Laugh at You Comedy 2216680 138 8 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/08THEBUF.MP3 Mr. Spindel's Phone Call Adam Sandler They're all Gonna Laugh at You Comedy 1959208 122 9 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/09MRSPIN.MP3 The Thanksgiving Song Adam Sandler They're all Gonna Laugh at You Comedy 3650687 228 10 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/10THETHA.MP3 The Beating of a High School Bus Driver Adam Sandler They're all Gonna Laugh at You Comedy 920597 57 11 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/11THEBEA.MP3 Oh Mom... Adam Sandler They're all Gonna Laugh at You Comedy 2080961 130 12 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/12OHMOM.MP3 Fatty McGee Adam Sandler They're all Gonna Laugh at You Comedy 3083507 192 13 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/13FATTYM.MP3 At a Medium Pace Adam Sandler They're all Gonna Laugh at You Comedy 3158745 197 14 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/14ATAMED.MP3 The Beating of a High School Science Teacher Adam Sandler They're all Gonna Laugh at You Comedy 814441 50 15 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/15THEBEA.MP3 The Cheerleader Adam Sandler They're all Gonna Laugh at You Comedy 1530793 95 16 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/16THECHE.MP3 I'm So Wasted Adam Sandler They're all Gonna Laugh at You Comedy 4803550 300 17 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/17IMSOWA.MP3 Lunchlady Land Adam Sandler They're all Gonna Laugh at You Comedy 4851477 303 18 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/18LUNCHL.MP3 The The The Beating of a High School Spanish Teacher Adam Sandler They're all Gonna Laugh at You Comedy 464199 29 19 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/19THETHE.MP3 Toll Booth Willie Adam Sandler They're all Gonna Laugh at You Comedy 3653609 228 20 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/20TOLLBO.MP3 Teenage Love on the Phone Adam Sandler They're all Gonna Laugh at You Comedy 2461180 153 21 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/21TEENAG.MP3 My Little Chicken Adam Sandler They're all Gonna Laugh at You Comedy 2123461 132 22 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/22MYLITT.MP3 Joining The Cult Adam Sandler What the Hell Happened to Me? Comedy 2769194 173 1 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/01JOININ.MP3 Respect Adam Sandler What the Hell Happened to Me? Comedy 4399225 274 2 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/02RESPEC.MP3 Ode To My Car Adam Sandler What the Hell Happened to Me? Comedy 3766859 235 3 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/03ODETOM.MP3 The Excited Southerner Orders A Meal Adam Sandler What the Hell Happened to Me? Comedy 724976 45 4 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/04THEEXC.MP3 The Goat Adam Sandler What the Hell Happened to Me? Comedy 8505673 531 5 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/05THEGOA.MP3 The Chanukah Song Adam Sandler What the Hell Happened to Me? Comedy 3587559 224 6 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/06THECHA.MP3 The Excited Southerner Gets Pulled Over Adam Sandler What the Hell Happened to Me? Comedy 1029670 64 7 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/07THEEXC.MP3 The Hypnotist Adam Sandler What the Hell Happened to Me? Comedy 7724095 482 8 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/08THEHYP.MP3 Steve Polychronopolous Adam Sandler What the Hell Happened to Me? Comedy 3059821 191 9 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/09STEVEP.MP3 The Excited Southerner At A Job Interview Adam Sandler What the Hell Happened to Me? Comedy 1131379 70 10 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/10THEEXC.MP3 Do It For Your Mama Adam Sandler What the Hell Happened to Me? Comedy 5177199 323 11 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/11DOITFO.MP3 Crazy Love Adam Sandler What the Hell Happened to Me? Comedy 3789150 236 12 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/12CRAZYL.MP3 The Excited Southerner Meets Mel Gibson Adam Sandler What the Hell Happened to Me? Comedy 1099891 68 13 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/13THEEXC.MP3 The Adventures Of The Cow Adam Sandler What the Hell Happened to Me? Comedy 4869031 304 14 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/14THEADV.MP3 Dip Doodle Adam Sandler What the Hell Happened to Me? Comedy 3650665 228 15 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/15DIPDOO.MP3 The Excited Southerner Proposes To A Woman Adam Sandler What the Hell Happened to Me? Comedy 1012958 63 16 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/16THEEXC.MP3 Memory Lane Adam Sandler What the Hell Happened to Me? Comedy 2610784 163 17 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/17MEMORY.MP3 Mr. Bake-O Adam Sandler What the Hell Happened to Me? Comedy 3944491 246 18 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/18MRBAKE.MP3 Sex Or Weight Lifting Adam Sandler What the Hell Happened to Me? Comedy 6818388 426 19 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/19SEXORW.MP3 What The Hell Happened To Me? Adam Sandler What the Hell Happened to Me? Comedy 2331188 145 20 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/20WHATTH.MP3 Together in Electric Dreams Electric Dreams Music from the film Pop 2270560 141 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/ELECTRIC/MUSICFRO/TOGETHER.MP3 Father Of Mine Everclear So Much For The After Glow Blues 3703519 231 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/EVERCLEA/SOMUCHFO/FATHEROF.MP3 What It's Like Everlast Whitey Ford Sings The Blues Blues 4836757 302 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/EVERLAST/WHITEYFO/WHATITSL.MP3 The Way Fastball N/A Rock 4113648 257 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/FASTBALL/UNKNOWNA/THEWAY.MP3 Why Frankie Avalon 45- Chancellor 1045 Rock 1203006 150 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 64 44100 MPEG AUDIO FILE MP3023/FRANKIEA/45CHANCE/WHY.MP3 It Genesis Lamb Lies Down On Broadway Pop 4130253 258 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/LAMBLIES/IT.MP3 Anyway Genesis The Lamb Lies Down on Broadway Pop 3002190 187 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/ANYWAY.MP3 Back in N.Y.C. Genesis The Lamb Lies Down on Broadway Pop 5485999 342 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/BACKINNY.MP3 Broadway Melody of 1974 Genesis The Lamb Lies Down on Broadway Pop 528865 33 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/BROADWAY.MP3 Carpet Crawlers Genesis The Lamb Lies Down on Broadway Pop 5051174 315 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/CARPETCR.MP3 Counting Out Time Genesis The Lamb Lies Down on Broadway Pop 3555579 222 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/COUNTING.MP3 Cuckoo Cocoon Genesis The Lamb Lies Down on Broadway Pop 2107347 131 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/CUCKOOCO.MP3 Fly on a Windshield Genesis The Lamb Lies Down on Broadway Pop 4208462 263 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/FLYONAWI.MP3 Hairless Heart Genesis The Lamb Lies Down on Broadway Pop 2136288 133 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/HAIRLESS.MP3 In the Cage Genesis The Lamb Lies Down on Broadway Pop 7934111 495 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/INTHECAG.MP3 In the Rapids Genesis The Lamb Lies Down on Broadway Pop 2299371 143 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/INTHERAP.MP3 Light Dies Down on Broadway Genesis The Lamb Lies Down on Broadway Pop 3402616 212 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/LIGHTDIE.MP3 Lilywhite Lilith Genesis The Lamb Lies Down on Broadway Pop 2592182 162 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/LILYWHIT.MP3 Parade of Lifeless Packaging Genesis The Lamb Lies Down on Broadway Pop 2647505 165 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/PARADEOF.MP3 Ravine Genesis The Lamb Lies Down on Broadway Pop 1981256 123 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/RAVINE.MP3 Silent Sorrow in Empty Boats Genesis The Lamb Lies Down on Broadway Pop 3001516 187 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/SILENTSO.MP3 Supernatural Anaesthetist Genesis The Lamb Lies Down on Broadway Pop 2871110 179 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/SUPERNAT.MP3 The Chamber of 32 Doors Genesis The Lamb Lies Down on Broadway Pop 5448243 340 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THECHAMB.MP3 The Colony of Slippermen Genesis The Lamb Lies Down on Broadway Pop 7910299 494 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THECOLON.MP3 The Lamb Lies Down on Broadway Genesis The Lamb Lies Down on Broadway Pop 4641101 290 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THELAMBL.MP3 The Lamia Genesis The Lamb Lies Down on Broadway Pop 6676053 417 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THELAMIA.MP3 The Waiting Room Genesis The Lamb Lies Down on Broadway Pop 5197739 324 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THEWAITI.MP3 One Metallica And Justice for all Metal 7099000 443 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/ANDJUSTI/ONE.MP3 Turn The Page Metallica Garage Inc. Metal 5865198 366 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/GARAGEIN/TURNTHEP.MP3 Blackened Metallica N/A Metal 6385106 399 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/BLACKENE.MP3 Enter Sandman Metallica N/A Metal 5316807 332 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/ENTERSAN.MP3 Eye of Beholder Metallica N/A Metal 6201210 387 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/EYEOFBEH.MP3 Fade To Black Metallica N/A Metal 6608300 413 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/FADETOBL.MP3 Master Of Puppets Metallica N/A Metal 8266905 516 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/MASTEROF.MP3 Nothing Else Matters Metallica N/A Metal 6219605 388 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/NOTHINGE.MP3 The Unforgiven Metallica N/A Metal 6194244 387 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/THEUNFOR.MP3 Thorn Within Metallica N/A Metal 5623170 351 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/THORNWIT.MP3 To Live and to Die Metallica N/A Metal 9458368 591 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/TOLIVEAN.MP3 Rite of Man Mike Oldfield B-side of "Moonlight Shadow" New Age 2297102 143 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/BSIDEOFM/RITEOFMA.MP3 Heaven's Open (Remix) Mike Oldfield Heaven's Open 12" Single New Age 4253296 265 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/HEAVENSO/HEAVENSO.MP3 Earth Moving (Club Mix) Mike Oldfield Innocent New Age 3851078 240 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/INNOCENT/EARTHMOV.MP3 Let There Be Light (Hardfloor) Mike Oldfield Let There Be Light New Age 10823487 676 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/LETTHERE/LETTHERE.MP3 Music for the Video Wall Mike Oldfield Magic Touch New Age 4249951 265 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/MAGICTOU/MUSICFOR.MP3 In the Pool Mike Oldfield Moonlight Shadow New Age 3492047 218 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/MOONLIG1/INTHEPOO.MP3 Moonlight Shadow (Extended) Mike Oldfield Moonlight Shadow Maxi CD New Age 5064003 316 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/MOONLIGH/MOONLIGH.MP3 Early Stages (Sentinel) Mike Oldfield Sentinel New Age 3971868 248 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/SENTINEL/EARLYSTA.MP3 Crime of Passion Mike Oldfield Single New Age 3473640 217 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/SINGLE/CRIMEOFP.MP3 Don Alfonso Mike Oldfield Single New Age 4836599 302 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/SINGLE/DONALFON.MP3 Silent Night Mike Oldfield Tattoo New Age 4172893 260 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TATTOOCD/SILENTNI.MP3 Tattoo (Live in Edinburgh) Mike Oldfield Tattoo New Age 3609638 225 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TATTOOCD/TATTOOLI.MP3 The Bell (MC Billy Connolly) Mike Oldfield The Bell New Age 3314841 207 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THEBELLC/THEBELLM.MP3 A New Beginning Mike Oldfield The Songs of Distant Earth New Age 1498524 93 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/ANEWBEGI.MP3 Ascension Mike Oldfield The Songs of Distant Earth New Age 5585299 349 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/ASCENSIO.MP3 Crystal Clear Mike Oldfield The Songs of Distant Earth New Age 5480894 342 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/CRYSTALC.MP3 First Landing Mike Oldfield The Songs of Distant Earth New Age 1218072 76 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/FIRSTLAN.MP3 Hibernaculum Mike Oldfield The Songs of Distant Earth New Age 3401774 212 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/HIBERNAC.MP3 In the Beginning Mike Oldfield The Songs of Distant Earth New Age 1315319 82 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/INTHEBEG.MP3 Lament for Atlantis Mike Oldfield The Songs of Distant Earth New Age 2614757 163 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/LAMENTFO.MP3 Let There Be Light Mike Oldfield The Songs of Distant Earth New Age 4761613 297 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/LETTHERE.MP3 Magellan Mike Oldfield The Songs of Distant Earth New Age 4495047 280 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/MAGELLAN.MP3 Oceania Mike Oldfield The Songs of Distant Earth New Age 3192782 199 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/OCEANIA.MP3 Only Time Will Tell Mike Oldfield The Songs of Distant Earth New Age 4264859 266 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/ONLYTIME.MP3 Prayer for the Earth Mike Oldfield The Songs of Distant Earth New Age 2078099 129 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/PRAYERFO.MP3 Supernova Mike Oldfield The Songs of Distant Earth New Age 3257150 203 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/SUPERNOV.MP3 The Chamber Mike Oldfield The Songs of Distant Earth New Age 1734109 108 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/THECHAMB.MP3 The Shining Ones Mike Oldfield The Songs of Distant Earth New Age 2873471 179 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/THESHINI.MP3 The Sunken Forest Mike Oldfield The Songs of Distant Earth New Age 2524087 157 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/THESUNKE.MP3 Tubular World Mike Oldfield The Songs of Distant Earth New Age 3231866 201 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/TUBULARW.MP3 Bones Mike Oldfield To France New Age 3163301 197 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TOFRANCE/BONES.MP3 Tubular Bells - Part Two Mike Oldfield Tubular Bells New Age 22351191 1396 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TUBULAR1/TUBULAR1.MP3 Tubular Bells - Part One Mike Oldfield Tubular Bells New Age 24516219 1532 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TUBULAR1/TUBULARB.MP3 Man in the Rain Mike Oldfield Tubular Bells III New Age 3879070 242 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TUBULARB/MANINTHE.MP3 Women of Ireland System 7 Mix Mike Oldfield Women of Ireland New Age 8671824 541 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/WOMENOFI/WOMENOFI.MP3 Tubular Bells X Mike Oldfield X-Files Soundtrack (hidden) Soundtrack 3764281 235 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/XFILESSO/TUBULARB.MP3 Argument Clinic Monty Python Instant Record Collection Comedy 3554323 222 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/INSTANTR/ARGUMENT.MP3 Pet Shop Monty Python Instant Record Collection Comedy 4675282 292 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/INSTANTR/PETSHOP.MP3 The Cheese Shop Monty Python Instant Record Collection Comedy 3933830 245 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/INSTANTR/THECHEES.MP3 Accountancy Shanty Monty Python Sings Comedy 1243398 77 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ACCOUNTA.MP3 All Things Dull And Ugly Monty Python Sings Comedy 1522184 95 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ALLTHING.MP3 Always Look On The Bright Side Of Life Monty Python Sings Comedy 3461946 216 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ALWAYSLO.MP3 Brian Song Monty Python Sings Comedy 2546170 159 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/BRIANSON.MP3 Bruces' Philosophers Song Monty Python Sings Comedy 872677 54 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/BRUCESPH.MP3 Christmas In Heaven Monty Python Sings Comedy 2669477 166 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/CHRISTMA.MP3 Decomposing Composers Monty Python Sings Comedy 2657358 166 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/DECOMPOS.MP3 Eric The Half A Bee Monty Python Sings Comedy 2072631 129 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ERICTHEH.MP3 Every Sperm Is Sacred Monty Python Sings Comedy 4398157 274 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/EVERYSPE.MP3 Finland Monty Python Sings Comedy 1980668 123 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/FINLAND.MP3 Galaxy Song Monty Python Sings Comedy 2617642 163 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/GALAXYSO.MP3 Henry Kissinger Monty Python Sings Comedy 1457840 91 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/HENRYKIS.MP3 I Like Chinese Monty Python Sings Comedy 3084505 192 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ILIKECHI.MP3 I'm So Worried Monty Python Sings Comedy 3192896 199 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/IMSOWORR.MP3 I've Got Two Legs Monty Python Sings Comedy 560036 35 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/IVEGOTTW.MP3 Knights Of The Round Table (Camelot Song) Monty Python Sings Comedy 1066208 66 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/KNIGHTSO.MP3 Lumberjack Song Monty Python Sings Comedy 3247092 202 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/LUMBERJA.MP3 Meaning Of Life Monty Python Sings Comedy 2200941 137 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/MEANINGO.MP3 Medical Love Song Monty Python Sings Comedy 3430300 214 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/MEDICALL.MP3 Money Song Monty Python Sings Comedy 893142 55 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/MONEYSON.MP3 Never Be Rude To An Arab Monty Python Sings Comedy 1011020 63 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/NEVERBER.MP3 Oliver Cromwell Monty Python Sings Comedy 4007917 250 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/OLIVERCR.MP3 Penis Song (Not The Noel Coward Song) Monty Python Sings Comedy 684189 42 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/PENISSON.MP3 Sit On My Face Monty Python Sings Comedy 741985 46 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/SITONMYF.MP3 Spam Song Monty Python Sings Comedy 532860 33 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/SPAMSONG.MP3 Crocodile Monty Python The Final Rip Off - disc 2 Comedy 2692208 168 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/THEFINAL/CROCODIL.MP3 Do Wot John Monty Python The Final Rip Off - disc 2 Comedy 495696 30 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/THEFINAL/DOWOTJOH.MP3 The Bookshop Sketch Monty Python N/A Comedy 2135268 266 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 64 22050 MPEG AUDIO FILE MP3023/MONTYPYT/UNKNOWNA/THEBOOKS.MP3 n/a N/A Deliverance Soundtrack Soundtrack 3248130 203 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/NA/DELIVERA/NA.MP3 Alborada. Capriccio Narciso Yepes Guitara Espaola Classical 1862839 116 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/ALBORADA.MP3 Cancion del fuego fatua (El am Narciso Yepes Guitara Espaola Classical 1617508 101 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/CANCIOND.MP3 Catarina d'Alio Narciso Yepes Guitara Espaola Classical 2177558 136 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/CATARINA.MP3 Danza del molinero. Farruca (E Narciso Yepes Guitara Espaola Classical 2880302 180 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/DANZADEL.MP3 Danza espanola No. 4 Villanesc Narciso Yepes Guitara Espaola Classical 5552314 347 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/DANZAESP.MP3 Danza mora Narciso Yepes Guitara Espaola Classical 1868681 116 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/DANZAMOR.MP3 El circul majico (El amor bruj Narciso Yepes Guitara Espaola Classical 2250856 140 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/ELCIRCUL.MP3 Fandanguillo op. 36 Narciso Yepes Guitara Espaola Classical 4834109 302 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/FANDANGU.MP3 Passapie Narciso Yepes Guitara Espaola Classical 2002008 125 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/PASSAPIE.MP3 Piezas caracteristicas No. 12 Narciso Yepes Guitara Espaola Classical 4386067 274 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/PIEZASCA.MP3 Recuerdos de viaje No. 6 Rumor Narciso Yepes Guitara Espaola Classical 3745755 234 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/RECUERDO.MP3 Romance Narciso Yepes Guitara Espaola Classical 2369811 148 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/ROMANCE.MP3 Sonata op 61 Narciso Yepes Guitara Espaola Classical 9745121 609 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/SONATAOP.MP3 Sueno Narciso Yepes Guitara Espaola Classical 4741866 296 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/SUENO.MP3 Suite espanola No. 5 Asturias. Narciso Yepes Guitara Espaola Classical 6225506 389 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/SUITEESP.MP3 Crazy Train Ozzy Osbourne N/A Metal 4641805 290 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/OZZYOSBO/UNKNOWNA/CRAZYTRA.MP3 Perry Mason Ozzy Osbourne N/A Metal 5667198 354 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/OZZYOSBO/UNKNOWNA/PERRYMAS.MP3 Solsbury Hill Peter Gabriel Shaking The Tree Sixteen Golds Pop 4162597 260 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/PETERGAB/SHAKINGT/SOLSBURY.MP3 Goodness Gracious Me Peter Sellers Collection Comedy 2916934 182 9 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/PETERSEL/COLLECTI/GOODNESS.MP3 One More Night Phil Collins N/A Rock 6090883 380 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/PHILCOLL/UNKNOWNA/ONEMOREN.MP3 Du Hast (German Version) Ramstein N/A Alternative 3738606 233 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/DUHASTGE.MP3 Du Hast Ramstein N/A Alternative 3768821 235 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA.MP3 n/a Ramstein N/A Alternative 3476104 217 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA2.MP3 n/a Ramstein N/A Alternative 4234283 264 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA3.MP3 n/a Ramstein N/A Alternative 4244314 265 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA4.MP3 n/a Ramstein N/A Alternative 3917052 244 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA5.MP3 Anne Boleyn Rick Wakeman The Six Wives of Henry VIII Rock 6292092 393 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/ANNEBOLE.MP3 Anne of Cleves Rick Wakeman The Six Wives of Henry VIII Rock 7566870 472 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/ANNEOFCL.MP3 Catherine of Aragon Rick Wakeman The Six Wives of Henry VIII Rock 3595707 224 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/CATHERI1.MP3 Catherine Parr Rick Wakeman The Six Wives of Henry VIII Rock 6795596 424 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/CATHERI2.MP3 Catherine Howard Rick Wakeman The Six Wives of Henry VIII Rock 6319682 394 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/CATHERIN.MP3 Jane Seymour Rick Wakeman The Six Wives of Henry VIII Rock 4601309 287 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/JANESEYM.MP3 Airlines Robert Schimmel Comes Clean Comedy 3949838 246 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/AIRLINES.MP3 Fart and Shit Jokes Robert Schimmel Comes Clean Comedy 5535011 345 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/FARTANDS.MP3 Hotels Robert Schimmel Comes Clean Comedy 1281431 80 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/HOTELS.MP3 I'm Not Homophobic Robert Schimmel Comes Clean Comedy 2368694 148 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/IMNOTHOM.MP3 Introduction Robert Schimmel Comes Clean Comedy 2850455 178 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/INTRODUC.MP3 Love Is Blind - It Will Blow Y Robert Schimmel Comes Clean Comedy 3899272 243 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/LOVEISBL.MP3 Love - Marriage - Sexual Dysfu Robert Schimmel Comes Clean Comedy 16139061 1008 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/LOVEMARR.MP3 Weird TV Commercials Robert Schimmel Comes Clean Comedy 14860933 928 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/WEIRDTVC.MP3 Friggin' in the Riggin' Sex Pistols The Great Rock'n'Roll Swindle Other 3441494 215 21 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/SEXPISTO/THEGREAT/FRIGGINI.MP3 Mandolin concerto RV425, 2nd Antonio Vivaldi Mandolin concerto Classical 3044839 190 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/ANTONIOV/MANDOLIN/MANDOLI1.MP3 Mandolin concerto RV425, 3rd Antonio Vivaldi Mandolin concerto Classical 2230655 139 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/ANTONIOV/MANDOLIN/MANDOLI2.MP3 Mandolin concerto RV425, 1st Antonio Vivaldi Mandolin concerto Classical 2631477 164 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/ANTONIOV/MANDOLIN/MANDOLIN.MP3 02 - Learning to Fly!!s Pink Floyd A Momentary Lapse of Reason New Age 4692015 293 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/AMOMENTA/02LEARNI.MP3 Alan's Psychedelic Breakfast Pink Floyd Atom Heart Mother New Age 12438602 777 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/ALANSPSY.MP3 Atom Heart Mother Suite Pink Floyd Atom Heart Mother New Age 22637215 1414 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/ATOMHEAR.MP3 Fat Old Sun Pink Floyd Atom Heart Mother New Age 5143807 321 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/FATOLDSU.MP3 If Pink Floyd Atom Heart Mother New Age 4263158 266 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/IF.MP3 Summer '68 Pink Floyd Atom Heart Mother New Age 5245370 327 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/SUMMER68.MP3 A great day for freedom Pink Floyd Division Bell New Age 4122323 257 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/AGREATDA.MP3 Cluster One Pink Floyd Division Bell New Age 5733961 358 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/CLUSTERO.MP3 Coming back to life Pink Floyd Division Bell New Age 6070844 379 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/COMINGBA.MP3 High Hopes Pink Floyd Division Bell New Age 8196992 512 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/HIGHHOPE.MP3 Keep Talking Pink Floyd Division Bell New Age 5905325 369 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/KEEPTALK.MP3 Lost for words Pink Floyd Division Bell New Age 5039406 314 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/LOSTFORW.MP3 Marooned Pink Floyd Division Bell New Age 5273808 329 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/MAROONED.MP3 Poles apart Pink Floyd Division Bell New Age 6785128 424 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/POLESAPA.MP3 Take it back Pink Floyd Division Bell New Age 5956874 372 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/TAKEITBA.MP3 Wearing the inside out Pink Floyd Division Bell New Age 6552336 409 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/WEARINGT.MP3 What do you want from me Pink Floyd Division Bell New Age 4186369 261 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/WHATDOYO.MP3 Get Your Filthy Hands Off My D Pink Floyd The Final Cut New Age 1246354 77 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/GETYOURF.MP3 Not Now John Pink Floyd The Final Cut New Age 4846635 302 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/NOTNOWJO.MP3 One of the Few Pink Floyd The Final Cut New Age 1319203 82 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/ONEOFTHE.MP3 Paranoid Eyes Pink Floyd The Final Cut New Age 3621180 226 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/PARANOID.MP3 The Final Cut Pink Floyd The Final Cut New Age 4573431 285 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEFINAL.MP3 The Fletcher Memorial Home Pink Floyd The Final Cut New Age 4025080 251 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEFLETC.MP3 The Gunners Dream Pink Floyd The Final Cut New Age 4907384 306 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEGUNNE.MP3 The Hero's Return Pink Floyd The Final Cut New Age 2840919 177 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEHEROS.MP3 The Post War Dream Pink Floyd The Final Cut New Age 2934199 183 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEPOSTW.MP3 Two Suns in the Sunset Pink Floyd The Final Cut New Age 5085718 317 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/TWOSUNSI.MP3 Your Possible Pasts Pink Floyd The Final Cut New Age 4194626 262 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/YOURPOSS.MP3 A Touch of Fairfax Robin Williams Reality What a Concept Comedy 1024826 64 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/ATOUCHOF.MP3 Come Inside My Mind Robin Williams Reality What a Concept Comedy 2633133 164 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/COMEINSI.MP3 Grandpa Funk Robin Williams Reality What a Concept Comedy 4155333 259 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/GRANDPAF.MP3 Hollywood Casting Session Robin Williams Reality What a Concept Comedy 1383614 86 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/HOLLYWOO.MP3 Kindergarten of the Stars Robin Williams Reality What a Concept Comedy 1672669 104 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/KINDERGA.MP3 Nicky Lennon Robin Williams Reality What a Concept Comedy 7675384 479 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/NICKYLEN.MP3 Pop Goes the Weasel Robin Williams Reality What a Concept Comedy 3938419 246 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/POPGOEST.MP3 Reverend Earnest Angry Robin Williams Reality What a Concept Comedy 7326538 457 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/REVEREND.MP3 Roots People Robin Williams Reality What a Concept Comedy 1760846 110 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/ROOTSPEO.MP3 Shakespeare(A Meltdowners Robin Williams Reality What a Concept Comedy 10560984 660 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/SHAKESPE.MP3 Tank You Boyce Robin Williams Reality What a Concept Comedy 383395 23 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/TANKYOUB.MP3 01- Tips On Shopping, Entertai Rodney Carrington Hangin' with Rodney Comedy 8623344 538 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/RODNEYCA/HANGINWI/01TIPSON.MP3 Ben's Song Sarah McLachlan Touch Rock 4759266 297 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/BENSSONG.MP3 Out of the Shadows Sarah McLachlan Touch Rock 4841194 302 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/OUTOFTHE.MP3 Sad Clown Sarah McLachlan Touch Rock 4344231 271 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/SADCLOWN.MP3 Steaming Sarah McLachlan Touch Rock 4546105 284 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/STEAMING.MP3 Strange World Sarah McLachlan Touch Rock 3949264 246 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/STRANGEW.MP3 Touch Sarah McLachlan Touch Rock 3118354 194 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/TOUCH.MP3 Trust Sarah McLachlan Touch Rock 4618826 288 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/TRUST.MP3 Uphill Battle Sarah McLachlan Touch Rock 4476868 279 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/UPHILLBA.MP3 Vox Sarah McLachlan Touch Rock 4694893 293 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/VOX.MP3 Vox (Extended) Sarah McLachlan Touch Rock 6559837 409 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/VOXEXTEN.MP3 Closing Time Semisonic feeling strangly fine Rock 4374070 273 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SEMISONI/FEELINGS/CLOSINGT.MP3 Ana's Song (Open Fire) Silverchair Neon Ballroom Rock 3554446 222 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/ANASSONG.MP3 Anthem for the Year 2000 Silverchair Neon Ballroom Rock 3960982 247 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/ANTHEMFO.MP3 Black Tangled Heart Silverchair Neon Ballroom Rock 4377682 273 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/BLACKTAN.MP3 Do You Feel the Same Silverchair Neon Ballroom Rock 4129415 258 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/DOYOUFEE.MP3 Emotion Sickness Silverchair Neon Ballroom Rock 5784529 361 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/EMOTIONS.MP3 Miss You Love Silverchair Neon Ballroom Rock 3853555 240 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/MISSYOUL.MP3 Paint Pastel Princess Silverchair Neon Ballroom Rock 4374758 273 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/PAINTPAS.MP3 Point of View Silverchair Neon Ballroom Rock 3440615 215 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/POINTOFV.MP3 Satin Sheets Silverchair Neon Ballroom Rock 2311286 144 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/SATINSHE.MP3 Spawn Again Silverchair Neon Ballroom Rock 3377080 211 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/SPAWNAGA.MP3 Steam Will Rise Silverchair Neon Ballroom Rock 5086954 317 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/STEAMWIL.MP3 April Showers Spike Jones The Spike Jones Anthology Comedy 1472884 92 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/APRILSHO.MP3 Barney Google Spike Jones The Spike Jones Anthology Comedy 2552054 159 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/BARNEYGO.MP3 Black Bottom Spike Jones The Spike Jones Anthology Comedy 2492843 155 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/BLACKBOT.MP3 Secret Love Spike Jones The Spike Jones Anthology Comedy 2480999 155 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/SECRETLO.MP3 n/a Spike Milligan N/A Comedy 3740262 233 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEMIL/UNKNOWNA/NA.MP3 n/a Spike Milligan N/A Comedy 2331112 291 0 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 64 44100 MPEG AUDIO FILE MP3024/SPIKEMIL/UNKNOWNA/NA2.MP3 Cool For Cats Squeeze Cool For Cats Pop 3520040 220 12 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/COOLFORC.MP3 Goodbye Girl Squeeze Cool For Cats Pop 2884740 180 11 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/GOODBYEG.MP3 Hard To Find Squeeze Cool For Cats Pop 3489101 218 0 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/HARDTOFI.MP3 Hop Skip & Jump Squeeze Cool For Cats Pop 2673814 167 7 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/HOPSKIPJ.MP3 It's Not Cricket Squeeze Cool For Cats Pop 2483644 155 4 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/ITSNOTCR.MP3 It's So Dirty Squeeze Cool For Cats Pop 3065300 191 5 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/ITSSODIR.MP3 Revue Squeeze Cool For Cats Pop 2416341 151 2 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/REVUE.MP3 Slap And Tickle Squeeze Cool For Cats Pop 3861514 241 1 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/SLAPANDT.MP3 Slightly Drunk Squeeze Cool For Cats Pop 2591336 161 10 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/SLIGHTLY.MP3 The Knack Squeeze Cool For Cats Pop 4409592 275 6 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/THEKNACK.MP3 Touching Me, Touching You Squeeze Cool For Cats Pop 2340153 146 3 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/TOUCHING.MP3 Up The Junction Squeeze Cool For Cats Pop 3073383 192 8 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/UPTHEJUN.MP3 Drive The Cars N/A Rock 3796556 237 0 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 22050 MPEG AUDIO FILE MP3024/THECARS/UNKNOWNA/DRIVE.MP3 Anybody Seen My Baby The Rolling Stones Bridges To Babylon Rock 4339672 271 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/THEROLLI/BRIDGEST/ANYBODYS.MP3 2000 Light Years From Home The Rolling Stones Their Satanic Majesties Reques Rock 4592137 287 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/THEROLLI/THEIRSAT/2000LIGH.MP3 Jailbreak Thin Lizzy Dedication Rock 3900370 243 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/THINLIZZ/DEDICATI/JAILBREA.MP3 Adiago - Allegro Wolfgang Amadeus Mozart Symphony No 38 in D, K 504 Classical 12562735 785 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHON1/ADIAGOAL.MP3 Andante Wolfgang Amadeus Mozart Symphony No 38 in D, K 504 Classical 10334447 645 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHON1/ANDANTE.MP3 Finale, Presto Wolfgang Amadeus Mozart Symphony No 38 in D, K 504 Classical 7426295 464 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHON1/FINALEPR.MP3 Adiago - Allegro Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 9987276 624 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/ADIAGOAL.MP3 Andante con moto Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 7069086 441 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/ANDANTEC.MP3 Finale, Allegro Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 7667462 479 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/FINALEAL.MP3 Menuetto and Trio, Allegretto Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 4791500 299 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/MENUETTO.MP3 Clarinet Concerto K622, 2nd Wolfgang Amadeus Mozart N/A Classical 6729130 420 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/UNKNOWNA/CLARINE1.MP3 Clarinet Concerto K622, 3rd Wolfgang Amadeus Mozart N/A Classical 9072625 567 0 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/UNKNOWNA/CLARINE2.MP3 Clarinet Concerto K622, 1st Wolfgang Amadeus Mozart N/A Classical 11659375 728 0 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/UNKNOWNA/CLARINET.MP3 Pantala Naga Pampa Dave Matthews Band Before These Crowded Streets Rock 647578 40 1 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/01PANTAL.MP3 Rapunzel Dave Matthews Band Before These Crowded Streets Rock 5765894 360 2 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/02RAPUNZ.MP3 The Last Stop Dave Matthews Band Before These Crowded Streets Rock 6685827 417 3 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/03THELAS.MP3 Don't Drink the Water Dave Matthews Band Before These Crowded Streets Rock 6742817 421 4 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/04DONTDR.MP3 Stay (Wasting Time) Dave Matthews Band Before These Crowded Streets Rock 5364664 335 5 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/05STAYWA.MP3 Halloween Dave Matthews Band Before These Crowded Streets Rock 4928305 308 6 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/06HALLOW.MP3 The Stone Dave Matthews Band Before These Crowded Streets Rock 7180686 448 7 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/07THESTO.MP3 Crush Dave Matthews Band Before These Crowded Streets Rock 7829076 489 8 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/08CRUSH.MP3 The Dreaming Tree Dave Matthews Band Before These Crowded Streets Rock 8451289 528 9 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/09THEDRE.MP3 Pig Dave Matthews Band Before These Crowded Streets Rock 6683729 417 10 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/10PIG.MP3 Spoon Dave Matthews Band Before These Crowded Streets Rock 7247140 452 11 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/11SPOON.MP3 The black man St Germain From Detroit to St Germain House 5276049 329 1 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/01THEBLA.MP3 Alabama blues St Germain From Detroit to St Germain House 5378867 336 2 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/02ALABAM.MP3 Walk so lonely St Germain From Detroit to St Germain House 4438460 277 3 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/03WALKSO.MP3 Jack on the groove St Germain From Detroit to St Germain House 4442226 277 4 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/04JACKON.MP3 Prlusion St Germain From Detroit to St Germain House 6853840 428 5 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/05PRLUSI.MP3 French St Germain From Detroit to St Germain House 5534062 345 6 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/06FRENCH.MP3 How do you plead St Germain From Detroit to St Germain House 6401616 400 7 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/07HOWDOY.MP3 Move St Germain From Detroit to St Germain House 6602642 412 8 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/08MOVE.MP3 Deep in it St Germain From Detroit to St Germain House 6988842 436 9 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/09DEEPIN.MP3 Soul salsa soul St Germain From Detroit to St Germain House 9805057 612 10 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/10SOULSA.MP3 My mama said St Germain From Detroit to St Germain House 5168215 323 11 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/11MYMAMA.MP3 Dub experience St Germain From Detroit to St Germain House 4214436 263 12 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/12DUBEXP.MP3 Intergalactic (Hardfloor X Mix) Beastie Boys N/A Hip-Hop 4715217 294 0 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/BEASTIEBOYS/UNKNOWNALBU/INTERGAL.MP3 The Time Warp The Rocky Horror Picture Show The Rocky Horror Picture Show Sound Track 3187092 199 0 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/THEROCKYHOR/THEROCKYHOR/THE TIME WARP.MP3 The Time Warp - 1989 Ext. Mix The Rocky Horror Picture Show The Rocky Horror Picture Show Soundtrack 5388780 336 0 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/THEROCKYHOR/THEROCKYHOR/THETIMEW.MP3 Blow your mind Jamiroquai Emergency On Planet Earth Acid Jazz 8195764 512 8 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/BLOWYOUR.MP3 Didgin' Out Jamiroquai Emergency On Planet Earth Acid Jazz 2491092 155 10 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/DIDGINOU.MP3 Emergency on planet earth Jamiroquai Emergency On Planet Earth Acid Jazz 3923389 245 6 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/EMERGENC.MP3 Hooked Up Jamiroquai Emergency On Planet Earth Acid Jazz 4413648 275 3 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/HOOKEDUP.MP3 If I Like It, I Do It Jamiroquai Emergency On Planet Earth Acid Jazz 4689095 293 4 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/IFILIKEI.MP3 Music Of The Mind Jamiroquai Emergency On Planet Earth Acid Jazz 6130215 383 5 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/MUSICOFT.MP3 Revolution 1993 Jamiroquai Emergency On Planet Earth Acid Jazz 9868856 616 9 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/REVOLUTI.MP3 Too Young To Die Jamiroquai Emergency On Planet Earth Acid Jazz 5797241 362 2 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/TOOYOUNG.MP3 Whatever It Is, I Can't Stop Jamiroquai Emergency On Planet Earth Acid Jazz 3955585 247 7 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/WHATEVER.MP3 When You Gonna Learn Jamiroquai Emergency On Planet Earth Acid Jazz 3684880 230 1 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/WHENYOUG.MP3 Avalon Spectral N/A Ambient 10257189 641 0 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/VARIOUS/SPECTRAL.MP3 Me BotEOrquesta Goma Dura Orquesta Goma Dura Live Latin 9127505 570 1 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/01MEBOT.MP3 Me Diste De Tu Agua Orquesta Goma Dura Orquesta Goma Dura Live Latin 7400927 462 2 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/02MEDIST.MP3 Danzn For My Father Orquesta Goma Dura Orquesta Goma Dura Live Latin 5879559 367 3 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/03DANZNF.MP3 El Pueblo Pide Que Toque Orquesta Goma Dura Orquesta Goma Dura Live Latin 10772243 673 4 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/04ELPUEB.MP3 Fuego En El Orquesta Goma Dura Orquesta Goma Dura Live Latin 8949083 559 5 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/05FUEGOE.MP3 Mam Blues Orquesta Goma Dura Orquesta Goma Dura Live Latin 7716060 482 6 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/06MAMBLU.MP3 Me BotE(Radio Edit) Orquesta Goma Dura Orquesta Goma Dura Live Latin 4142521 258 7 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/07MEBOTR.MP3 Light In The Tunnel Red Rider Over 60 Minute With... Rock 2301610 143 1 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/01LIGHTI.MP3 Power (Strength In Numbers) Red Rider Over 60 Minute With... Rock 3741486 233 2 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/02POWERS.MP3 Human Race Red Rider Over 60 Minute With... Rock 2868213 179 3 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/03HUMANR.MP3 Can't Turn Back Red Rider Over 60 Minute With... Rock 3748858 234 4 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/04CANTTU.MP3 Napoleon Sheds His Skin Red Rider Over 60 Minute With... Rock 5590393 349 5 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/05NAPOLE.MP3 Walking The Fine Line Red Rider Over 60 Minute With... Rock 4661686 291 6 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/06WALKIN.MP3 Winner Take All Red Rider Over 60 Minute With... Rock 3879401 242 7 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/07WINNER.MP3 Crack The Sky (Breakaway) Red Rider Over 60 Minute With... Rock 3839983 239 8 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/08CRACKT.MP3 Lunatic Fringe Red Rider Over 60 Minute With... Rock 4201228 262 9 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/09LUNATI.MP3 Cowboys In Hong Kong (As Far As Siam) Red Rider Over 60 Minute With... Rock 3968728 248 10 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/10COWBOY.MP3 Thru The Curtain Red Rider Over 60 Minute With... Rock 3174725 198 11 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/11THRUTH.MP3 What Have You Got To Do Red Rider Over 60 Minute With... Rock 3178076 198 12 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/12WHATHA.MP3 White Hot Red Rider Over 60 Minute With... Rock 4917049 307 13 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/13WHITEH.MP3 Don't Fight It Red Rider Over 60 Minute With... Rock 4093675 255 14 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/14DONTFI.MP3 Avenue "A" Red Rider Over 60 Minute With... Rock 3213867 200 15 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/15AVENUE.MP3 Young Thing, Wild Dreams (Rock Me) Red Rider Over 60 Minute With... Rock 3397097 212 16 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/16YOUNGT.MP3 Breaking Curfew Red Rider Over 60 Minute With... Rock 3549911 221 17 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/17BREAKI.MP3 Hello, I Love You The Doors The Best of The Doors (Disc 2) Rock 2158052 134 1 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/01HELLOI.MP3 Roadhouse Blues The Doors The Best of The Doors (Disc 2) Rock 3899685 243 2 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/02ROADHO.MP3 L.A. Woman The Doors The Best of The Doors (Disc 2) Rock 7521295 470 3 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/03LAWOMA.MP3 Riders on the Storm The Doors The Best of The Doors (Disc 2) Rock 6890604 430 4 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/04RIDERS.MP3 Touch Me The Doors The Best of The Doors (Disc 2) Rock 3072955 192 5 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/05TOUCHM.MP3 Love Her Madly The Doors The Best of The Doors (Disc 2) Rock 3162544 197 6 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/06LOVEHE.MP3 The Unknown Soldier The Doors The Best of The Doors (Disc 2) Rock 3259376 203 7 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/07THEUNK.MP3 The End The Doors The Best of The Doors (Disc 2) Rock 11228170 701 8 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/08THEEND.MP3 Break On Through The Doors The Best of The Doors (Disc 1) Rock 2357447 147 1 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/01BREAKO.MP3 Light My Fire The Doors The Best of The Doors (Disc 1) Rock 6827238 426 2 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/02LIGHTM.MP3 The Chrystal Ship The Doors The Best of The Doors (Disc 1) Rock 2459848 153 3 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/03THECHR.MP3 People Are Strange The Doors The Best of The Doors (Disc 1) Rock 2098315 131 4 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/04PEOPLE.MP3 Strange Days The Doors The Best of The Doors (Disc 1) Rock 2995387 187 5 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/05STRANG.MP3 Love Me Two Times The Doors The Best of The Doors (Disc 1) Rock 3136942 196 6 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/06LOVEME.MP3 Alabama Song The Doors The Best of The Doors (Disc 1) Rock 3202278 200 7 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/07ALABAM.MP3 Five To One The Doors The Best of The Doors (Disc 1) Rock 4258738 266 8 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/08FIVETO.MP3 Waiting For The Sun The Doors The Best of The Doors (Disc 1) Rock 3830756 239 9 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/09WAITIN.MP3 Spanish Caravan The Doors The Best of The Doors (Disc 1) Rock 2854541 178 10 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/10SPANIS.MP3 When The Music's Over The Doors The Best of The Doors (Disc 1) Rock 10492190 655 11 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/11WHENTH.MP3 Groove Is In The Heart Deee-Lite Armand Van Helden Mix Dance 5276504 329 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/ARMANDVANHE/GROOVEIS.MP3 DMT (Dance Music Trance) Deee-Lite Dewdrops in the Garden Dance 4281153 267 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/DEWDROPSINT/DMTDANCE.MP3 Goodbeatapella (Sampladelic) Deee-Lite Sampladelic Relics and Dancefl Dance 904464 56 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/SAMPLADELIC/GOODBEAT.MP3 Groove Is In The Heart Deee-Lite N/A Dance 3711916 231 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/UNKNOWNALBU/GROOVEIS.MP3 Power Of Love Deee-Lite N/A Dance 4532070 283 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/UNKNOWNALBU/POWEROFL.MP3 You Sexy Thing Deee-Lite N/A Dance 3949853 246 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/UNKNOWNALBU/YOUSEXYT.MP3 Imagine John Lennon N/A Rock 2943686 183 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/JOHNLENNON/UNKNOWNALBU/IMAGINE.MP3 Take Time Lenny Kravitz 5 (Reissued W/ Bonus Tracks) Rock 4351092 271 7 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/5REISSUEDWB/TAKETIME.MP3 American Woman Lenny Kravitz Austin Powers 2 Soundtrack 4162454 260 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/AUSTINPOWER/AMERICAN.MP3 Take Me To the River Lenny Kravitz With Al Green & Sheryl Crow Rock 3707297 231 1 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/WITHALGREEN/TAKEMETO.MP3 Rebel rebel Lenny Kravitz With Iggy Pop Rock 4073061 254 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/WITHIGGYPOP/REBELREB.MP3 Purple haze Lenny Kravitz With Ozzy Osbourne Rock 4170535 260 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/WITHOZZYOSB/PURPLEHA.MP3 Are you Gonna Go My Way Lenny Kravitz N/A Rock 3387976 211 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/AREYOUGO.MP3 Believe Lenny Kravitz N/A Rock 4224730 264 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/BELIEVE.MP3 Believe (live acoustic) Lenny Kravitz N/A Rock 5026933 314 1 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/BELIEVEL.MP3 Can't Get You Lenny Kravitz N/A Rock 4385226 274 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/CANTGETY.MP3 Circus Lenny Kravitz N/A Rock 4610924 288 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/CIRCUS.MP3 Eleutheria Lenny Kravitz N/A Reggae 4664423 291 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/ELEUTHER.MP3 Fields of Joy Lenny Kravitz N/A Rock 3797158 237 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/FIELDSOF.MP3 Fly Away Lenny Kravitz N/A Rock 3548054 221 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/FLYAWAY.MP3 Fly Away (acoustic) Lenny Kravitz N/A Rock 3889109 243 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/FLYAWAYA.MP3 I Belong to You Lenny Kravitz N/A Rock 4124002 257 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/IBELONGT.MP3 If You Can't Say No Lenny Kravitz N/A Rock 5072985 317 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/IFYOUCAN.MP3 It Ain't Over 'Til It's Over Lenny Kravitz N/A Rock 3882840 242 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/ITAINTOV.MP3 Let Love Rule Lenny Kravitz N/A Rock 5474845 342 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/LETLOVER.MP3 Live Lenny Kravitz N/A Rock 4975802 310 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/LIVE.MP3 Mama Said Lenny Kravitz N/A Rock 3723597 232 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/MAMASAID.MP3 My Precious Love Lenny Kravitz N/A Rock 5051871 315 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/MYPRECIO.MP3 Rock And Roll is Dead Lenny Kravitz N/A Rock 2953717 184 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/ROCKANDR.MP3 Mr Roboto Styx N/A Pop 5276315 329 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/STYX/UNKNOWNALBU/MRROBOTO.MP3 Live Session Alanis Morissette EMP Grand Opening Concert Rock 5028047 314 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/EMPGRANDOPE/ALANISMORIS/LIVESESS.MP3 Live Session Matchbox 20 EMP Grand Opening Concert Rock 12235332 764 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/EMPGRANDOPE/MATCHBOX20/LIVESESS.MP3 Live Session No Doubt EMP Grand Opening Concert Rock 13525572 845 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/EMPGRANDOPE/NODOUBT/LIVESESS.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 10639147 664 1 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES1.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 9054246 565 2 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES2.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 5175309 323 4 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES4.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 3743241 233 3 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES3.MP3 Bombs Over Bagdad Outkast N/A Rap 4786885 299 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/OUTKAST/UNKNOWNALBU/BOMBSOVE.MP3 The Three Of Us Ben Harper Welcome to the Cruel World Rock 2502203 156 1 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/01THETHR.MP3 Whipping Boy Ben Harper Welcome to the Cruel World Rock 5331782 333 2 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/02WHIPPI.MP3 Breakin' Down Ben Harper Welcome to the Cruel World Rock 3852487 240 3 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/03BREAKI.MP3 Don't Take That Attitude To Your Grave Ben Harper Welcome to the Cruel World Rock 4233690 264 4 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/04DONTTA.MP3 Waiting On An Angel Ben Harper Welcome to the Cruel World Rock 3737554 233 5 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/05WAITIN.MP3 Mama's Got A Girlfriend Now Ben Harper Welcome to the Cruel World Rock 2404411 150 6 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/06MAMASG.MP3 Forever Ben Harper Welcome to the Cruel World Rock 3270682 204 7 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/07FOREVE.MP3 Like A King Ben Harper Welcome to the Cruel World Rock 4133353 258 8 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/08LIKEAK.MP3 Pleasure And Pain Ben Harper Welcome to the Cruel World Rock 3635570 227 9 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/09PLEASU.MP3 Walk Away Ben Harper Welcome to the Cruel World Rock 3689063 230 10 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/10WALKAW.MP3 How Many Miles Must We March Ben Harper Welcome to the Cruel World Rock 3037900 189 11 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/11HOWMAN.MP3 Welcome To The Cruel World Ben Harper Welcome to the Cruel World Rock 5366349 335 12 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/12WELCOM.MP3 I'll Rise Ben Harper Welcome to the Cruel World Rock 5999122 374 13 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/13ILLRIS.MP3 Numb Holly McNarland Stuff Rock 3794352 237 1 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/01NUMB.MP3 Elmo Holly McNarland Stuff Rock 4491090 280 2 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/02ELMO.MP3 Porno Mouth Holly McNarland Stuff Rock 4112844 257 3 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/03PORNOM.MP3 Water Holly McNarland Stuff Rock 5320740 332 4 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/04WATER.MP3 Coward Holly McNarland Stuff Rock 4497779 281 5 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/05COWARD.MP3 the Box Holly McNarland Stuff Rock 3132726 195 6 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/06THEBOX.MP3 U.F.O. Holly McNarland Stuff Rock 4478971 279 7 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/07UFO.MP3 Mystery Song Holly McNarland Stuff Rock 4894846 305 8 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/08MYSTER.MP3 Just in Me Holly McNarland Stuff Rock 2246656 140 9 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/09JUSTIN.MP3 Twisty Mirror Holly McNarland Stuff Rock 3118942 194 10 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/10TWISTY.MP3 I Won't Stay Holly McNarland Stuff Rock 3948311 246 11 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/11IWONTS.MP3 Believe in you Amanda Marshall Tuesday's Child Rock 4318925 269 1 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/01BELIEV.MP3 Love lift me Amanda Marshall Tuesday's Child Rock 3637372 227 2 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/02LOVELI.MP3 Why don't you Love me ? Amanda Marshall Tuesday's Child Rock 4013406 250 3 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/03WHYDON.MP3 Too little, too late Amanda Marshall Tuesday's Child Rock 4434009 277 4 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/04TOOLIT.MP3 If I didn't have you Amanda Marshall Tuesday's Child Rock 5302946 331 5 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/05IFIDID.MP3 Ride Amanda Marshall Tuesday's Child Rock 4295927 268 6 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/06RIDE.MP3 Right here all along Amanda Marshall Tuesday's Child Rock 4991009 311 7 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/07RIGHTH.MP3 Wishful thinking Amanda Marshall Tuesday's Child Rock 4487922 280 8 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/08WISHFU.MP3 Shades of grey Amanda Marshall Tuesday's Child Rock 4822983 301 9 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/09SHADES.MP3 Give up giving in Amanda Marshall Tuesday's Child Rock 4603560 287 10 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/10GIVEUP.MP3 Best of me Amanda Marshall Tuesday's Child Rock 4247174 265 11 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/11BESTOF.MP3 Never said goodbye Amanda Marshall Tuesday's Child Rock 6121170 382 12 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/12NEVERS.MP3 Out of bounds Amanda Marshall Tuesday's Child Rock 3745068 234 13 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/13OUTOFB.MP3 Deep Water Jewel Spirit Pop 4101980 256 1 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/01DEEPWA.MP3 What's Simple Is True Jewel Spirit Pop 3455130 215 2 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/02WHATSS.MP3 Hands Jewel Spirit Pop 3759805 234 3 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/03HANDS.MP3 Kiss The Flame Jewel Spirit Pop 3157397 197 4 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/04KISSTH.MP3 Down So Long Jewel Spirit Pop 4089861 255 5 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/05DOWNSO.MP3 Innocense Maintained Jewel Spirit Pop 3984126 249 6 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/06INNOCE.MP3 Jupiter Jewel Spirit Pop 4162581 260 7 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/07JUPITE.MP3 Fat Boy Jewel Spirit Pop 2824276 176 8 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/08FATBOY.MP3 Barcelona Jewel Spirit Pop 3910276 244 9 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/09BARCEL.MP3 Life Uncommon Jewel Spirit Pop 3766086 235 10 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/10LIFEUN.MP3 Do You Jewel Spirit Pop 4746889 296 11 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/11DOYOU.MP3 Absense Of Fear Jewel Spirit Pop 4203551 262 12 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/12ABSENS.MP3 This Little Bird Jewel Spirit Pop 7126757 445 13 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/13THISLI.MP3 Our House Madness Madness N/A 3217713 201 1 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/01OURHOU.MP3 Tomorrow's Just Another Day Madness Madness Pop 3119510 194 2 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/02TOMORR.MP3 It Must Be Love Madness Madness Pop 3287378 205 3 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/03ITMUST.MP3 Primrose Hill Madness Madness Pop 3449544 215 4 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/04PRIMRO.MP3 Shut Up Madness Madness Pop 3327494 207 5 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/05SHUTUP.MP3 House of Fun Madness Madness Pop 2882373 180 6 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/06HOUSEO.MP3 Night Boat to Cairo Madness Madness Pop 3145834 196 7 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/07NIGHTB.MP3 Rise and Fall Madness Madness Pop 3123118 195 8 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/08RISEAN.MP3 Blue Skinned Beast Madness Madness Pop 3227195 201 9 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/09BLUESK.MP3 Cardiac Arrest Madness Madness Pop 2856185 178 10 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/10CARDIA.MP3 Grey Day Madness Madness Pop 3518922 219 11 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/11GREYDA.MP3 Madness (Is All In The Mind) Madness Madness Pop 2759093 172 12 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/12MADNES.MP3 Ain't It Heavy Melissa Etheridge Never Enough Rock 4225837 264 1 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/01AINTIT.MP3 2001 Melissa Etheridge Never Enough Rock 4474094 279 2 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/022001.MP3 Dance Without Sleeping Melissa Etheridge Never Enough Rock 5478328 342 3 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/03DANCEW.MP3 Place Your Hand Melissa Etheridge Never Enough Rock 3320817 207 4 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/04PLACEY.MP3 Must Be Crazy For Me Melissa Etheridge Never Enough Rock 3582046 223 5 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/05MUSTBE.MP3 Meet Me In The Back Melissa Etheridge Never Enough Rock 3909725 244 6 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/06MEETME.MP3 The Boy Feels Strange Melissa Etheridge Never Enough Rock 4354853 272 7 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/07THEBOY.MP3 Keep It Precious Melissa Etheridge Never Enough Rock 6016793 376 8 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/08KEEPIT.MP3 The Letting Go Melissa Etheridge Never Enough Rock 3009158 188 9 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/09THELET.MP3 It's For You Melissa Etheridge Never Enough Rock 5523878 345 10 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/10ITSFOR.MP3 I'm The Only One Melissa Etheridge Yes I Am Rock 4710946 294 1 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/01IMTHEO.MP3 If I Wanted To Melissa Etheridge Yes I Am Rock 3761759 235 2 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/02IFIWAN.MP3 Come To My Window Melissa Etheridge Yes I Am Rock 3800633 237 3 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/03COMETO.MP3 Silent Legacy Melissa Etheridge Yes I Am Rock 5184073 324 4 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/04SILENT.MP3 I Will Never Be The Same Melissa Etheridge Yes I Am Rock 4496541 281 5 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/05IWILLN.MP3 All American Girl Melissa Etheridge Yes I Am Rock 3924070 245 6 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/06ALLAME.MP3 Yes I Am Melissa Etheridge Yes I Am Rock 4221926 263 7 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/07YESIAM.MP3 Resist Melissa Etheridge Yes I Am Rock 2856174 178 8 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/08RESIST.MP3 Ruins Melissa Etheridge Yes I Am Rock 4692127 293 9 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/09RUINS.MP3 Talking To My Angel Melissa Etheridge Yes I Am Rock 4613985 288 10 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/10TALKIN.MP3 Your Little Secret Melissa Etheridge Your Little Secret Rock 4157163 259 1 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/01YOURLI.MP3 I Really Like You Melissa Etheridge Your Little Secret Rock 3984963 249 2 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/02IREALL.MP3 Nowhere To Go Melissa Etheridge Your Little Secret Rock 5649689 353 3 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/03NOWHER.MP3 An Unusual Kiss Melissa Etheridge Your Little Secret Rock 5136856 321 4 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/04ANUNUS.MP3 I Want To Come Over Melissa Etheridge Your Little Secret Rock 5195792 324 5 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/05IWANTT.MP3 All The Way To Heaven Melissa Etheridge Your Little Secret Rock 4697725 293 6 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/06ALLTHE.MP3 I Could Have Been You Melissa Etheridge Your Little Secret Rock 5690379 355 7 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/07ICOULD.MP3 Shriner's Park Melissa Etheridge Your Little Secret Rock 5169873 323 8 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/08SHRINE.MP3 Change Melissa Etheridge Your Little Secret Rock 4421859 276 9 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/09CHANGE.MP3 This War Is Over Melissa Etheridge Your Little Secret Rock 6689576 418 10 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/10THISWA.MP3 Livin' La Vida Loca Ricky Martin Ricky Martin Latin 3895955 243 1 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/01LIVINL.MP3 Spanish Eyes Ricky Martin Ricky Martin Latin 3926041 245 2 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/02SPANIS.MP3 She's All I Ever Had Ricky Martin Ricky Martin Latin 4726441 295 3 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/03SHESAL.MP3 Shake Your Bon-Bon Ricky Martin Ricky Martin Latin 3078009 192 4 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/04SHAKEY.MP3 Be Careful (Cuidado Con Mi Corazon) Ricky Martin Ricky Martin Latin 3916173 244 5 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/05BECARE.MP3 I Am Made Of You Ricky Martin Ricky Martin Latin 4464377 279 6 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/06IAMMAD.MP3 Love You For A Day Ricky Martin Ricky Martin Latin 3630968 226 7 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/07LOVEYO.MP3 Private Emotion Ricky Martin Ricky Martin Latin 3885920 242 8 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/08PRIVAT.MP3 La Copa De La Vida/The Cup Of Life Ricky Martin Ricky Martin Latin 4465648 279 9 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/09LACOPA.MP3 You Stay With Me Ricky Martin Ricky Martin Latin 4043634 252 10 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/10YOUSTA.MP3 Livin' La Vida Loca (Sp) Ricky Martin Ricky Martin Latin 3914351 244 11 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/11LIVINL.MP3 I Count The Minutes Ricky Martin Ricky Martin Latin 4135866 258 12 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/12ICOUNT.MP3 Bella (She's All I Ever Had) Ricky Martin Ricky Martin Latin 4742055 296 13 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/13BELLAS.MP3 Maria Ricky Martin Ricky Martin Latin 4344413 271 14 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/14MARIA.MP3 I Don't Want to Miss a Thing Aerosmith Armageddon - The Album Soundtrack 4788732 299 1 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/01IDONTW.MP3 Remember Me Journey Armageddon - The Album Soundtrack 5275357 329 2 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/02REMEMB.MP3 What Kind of Love Are You On Aerosmith Armageddon - The Album Soundtrack 3134032 195 3 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/03WHATKI.MP3 La Grange ZZ Top Armageddon - The Album Soundtrack 3439538 214 4 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/04LAGRAN.MP3 Roll Me Away Bob Seger Armageddon - The Album Soundtrack 4452259 278 5 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/05ROLLME.MP3 When the Rainbow Comes Shawn Colvin Armageddon - The Album Soundtrack 4180598 261 6 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/06WHENTH.MP3 Sweet Emotion Aerosmith Armageddon - The Album Soundtrack 4962170 310 7 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/07SWEETE.MP3 Mister Big Time Jon Bon Jovi Armageddon - The Album Soundtrack 2678587 167 8 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/08MISTER.MP3 Come Together Aerosmith Armageddon - The Album Soundtrack 3593354 224 9 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/09COMETO.MP3 Wish I Were You Patty Smyth Armageddon - The Album Soundtrack 3679460 229 10 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/10WISHIW.MP3 Starseed Our Lady Peace Armageddon - The Album Soundtrack 4185604 261 11 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/11STARSE.MP3 Leaving On a Jet Plane Chantal Kreviazuk Armageddon - The Album Soundtrack 4491985 280 12 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/12LEAVIN.MP3 Theme from Armageddon Trevor Rabin Armageddon - The Album Soundtrack 3011986 188 13 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/13THEMEF.MP3 Animal Crackers Steven Tyler Armageddon - The Album Soundtrack 2490367 155 14 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/14ANIMAL.MP3 Insane In The Brain Cypress Hill N/A Hip-Hop 5091281 318 0 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/CYPRESSH.MP3 Intro Will Smith Big Willie Style Pop 1785402 111 1 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/01INTRO.MP3 Y'All Know Will Smith Big Willie Style Pop 3798298 237 2 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/02YALLKN.MP3 Gettin' Jiggy Wit It Will Smith Big Willie Style Pop 3646589 227 3 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/03GETTIN.MP3 Candy (Featuring Larry Blackmon And Cameo) Will Smith Big Willie Style Pop 3791921 236 4 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/04CANDYF.MP3 Chasing Forever Will Smith Big Willie Style Pop 4096168 256 5 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/05CHASIN.MP3 Keith B-Real I (Interlude) Will Smith Big Willie Style Pop 1075589 67 6 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/06KEITHB.MP3 Don't Say Nothin' Will Smith Big Willie Style Pop 4204143 262 7 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/07DONTSA.MP3 Miami Will Smith Big Willie Style Pop 3162019 197 8 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/08MIAMI.MP3 Yes Yes Y'All Will Smith Big Willie Style Pop 4209851 263 9 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/09YESYES.MP3 I Loved You Will Smith Big Willie Style Pop 4042249 252 10 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/10ILOVED.MP3 Keith B-Real II (Interlude) Will Smith Big Willie Style Pop 483344 30 11 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/11KEITHB.MP3 It's All Good Will Smith Big Willie Style Pop 3913241 244 12 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/12ITSALL.MP3 Just The Two Of Us Will Smith Big Willie Style Pop 5049119 315 13 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/13JUSTTH.MP3 Keith B-Real III (Interlude) Will Smith Big Willie Style Pop 1831403 114 14 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/14KEITHB.MP3 Big Willie Style (Featuring Left Eye) Will Smith Big Willie Style Pop 3448773 215 15 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/15BIGWIL.MP3 Men In Black Will Smith Big Willie Style Pop 3641845 227 16 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/16MENINB.MP3 Rose rouge St Germain Tourist Jazz 6729665 420 1 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/01ROSERO.MP3 Montego bay spleen St Germain Tourist Jazz 5481648 342 2 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/02MONTEG.MP3 So flute St Germain Tourist Jazz 8149888 509 3 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/03SOFLUT.MP3 Land of... St Germain Tourist Jazz 7525041 470 4 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/04LANDOF.MP3 Latin note St Germain Tourist Jazz 5717369 357 5 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/05LATINN.MP3 Sure thing St Germain Tourist Jazz 6117913 382 6 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/06SURETH.MP3 Pont Des Arts St Germain Tourist Jazz 7117116 444 7 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/07PONTDE.MP3 La goutte d'or St Germain Tourist Jazz 6047282 377 8 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/08LAGOUT.MP3 What you think about St Germain Tourist Jazz 4591955 286 9 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/09WHATYO.MP3 Oral On The Television Victor Lewis Smith N/A Comedy 3858898 426 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI003B1.MP3 Women's Trouble Victor Lewis Smith N/A Comedy 4177516 467 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI50711.MP3 Victor Breaks Radio 4 Victor Lewis Smith N/A Comedy 3854003 426 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI52951.MP3 More Buygones Victor Lewis Smith N/A Comedy 3237487 358 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI6F491.MP3 The Murpia Victor Lewis Smith N/A Comedy 3843684 429 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI90AE1.MP3 New Year's Eve Victor Lewis Smith N/A Comedy 2793206 312 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 71 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI9AE11.MP3 Mr Crisp Victor Lewis Smith N/A Comedy 3852738 428 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIA4BC1.MP3 Pol Pot Wig On A String Victor Lewis Smith N/A Comedy 3655346 408 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIBCB11.MP3 Right To Reply Victor Lewis Smith N/A Comedy 379689 42 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIBFDD1.MP3 Antiques Victor Lewis Smith N/A Comedy 3753621 415 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTOR1.MP3 Buygones Victor Lewis Smith N/A Comedy 3836259 428 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTOR2.MP3 Finished Victor Lewis Smith N/A Comedy 3722964 412 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTOR4.MP3 Class Victor Lewis Smith N/A Comedy 3668288 412 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 71 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTORLE.MP3 Piss & Shit Victor Lewis Smith N/A Comedy 3601443 395 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 73 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIE1C21.MP3 Series1 no2 - 14th March 1965 Kenneth Horne Round The Horne Comedy 6711040 1677 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65031.MP3 Series1 no3 - 21st March 1965 Kenneth Horne Round The Horne Comedy 6709064 1677 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65032.MP3 65-03-~3.MP3 Kenneth Horne Round The Horne Comedy 5654886 1413 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65033.MP3 Series 1 no.1 - 7th March 1965 Kenneth Horne Round The Horne Comedy 6719984 1679 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65034.MP3 Series1 no6 - 11th April 1965 Kenneth Horne Round The Horne Comedy 6679736 1669 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65041.MP3 Round the Horne Vol5 Side1 Kenneth Horne Round The Horne Comedy 4761716 1587 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/65051.MP3 65-05-~2.MP3 Kenneth Horne Round The Horne Comedy 7239984 1809 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65052.MP3 Round the Horne Vol5 Side2 Kenneth Horne Round The Horne Comedy 4739018 1579 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/65061.MP3 65-06-~2.MP3 Kenneth Horne Round The Horne Comedy 7033336 1758 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65062.MP3 Round the Horne Vol5 Side4 Kenneth Horne Round The Horne Comedy 5106866 1702 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/65063.MP3 Round the Horne Vol6 Side1 Kenneth Horne Round The Horne Comedy 5295158 1765 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/67021.MP3 N/A Blaster Bates N/A Comedy 915340 228 1 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLA88D1.MP3 N/A Blaster Bates N/A Comedy 1255940 313 2 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLAE7B1.MP3 N/A Blaster Bates N/A Comedy 1199156 299 3 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE1.MP3 N/A Blaster Bates N/A Comedy 1582708 395 4 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE2.MP3 N/A Blaster Bates N/A Comedy 1151732 287 5 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE3.MP3 N/A Blaster Bates N/A Comedy 800940 200 6 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE4.MP3 1985 The Goons The Goon Show Comedy 5099456 1699 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/GOONS/1985.MP3 Wings Over Dagenham The Goons The Goon Show Comedy 6506160 1626 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57011.MP3 Around The World in 80 Days The Goons The Goon Show Comedy 6512712 1628 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57021.MP3 Spon The Goons The Goon Show Comedy 7635575 1908 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57091.MP3 The Great Regents Park Swim The Goons The Goon Show Comedy 6424312 1606 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57101.MP3 The Mummified Priest The Goons The Goon Show Comedy 7286160 1821 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57102.MP3 The Junk Affair The Goons The Goon Show Comedy 7084073 1771 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57103.MP3 The Burning Embassy The Goons The Goon Show Comedy 6397376 1599 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57104.MP3 57-11-~2.MP3 The Goons The Goon Show Comedy 6370661 1592 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57112.MP3 The Space Age The Goons The Goon Show Comedy 6380424 1595 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57113.MP3 The Policy The Goons The Goon Show Comedy 6902307 1725 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57114.MP3 The Kippered Herring Gang The Goons The Goon Show Comedy 7155268 1788 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57121.MP3 King Solomon's Mines The Goons The Goon Show Comedy 7229716 1807 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57122.MP3 The Great British Revolution The Goons The Goon Show Comedy 6472568 1618 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57123.MP3 Missing 10 Downing Street The Goons The Goon Show Comedy 5702760 1425 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/576F421.MP3 The Plasticine Man The Goons The Goon Show Comedy 7989097 1997 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/577E881.MP3 The Vanishing Room The Goons The Goon Show Comedy 6442490 1610 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/5791AD1.MP3 The Treasure in the Tower The Goons The Goon Show Comedy 7374672 1843 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57B1D01.MP3 The Stolen Postman The Goons The Goon Show Comedy 6392488 1598 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57F29A1.MP3 The Mustard and Cress Shortage The Goons The Goon Show Comedy 6294728 1573 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58011.MP3 The Great String Robbery The Goons The Goon Show Comedy 7115600 1778 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58012.MP3 The Moriarity Murder Mystery The Goons The Goon Show Comedy 7432215 1858 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58013.MP3 The Curse of Frankenstein The Goons The Goon Show Comedy 6396336 1599 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58014.MP3 10 Snowballs That Shook The World The Goons The Goon Show Comedy 6394363 1598 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58021.MP3 The White Neddie Trade The Goons The Goon Show Comedy 7424272 1856 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58022.MP3 The Internal Mountain The Goons The Goon Show Comedy 6797637 1699 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58023.MP3 The Man Who Never Was The Goons The Goon Show Comedy 7057152 1764 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58024.MP3 The Evils of Bushey Spon The Goons The Goon Show Comedy 7207224 1801 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58031.MP3 Tiddleywinks The Goons The Goon Show Comedy 7023171 1755 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58032.MP3 The Great Statue Debate The Goons The Goon Show Comedy 6433152 1608 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58033.MP3 The Albert Memorial The Goons The Goon Show Comedy 5228925 1307 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58034.MP3 58-09-~1.MP3 The Goons The Goon Show Comedy 7443512 1860 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58091.MP3 The Vanishing Room (tlo65471) The Goons The Goon Show Comedy 6987716 1746 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58101.MP3 The Sahara Desert Statue The Goons The Goon Show Comedy 6379072 1594 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58102.MP3 Pam's Paper Insurance Policy The Goons The Goon Show Comedy 6991008 1747 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58111.MP3 The 1,000,000 Penny The Goons The Goon Show Comedy 7459561 1864 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58112.MP3 The Childe Harolde Rewarde The Goons The Goon Show Comedy 7668256 1917 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58121.MP3 The Childe Harolde Rewarde The Goons The Goon Show Comedy 7668256 1917 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58122.MP3 The Battle of Spion Kop The Goons The Goon Show Comedy 7420112 1855 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58123.MP3 Queen Anne's Rain The Goons The Goon Show Comedy 7213464 1803 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58124.MP3 The Mountain Eaters The Goons The Goon Show Comedy 7135256 1783 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58B01A1.MP3 The Dreaded Piano Clubber The Goons The Goon Show Comedy 6882076 1720 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58B4641.MP3 Call of the West The Goons The Goon Show Comedy 7725332 1931 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59011.MP3 Who Is Pink Oboe? The Goons The Goon Show Comedy 7403758 1850 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59012.MP3 Ned's Atomic Dustbin The Goons The Goon Show Comedy 7975160 1993 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59013.MP3 Dishonoured---Again The Goons The Goon Show Comedy 6907288 1726 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59014.MP3 The Scarlet Capsule The Goons The Goon Show Comedy 6992984 1748 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59021.MP3 Bluebottle Blues The Goons The World Of The Goons Comedy 3198976 799 1 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 44100 MPEG AUDIO FILE MP3026/GOONS/BLUEBO1.MP3 I'm Walking Backwards For Christmas The Goons The World Of The Goons Comedy 3164160 791 2 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 44100 MPEG AUDIO FILE MP3026/GOONS/IMWAL1.MP3 Blue Collar Dollar Jeff Foxworthy Big Funny Comedy 2995931 187 15 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/BLUECOLL.MP3 House Full Of Girls Jeff Foxworthy Big Funny Comedy 4644779 290 9 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/HOUSEFUL.MP3 I Don't Need To Know That Jeff Foxworthy Big Funny Comedy 1393894 87 11 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/IDONTNEE.MP3 I'd Thought I'd Heard Every Re Jeff Foxworthy Big Funny Comedy 1886389 117 3 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/IDTHOUGH.MP3 Introduction Jeff Foxworthy Big Funny Comedy 745221 46 1 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/INTRODUC.MP3 It's A Different World Jeff Foxworthy Big Funny Comedy 4864207 304 10 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/ITSADIFF.MP3 Jeff Gordon Enunciates Jeff Foxworthy Big Funny Comedy 2135353 133 5 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/JEFFGORD.MP3 My Wife's Family Jeff Foxworthy Big Funny Comedy 5647880 352 8 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/MYWIFESF.MP3 Seeing Things On The Road Jeff Foxworthy Big Funny Comedy 3508348 219 2 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/SEEINGTH.MP3 Speaking Of Words Jeff Foxworthy Big Funny Comedy 1155379 72 6 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/SPEAKING.MP3 Telephones In The Bathroom Jeff Foxworthy Big Funny Comedy 1146184 71 4 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/TELEPHON.MP3 Thanks Y'All - Encore Jeff Foxworthy Big Funny Comedy 2196793 137 14 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/THANKSYA.MP3 The Way I Grew Up Jeff Foxworthy Big Funny Comedy 1904222 119 7 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/THEWAYIG.MP3 Women Want To Talk Jeff Foxworthy Big Funny Comedy 6045359 377 13 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/WOMENWAN.MP3 You Are Being Trained Jeff Foxworthy Big Funny Comedy 1184914 74 12 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/YOUAREBE.MP3 I Love Being Married Jeff Foxworthy You Might Be a Redneck If... Comedy 16098948 1006 3 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/ILOVEBEI.MP3 Words In The South Jeff Foxworthy You Might Be a Redneck If... Comedy 2160570 135 1 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/WORDSINT.MP3 You Might Be a Redneck If Jeff Foxworthy You Might Be a Redneck If... Comedy 2608065 163 4 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/YOU MIGHT BE A REDNECK IF.MP3 You Might Be A Redneck If... Jeff Foxworthy You Might Be a Redneck If... Comedy 2608065 163 2 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/YOUMIGHT.MP3 Abe Lincoln Versus Madison Ave Bob Newhart Bob Newhart Button Down Concer Comedy 5440295 340 7 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/ABELINCO.MP3 Bob at the Unemployment Office Bob Newhart Bob Newhart Button Down Concer Comedy 855284 53 2 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/BOBATTHE.MP3 Bus Driver's School Bob Newhart Bob Newhart Button Down Concer Comedy 4797752 299 3 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/BUSDRIVE.MP3 Driving Instructor Bob Newhart Bob Newhart Button Down Concer Comedy 7573851 473 5 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/DRIVINGI.MP3 Edison's Most Famous Invention Bob Newhart Bob Newhart Button Down Concer Comedy 1067886 66 12 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/EDISONSM.MP3 Greeting Bob Newhart Bob Newhart Button Down Concer Comedy 965904 60 1 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/GREETING.MP3 Introducing Tobacco Bob Newhart Bob Newhart Button Down Concer Comedy 5456037 341 13 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/INTRODUC.MP3 King Kong Bob Newhart Bob Newhart Button Down Concer Comedy 4322532 270 4 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/KINGKONG.MP3 Nobody Will Ever Play Baseball Bob Newhart Bob Newhart Button Down Concer Comedy 3694340 230 10 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/NOBODYWI.MP3 Retirement Party Bob Newhart Bob Newhart Button Down Concer Comedy 6786819 424 14 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/RETIREME.MP3 The Cruise of the U.S.S. Codfi Bob Newhart Bob Newhart Button Down Concer Comedy 4955322 309 8 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THECRUIS.MP3 The Grace L. Ferguson Airline Bob Newhart Bob Newhart Button Down Concer Comedy 6097744 381 6 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THEGRACE.MP3 The Nude Police Line-Up Bob Newhart Bob Newhart Button Down Concer Comedy 2951627 184 11 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THENUDEP.MP3 The One-Eyed Bullfighter Bob Newhart Bob Newhart Button Down Concer Comedy 872281 54 9 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THEONEEY.MP3 I am a British-Columbian N/A N/A Comedy 1035843 64 4 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMABRIT.MP3 I am a dumb ass american N/A N/A Comedy 1528477 95 2 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMADUMB.MP3 I am an Albertan N/A N/A Comedy 1423987 88 5 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMANALB.MP3 I am Canadian (Original) N/A N/A Comedy 942916 58 1 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMCANAD.MP3 I am Italian N/A N/A Comedy 452018 56 8 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 64 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMITALI.MP3 I Am Torontonian N/A N/A Comedy 1102158 68 6 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMTORON.MP3 Canelita Americamanta Instr. Music Of The Andes Ethnic 4118290 257 10 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/CANELITA.MP3 Carnaval Americamanta Instr. Music Of The Andes Ethnic 4114389 257 8 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/CARNAVAL.MP3 Comunidad Americamanta Instr. Music Of The Andes Ethnic 4506156 281 1 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/COMUNIDA.MP3 Cumbion Americamanta Instr. Music Of The Andes Ethnic 4664423 291 7 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/CUMBION.MP3 Huancarute Americamanta Instr. Music Of The Andes Ethnic 3213687 200 12 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/HUANCARU.MP3 La Bocina Americamanta Instr. Music Of The Andes Ethnic 3300345 206 11 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/LABOCINA.MP3 Melancolia Americamanta Instr. Music Of The Andes Ethnic 5020942 313 4 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/MELANCOL.MP3 Otavaleno Americamanta Instr. Music Of The Andes Ethnic 5000462 312 3 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/OTAVALEN.MP3 Recuerdos Americamanta Instr. Music Of The Andes Ethnic 3468224 216 2 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/RECUERDO.MP3 Serrania Americamanta Instr. Music Of The Andes Ethnic 2660308 166 6 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/SERRANIA.MP3 Suenos Americamanta Instr. Music Of The Andes Ethnic 4144204 259 9 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/SUENOS.MP3 Titicaca Americamanta Instr. Music Of The Andes Ethnic 3943582 246 5 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/TITICACA.MP3 Dance of the Sun Priest Cusco Apurimac II Ethnic 4986669 311 3 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/DANCEOFT.MP3 Goddess of the Moon Cusco Apurimac II Ethnic 4105612 256 9 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/GODDESSO.MP3 Maya Temple Cusco Apurimac II Ethnic 4057268 253 7 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/MAYATEMP.MP3 Mexica Cusco Apurimac II Ethnic 5110385 319 8 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/MEXICA.MP3 Quetzal's Feather Cusco Apurimac II Ethnic 4834114 302 2 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/QUETZALS.MP3 Tula Cusco Apurimac II Ethnic 4868805 304 4 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/TULA.MP3 Xul-Kan, King of Palemque Cusco Apurimac II Ethnic 3856090 241 6 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/XULKANKI.MP3 Yucatan Cusco Apurimac II Ethnic 5121252 320 5 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/YUCATAN.MP3 Dream Catcher Cusco Aurimac III Ethnic 4896390 306 7 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/DREAMCAT.MP3 Ghost Dance Cusco Aurimac III Ethnic 5404628 337 1 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/GHOSTDAN.MP3 Kokopelli's Dream Cusco Aurimac III Ethnic 5777588 361 2 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/KOKOPELL.MP3 Little Pigeon Cusco Aurimac III Ethnic 5110385 319 5 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/LITTLEPI.MP3 Medicine Man Cusco Aurimac III Ethnic 3803845 237 4 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/MEDICINE.MP3 N/A Cusco Aurimac III Ethnic 4090705 255 3 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/NA.MP3 N/A Cusco Aurimac III Ethnic 4805275 300 8 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/NA2.MP3 N/A Cusco Aurimac III Ethnic 4513122 282 9 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/NA3.MP3 Pahrump Cusco Aurimac III Ethnic 3054027 190 6 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/PAHRUMP.MP3 Bury Her Crash Vegas Red Earth Rock 4034281 252 11 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/BURYHER.MP3 Down To The Wire Crash Vegas Red Earth Rock 2912479 182 2 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/DOWNTOTH.MP3 I Gave You My Heart Crash Vegas Red Earth Rock 3222882 201 5 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/IGAVEYOU.MP3 Inside Out Crash Vegas Red Earth Rock 3709107 231 8 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/INSIDEOU.MP3 It's Not Funny Anymore Crash Vegas Red Earth Rock 3678597 229 10 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/ITSNOTFU.MP3 Julia Rain Crash Vegas Red Earth Rock 3179833 198 9 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/JULIARAI.MP3 Moving Too Fast Crash Vegas Red Earth Rock 3433116 214 7 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/MOVINGTO.MP3 Red Earth Crash Vegas Red Earth Rock 3935084 245 1 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/REDEARTH.MP3 Sky Crash Vegas Red Earth Rock 3674000 229 3 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/SKY.MP3 Smoke Crash Vegas Red Earth Rock 4253291 265 4 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/SMOKE.MP3 The One That Keeps Me Running Crash Vegas Red Earth Rock 4884687 305 6 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/THEONETH.MP3 A kiss is a terrible thing to MeatLoaf The Very Best Of Meatloaf - 2 Rock 7295636 455 2 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/AKISSISA.MP3 bat out of hell MeatLoaf The Very Best Of Meatloaf - 2 Rock 9421632 588 9 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/BATOUTOF.MP3 dead ringer for love MeatLoaf The Very Best Of Meatloaf - 2 Rock 4169140 260 6 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/DEADRING.MP3 I'd do anything for love (but MeatLoaf The Very Best Of Meatloaf - 2 Rock 11494709 718 1 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/IDDOANYT.MP3 I'd lie for you (and that's th MeatLoaf The Very Best Of Meatloaf - 2 Rock 6197218 387 3 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/IDLIEFOR.MP3 midnight at the lost and found MeatLoaf The Very Best Of Meatloaf - 2 Rock 3377945 211 7 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/MIDNIGHT.MP3 nocturnal pleasure MeatLoaf The Very Best Of Meatloaf - 2 Rock 605345 37 5 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/NOCTURNA.MP3 not a dry eye in the house MeatLoaf The Very Best Of Meatloaf - 2 Rock 5681039 355 4 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/NOTADRYE.MP3 objects in the rear view mirro MeatLoaf The Very Best Of Meatloaf - 2 Rock 9367716 585 8 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/OBJECTSI.MP3 Babaji Supertramp Even In The Quietest Moments.. Pop 4668324 291 5 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/BABAJI.MP3 Downstream Supertramp Even In The Quietest Moments.. Pop 3905827 244 4 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/DOWNSTRE.MP3 Even In The Quietest Moments Supertramp Even In The Quietest Moments.. Pop 6228843 389 3 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/EVENINTH.MP3 Fool's Overture Supertramp Even In The Quietest Moments.. Pop 10419718 651 7 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/FOOLSOVE.MP3 From Now On Supertramp Even In The Quietest Moments.. Pop 6116411 382 6 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/FROMNOWO.MP3 Give A Little Bit Supertramp Even In The Quietest Moments.. Pop 3987747 249 1 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/GIVEALIT.MP3 Lover Boy Supertramp Even In The Quietest Moments.. Pop 6601803 412 2 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/LOVERBOY.MP3 Begin The Begin R.E.M. Life's Rich Pageant Rock 3328626 208 1 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/BEGINTHE.MP3 Cuyahoga R.E.M. Life's Rich Pageant Rock 3767065 235 4 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/CUYAHOGA.MP3 Fall on Me R.E.M. Life's Rich Pageant Rock 2751007 171 3 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/FALLONME.MP3 Hyena R.E.M. Life's Rich Pageant Rock 3266490 204 5 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/HYENA.MP3 I Believe R.E.M. Life's Rich Pageant Rock 3687235 230 8 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/IBELIEVE.MP3 Just a Touch R.E.M. Life's Rich Pageant Rock 2722725 170 10 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/JUSTATOU.MP3 Superman R.E.M. Life's Rich Pageant Rock 2762431 172 12 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/SUPERMAN.MP3 Swan Swan H R.E.M. Life's Rich Pageant Rock 2698762 168 11 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/SWANSWAN.MP3 The Flowers of Guatemala R.E.M. Life's Rich Pageant Rock 3791307 236 7 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/THEFLOWE.MP3 These Days R.E.M. Life's Rich Pageant Rock 2729691 170 2 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/THESEDAY.MP3 Underneath The Bunker R.E.M. Life's Rich Pageant Rock 1389296 86 6 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/UNDERNEA.MP3 What if we give it away R.E.M. Life's Rich Pageant Rock 3436041 214 9 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/WHATIFWE.MP3 (96-44S) Episode 10 Douglas Adams Hitch Hiker's Guide Vocal 21241856 1770 10 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP8A3D1.MP3 (96-44S) Episode 1 Douglas Adams Hitch Hiker's Guide Vocal 20590592 1715 1 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP96391.MP3 (96-44S) Episode 12 Douglas Adams Hitch Hiker's Guide Vocal 20051968 1670 12 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP9A351.MP3 (96-44S) Episode 11 Douglas Adams Hitch Hiker's Guide Vocal 21370725 1780 11 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP9A391.MP3 (96-44S) Episode 7 Douglas Adams Hitch Hiker's Guide Vocal 21444608 1787 7 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPA6311.MP3 (96-44S) Episode 6 Douglas Adams Hitch Hiker's Guide Vocal 21856581 1821 6 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPA6351.MP3 (96-44S) Episode 8 Douglas Adams Hitch Hiker's Guide Vocal 20943173 1745 8 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPA63D1.MP3 (96-44S) Episode 9 Douglas Adams Hitch Hiker's Guide Vocal 21346304 1778 9 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPB6391.MP3 (96-44S) Episode 2 Douglas Adams Hitch Hiker's Guide Vocal 20173125 1681 2 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD1.MP3 (96-44S) Episode 3 Douglas Adams Hitch Hiker's Guide Vocal 19994624 1666 3 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD2.MP3 (96-44S) Episode 4 Douglas Adams Hitch Hiker's Guide Vocal 21123072 1760 4 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD3.MP3 (96-44S) Episode 5 Douglas Adams Hitch Hiker's Guide Vocal 21315584 1776 5 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD4.MP3 Battersea Hooverphonic Blue Wonder Power Milk Trip-Hop 3696581 231 1 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/01BATTER.MP3 One Way Ride Hooverphonic Blue Wonder Power Milk Trip-Hop 3244770 202 2 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/02ONEWAY.MP3 Dictionary Hooverphonic Blue Wonder Power Milk Trip-Hop 3394815 212 3 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/03DICTIO.MP3 Club Montepulciano Hooverphonic Blue Wonder Power Milk Trip-Hop 3552394 222 4 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/04CLUBMO.MP3 Eden Hooverphonic Blue Wonder Power Milk Trip-Hop 3407488 212 5 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/05EDEN.MP3 Lung Hooverphonic Blue Wonder Power Milk Trip-Hop 2633706 164 6 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/06LUNG.MP3 Electro Shock Faders Hooverphonic Blue Wonder Power Milk Trip-Hop 2992471 187 7 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/07ELECTR.MP3 Out of Tune Hooverphonic Blue Wonder Power Milk Trip-Hop 3297014 206 8 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/08OUTOFT.MP3 This Strange Effect Hooverphonic Blue Wonder Power Milk Trip-Hop 3766808 235 9 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/09THISST.MP3 Renaissance Affair Hooverphonic Blue Wonder Power Milk Trip-Hop 3293679 205 10 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/10RENAIS.MP3 Tuna Hooverphonic Blue Wonder Power Milk Trip-Hop 3662305 228 11 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/11TUNA.MP3 Magenta Hooverphonic Blue Wonder Power Milk Trip-Hop 4661648 291 12 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/12MAGENT.MP3 Blue Wonder Power Milk (Secret Song) Hooverphonic Blue Wonder Power Milk Trip-Hop 2990817 186 13 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/13BLUEWO.MP3 Concrete Jungle Bob Marley Babylon By Bus Reggae 5432656 339 6 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/CONCRETE.MP3 Exodus Bob Marley Babylon By Bus Reggae 7356513 459 3 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/EXODUS.MP3 Is This Love Bob Marley Babylon By Bus Reggae 7205219 450 11 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/ISTHISLO.MP3 Jamming Bob Marley Babylon By Bus Reggae 5521674 345 13 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/JAMMING.MP3 Kinky Reggae Bob Marley Babylon By Bus Reggae 4610945 288 7 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/KINKYREG.MP3 Lively Up Yourself Bob Marley Babylon By Bus Reggae 6093034 380 8 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/LIVELYUP.MP3 Positive Vibration Bob Marley Babylon By Bus Reggae 5589811 349 1 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/POSITIVE.MP3 Punky Reggae Party Bob Marley Babylon By Bus Reggae 5614889 350 2 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/PUNKYREG.MP3 Rat Race Bob Marley Babylon By Bus Reggae 3501677 218 5 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/RATRACE.MP3 Rebel Music (3 O'clock Road Bl Bob Marley Babylon By Bus Reggae 5168937 323 9 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/REBELMUS.MP3 Stir It Up Bob Marley Babylon By Bus Reggae 5124615 320 4 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/STIRITUP.MP3 The Heathen Bob Marley Babylon By Bus Reggae 4307507 269 12 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/THEHEATH.MP3 War - No More Trouble Bob Marley Babylon By Bus Reggae 5268049 329 10 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/WARNOMOR.MP3 Is This Love Bob Marley Kaya Reggae 3719010 232 3 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/ISTHISLO.MP3 Misty Morning Bob Marley Kaya Reggae 3419752 213 7 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/MISTYMOR.MP3 Satisfy My Soul Bob Marley Kaya Reggae 4344698 271 5 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/SATISFYM.MP3 She's Gone Bob Marley Kaya Reggae 2327204 145 6 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/SHESGONE.MP3 Sun Is Shining Bob Marley Kaya Reggae 4770597 298 4 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/SUNISSHI.MP3 Them Belly Full (But We Hungry Bob Marley Live At The Lyceum Reggae 4420378 276 3 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/LIVEATTHELY/THEMBELL.MP3 Cry To Me Bob Marley Rastaman Vibration Reggae 2494401 155 4 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/RASTAMANVIB/CRYTOME.MP3 War Bob Marley Rastaman Vibration Reggae 3462388 216 9 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/RASTAMANVIB/WAR.MP3 Fuji Cal Tjader Latin Jazz 'Round Midnight Jazz 2465982 154 9 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/FUJI.MP3 Hip Walk Cal Tjader Latin Jazz 'Round Midnight Jazz 2476435 154 1 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/HIPWALK.MP3 On Green Dolphin Street Cal Tjader Latin Jazz 'Round Midnight Jazz 5325260 332 10 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/ONGREEND.MP3 Pantano Cal Tjader Latin Jazz 'Round Midnight Jazz 3491238 218 6 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/PANTANO.MP3 Reza Cal Tjader Latin Jazz 'Round Midnight Jazz 3950155 246 2 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/REZA.MP3 'Round Midnight Cal Tjader Latin Jazz 'Round Midnight Jazz 3087916 192 3 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/ROUNDMID.MP3 Sally's Tomato Cal Tjader Latin Jazz 'Round Midnight Jazz 3106306 194 11 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SALLYSTO.MP3 Sone Cal Tjader Latin Jazz 'Round Midnight Jazz 3054468 190 8 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SONE.MP3 Spring Is Here Cal Tjader Latin Jazz 'Round Midnight Jazz 3892068 243 4 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SPRINGIS.MP3 Sunset Boulevard Cal Tjader Latin Jazz 'Round Midnight Jazz 2636103 164 5 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SUNSETBO.MP3 The Loner Cal Tjader Latin Jazz 'Round Midnight Jazz 3749122 234 12 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/THELONER.MP3 Under a Blanket of Blue Cal Tjader Latin Jazz 'Round Midnight Jazz 2334343 145 7 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/UNDERABL.MP3 Eurotrash girl Chicks on Speed Chicks on Speed will save us all! Alternative 3876603 242 13 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/EUROTRAS.MP3 Floating Pyramid over Frankfurt that the taxi driver saw when he was landing Chicks on Speed Chicks on Speed will save us all! Alternative 3689419 230 12 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/FLOATING.MP3 For all the boys Chicks on Speed Chicks on Speed will save us all! Alternative 2261610 141 3 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/FORALLTH.MP3 Give Me Back My Man Chicks on Speed Chicks on Speed will save us all! Alternative 4259875 266 2 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/GIVEMEBA.MP3 Glamour Girl Chicks on Speed Chicks on Speed will save us all! Alternative 6006102 375 4 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/GLAMOURG.MP3 Kattesklareswasser Chicks on Speed Chicks on Speed will save us all! Alternative 4433745 277 8 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/KATTESKL.MP3 Little Star Chicks on Speed Chicks on Speed will save us all! Alternative 4067606 254 6 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/LITTLEST.MP3 Mind your own business Chicks on Speed Chicks on Speed will save us all! Alternative 3047380 190 11 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/MINDYOUR.MP3 Pedstang (re)issue Chicks on Speed Chicks on Speed will save us all! Alternative 1951068 121 5 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/PEDSTANG.MP3 Procrastinator Chicks on Speed Chicks on Speed will save us all! Alternative 1719098 107 10 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/PROCRAST.MP3 Stop Records Advert Chicks on Speed Chicks on Speed will save us all! Alternative 485704 30 1 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/STOPRECO.MP3 Warm Leatherette Chicks on Speed Chicks on Speed will save us all! Alternative 3515905 219 7 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/WARMLEAT.MP3 Yes I Do! Chicks on Speed Chicks on Speed will save us all! Alternative 2509034 156 9 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/YESIDO.MP3 Bolder To Birmingham Emmylou Harris Profile: The Best Of Emmylou Country 3366289 210 11 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/BOLDERTO.MP3 C'est La Vie You Never Can Tel Emmylou Harris Profile: The Best Of Emmylou Country 3233387 202 4 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/CESTLAVI.MP3 Easy From Now On Emmylou Harris Profile: The Best Of Emmylou Country 2969222 185 6 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/EASYFROM.MP3 Hello Stranger Emmylou Harris Profile: The Best Of Emmylou Country 3741610 233 12 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/HELLOSTR.MP3 If I Could Only Win Your Love Emmylou Harris Profile: The Best Of Emmylou Country 2418783 151 8 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/IFICOULD.MP3 Making Believe Emmylou Harris Profile: The Best Of Emmylou Country 3279346 204 5 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/MAKINGBE.MP3 One of These Days Emmylou Harris Profile: The Best Of Emmylou Country 2875601 179 1 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/ONEOFTHE.MP3 Sweet Dreams Emmylou Harris Profile: The Best Of Emmylou Country 2946231 184 2 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/SWEETDRE.MP3 To Daddy Emmylou Harris Profile: The Best Of Emmylou Country 2590125 161 3 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TODADDY.MP3 Together Again Emmylou Harris Profile: The Best Of Emmylou Country 3667212 229 7 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TOGETHER.MP3 Too Far Gone Emmylou Harris Profile: The Best Of Emmylou Country 3281852 205 9 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TOOFARGO.MP3 Two More Bottles Of Wine Emmylou Harris Profile: The Best Of Emmylou Country 2843844 177 10 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TWOMOREB.MP3 A Day Without Rain Enya A Day Without Rain (Japan CD) Pop 2530777 158 1 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ADAYWITH.MP3 Deora Ar Mo Chroi Enya A Day Without Rain (Japan CD) Pop 2702975 168 5 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/DEORAARM.MP3 Fallen Embers Enya A Day Without Rain (Japan CD) Pop 2418341 151 7 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/FALLENEM.MP3 Floras Secret Enya A Day Without Rain (Japan CD) Pop 3961446 247 6 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/FLORASSE.MP3 Isobella Enya A Day Without Rain (Japan CD) Pop 4326321 270 11 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ISOBELLA.MP3 Lazy Days Enya A Day Without Rain (Japan CD) Pop 3563546 222 12 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/LAZYDAYS.MP3 One By One Enya A Day Without Rain (Japan CD) Pop 3755809 234 10 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ONEBYONE.MP3 Only Time Enya A Day Without Rain (Japan CD) Pop 3489985 218 3 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ONLYTIME.MP3 Silver Inches Enya A Day Without Rain (Japan CD) Pop 1567794 97 8 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/SILVERIN.MP3 Tempus Vernum Enya A Day Without Rain (Japan CD) Pop 2309719 144 4 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/TEMPUSVE.MP3 Wild Child Enya A Day Without Rain (Japan CD) Pop 3648392 228 2 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/WILDCHIL.MP3 Antenna Hypersonik Orbit Neptuna Electronic 2982570 186 3 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/ANTENNA.MP3 Imaginary Keys Hypersonik Orbit Neptuna Electronic 2929092 183 2 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/IMAGINAR.MP3 In a Jar Hypersonik Orbit Neptuna Electronic 3875360 242 4 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/INAJAR.MP3 Jinx Delirium Hypersonik Orbit Neptuna Electronic 2156271 134 5 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/JINXDELI.MP3 Outdoor #7 Hypersonik Orbit Neptuna Electronic 2689284 168 6 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/OUTDOOR7.MP3 Recognizer Hypersonik Orbit Neptuna Electronic 3861541 241 7 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/RECOGNIZ.MP3 Subliminal Spaces Hypersonik Orbit Neptuna Electronic 4544911 284 8 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/SUBLIMIN.MP3 Velvet Tree Hypersonik Orbit Neptuna Electronic 4264063 266 1 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/VELVETTR.MP3 What Da Funk? Hypersonik Orbit Neptuna Electronic 3023118 188 9 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/WHATDAFU.MP3 Conc In D Maj For Harpsichord Jacques Loussier Trio The Bach Book (40th Anniv.) Jazz 8623418 538 7 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/JACQUESLOUS/THEBACHB/CONCIND1.MP3 Conc In D Maj For Harpsichord Jacques Loussier Trio The Bach Book (40th Anniv.) Jazz 5926327 370 8 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/JACQUESLOUS/THEBACHB/CONCIND2.MP3 Conc In D Maj For Harpsichord Jacques Loussier Trio The Bach Book (40th Anniv.) Jazz 5056555 316 9 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/JACQUESLOUS/THEBACHB/CONCIND3.MP3 But beautiful Lionel Hampton Mostly Ballads Jazz 3739923 233 12 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/BUTBEAUT.MP3 Danny boy Lionel Hampton Mostly Ballads Jazz 5889482 368 7 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/DANNYBOY.MP3 Dynamic duo Lionel Hampton Mostly Ballads Jazz 9203900 575 9 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/DYNAMICD.MP3 Fools rush in Lionel Hampton Mostly Ballads Jazz 5774966 360 10 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/FOOLSRUS.MP3 I know why and so do you Lionel Hampton Mostly Ballads Jazz 4049223 253 3 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/IKNOWWHY.MP3 I'll be seeing you Lionel Hampton Mostly Ballads Jazz 3156038 197 1 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/ILLBESEE.MP3 It might as well be spring Lionel Hampton Mostly Ballads Jazz 4718794 294 2 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/ITMIGHTA.MP3 Lover man Lionel Hampton Mostly Ballads Jazz 4433312 277 5 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/LOVERMAN.MP3 Pinch me Lionel Hampton Mostly Ballads Jazz 10886602 680 11 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/PINCHME.MP3 PS I love you Lionel Hampton Mostly Ballads Jazz 3585277 224 8 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/PSILOVEY.MP3 Toot toot Lionel Hampton Mostly Ballads Jazz 3793417 237 4 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/TOOTTOOT.MP3 Airegin Miles Davis Prestige Jazz 4805703 300 7 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/AIREGIN.MP3 Bags' Groove (take 1) Miles Davis Prestige Jazz 10802595 675 1 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/BAGSGROO.MP3 Blue 'N' Boogie Miles Davis Prestige Jazz 7977603 498 5 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/BLUENBOO.MP3 But Not For Me (take 1) Miles Davis Prestige Jazz 5522519 345 9 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/BUTNOTFO.MP3 Doxy Miles Davis Prestige Jazz 4672372 292 11 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/DOXY.MP3 Oleo Miles Davis Prestige Jazz 5003395 312 8 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/OLEO.MP3 Walkin' Miles Davis Prestige Jazz 12922888 807 6 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/WALKIN.MP3 Absinthe And Rue Symphony X Symphony X Metal 6984116 436 5 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/ABSINTHE.MP3 A Lesson Before Dying Symphony X Symphony X Metal 11638933 727 10 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/ALESSONB.MP3 Into The Dementia Symphony X Symphony X Metal 979298 61 1 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/INTOTHED.MP3 Masquerade Symphony X Symphony X Metal 4289945 268 4 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/MASQUERA.MP3 Premonition Symphony X Symphony X Metal 5406315 337 3 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/PREMONIT.MP3 Rapture of Pain Symphony X Symphony X Metal 4887632 305 8 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/RAPTUREO.MP3 Shades of Grey Symphony X Symphony X Metal 5464415 341 6 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/SHADESOF.MP3 Taunting The Notorious Symphony X Symphony X Metal 3208279 200 7 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/TAUNTING.MP3 The Raging Season Symphony X Symphony X Metal 4827866 301 2 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/THERAGIN.MP3 Thorns Of Sorrow Symphony X Symphony X Metal 3754128 234 9 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/THORNSOF.MP3 Bad Boy The Beatles Past Masters Volume One Rock 2249065 140 16 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/BADBOY.MP3 From Me To You The Beatles Past Masters Volume One Rock 1882939 117 2 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/FROMMETO.MP3 I Call Your Name The Beatles Past Masters Volume One Rock 2066008 129 11 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/ICALLYOU.MP3 I Feel Fine The Beatles Past Masters Volume One Rock 2239038 139 14 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/IFEELFIN.MP3 I'll Get You The Beatles Past Masters Volume One Rock 2015848 125 5 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/ILLGETYO.MP3 I'm Down The Beatles Past Masters Volume One Rock 2432132 152 18 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/IMDOWN.MP3 I Want To Hold Your Hand The Beatles Past Masters Volume One Rock 2348973 146 6 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/IWANTTOH.MP3 Komm, Gib Mir Deine Hand The Beatles Past Masters Volume One Rock 2348555 146 8 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/KOMMGIBM.MP3 Long Tall Sally The Beatles Past Masters Volume One Rock 1971548 123 10 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/LONGTALL.MP3 Love Me Do The Beatles Past Masters Volume One Rock 2303819 143 1 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/LOVEMEDO.MP3 Matchbox The Beatles Past Masters Volume One Rock 1904667 119 13 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/MATCHBOX.MP3 She Loves You The Beatles Past Masters Volume One Rock 2260773 141 4 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SHELOVES.MP3 She's A Woman The Beatles Past Masters Volume One Rock 2935778 183 15 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SHESAWOM.MP3 Sie Liebt Dich The Beatles Past Masters Volume One Rock 2236950 139 9 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SIELIEBT.MP3 Slow Down The Beatles Past Masters Volume One Rock 2822925 176 12 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SLOWDOWN.MP3 Thank You Girl The Beatles Past Masters Volume One Rock 1992026 124 3 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/THANKYOU.MP3 This Boy The Beatles Past Masters Volume One Rock 2183863 136 7 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/THISBOY.MP3 Yes It Is The Beatles Past Masters Volume One Rock 2604332 162 17 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/YESITIS.MP3 Sounds Like Movin' The Beatles Sounds Incorporated (CD1) Rock 1812712 113 14 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC1/SOUNDSLI.MP3 The hall Of The Mountain King The Beatles Sounds Incorporated (CD1) Rock 2244057 140 17 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC1/THEHALLO.MP3 A Hard Day's Night The Beatles Sounds Incorporated (CD2) Rock 2985584 186 11 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/AHARDDAY.MP3 Baby's In Black The Beatles Sounds Incorporated (CD2) Rock 2616444 163 9 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/BABYSINB.MP3 Can't Buy My Love The Beatles Sounds Incorporated (CD2) Rock 2410065 150 8 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/CANTBUYM.MP3 Dizzy Miss Lizzy The Beatles Sounds Incorporated (CD2) Rock 3297379 206 5 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/DIZZYMIS.MP3 Everybody's Trying to Be My Baby The Beatles Sounds Incorporated (CD2) Rock 2323919 145 7 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/EVERYBOD.MP3 Help! The Beatles Sounds Incorporated (CD2) Rock 2913604 182 12 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/HELP.MP3 I Feel Fine The Beatles Sounds Incorporated (CD2) Rock 2419163 151 4 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/IFEELFIN.MP3 I'm Down The Beatles Sounds Incorporated (CD2) Rock 2874737 179 13 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/IMDOWN.MP3 I Wanna Be Your Man The Beatles Sounds Incorporated (CD2) Rock 2568010 160 10 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/IWANNABE.MP3 She's A Woman The Beatles Sounds Incorporated (CD2) Rock 3094587 193 3 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/SHESAWOM.MP3 Ticket to Ride The Beatles Sounds Incorporated (CD2) Rock 2531179 158 6 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/TICKETTO.MP3 Twist And Shout The Beatles Sounds Incorporated (CD2) Rock 1323796 82 2 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/TWISTAND.MP3 Weird Beard - Stage Announcement The Beatles Sounds Incorporated (CD2) Rock 4198018 262 1 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/WEIRDBEA.MP3 Lucy in the Sky with Diamonds The Beatles N/A Rock 3336552 208 0 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/UNKNOWNALBU/LUCYINTH.MP3 All My Friends Our Lady Peace Spiritual Machines Rock 3477033 217 13 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/ALLMYFRI.MP3 Are You Sad? Our Lady Peace Spiritual Machines Rock 4936543 308 7 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/AREYOUSA.MP3 Everyone's A Junkie Our Lady Peace Spiritual Machines Rock 3497518 218 11 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/EVERYONE.MP3 If You Believe Our Lady Peace Spiritual Machines Rock 3445267 215 1 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/IFYOUBEL.MP3 In Repair Our Lady Peace Spiritual Machines Rock 3813902 238 4 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/INREPAIR.MP3 Life Our Lady Peace Spiritual Machines Rock 4211376 263 5 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/LIFE.MP3 Made To Heal Our Lady Peace Spiritual Machines Rock 3636690 227 9 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/MADETOHE.MP3 Middle of Yesterday Our Lady Peace Spiritual Machines Rock 3758323 234 6 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/MIDDLEOF.MP3 Right Behind You (Mafia) Our Lady Peace Spiritual Machines Rock 3108402 194 2 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RIGHTBEH.MP3 R.K. 1949-97 Our Lady Peace Spiritual Machines Rock 706797 44 10 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RK194997.MP3 R.K. 2029 Our Lady Peace Spiritual Machines Rock 240769 15 3 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RK2029.MP3 R.K. 2029 (pt.2) Our Lady Peace Spiritual Machines Rock 195218 12 8 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RK2029PT.MP3 R.K. On Death Our Lady Peace Spiritual Machines Rock 637417 39 12 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RKONDEAT.MP3 Clumsy Our Lady Peace N/A Rock 4318320 269 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/CLUMSY.MP3 Is Anybody Home? (Live) Our Lady Peace N/A Rock 3820144 238 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/ISANYBOD.MP3 Naveed Our Lady Peace N/A Rock 4407956 275 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/NAVEED.MP3 One Man Army Our Lady Peace N/A Rock 3246693 202 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/ONEMANAR.MP3 Don Juan Triumphant - Travel Through Time Misha Segal The Phantom Of The Opera Classical 1983261 123 2 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/DONJUANT.MP3 Finale - End Title Misha Segal The Phantom Of The Opera Classical 2966279 185 13 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/FINALEEN.MP3 Graveyard Violin - Pact With The Devil - Richard Gets Killed Misha Segal The Phantom Of The Opera Classical 3826899 239 10 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/GRAVEYAR.MP3 Main Title Misha Segal The Phantom Of The Opera Classical 3010573 188 1 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/MAINTITL.MP3 Music Of The Knife Misha Segal The Phantom Of The Opera Classical 2260345 141 9 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/MUSICOFT.MP3 Ride To The Cemetary - The Cursed Manuscript - What's In The Closet Misha Segal The Phantom Of The Opera Classical 3366315 210 11 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/RIDETOTH.MP3 Salon Talk Misha Segal The Phantom Of The Opera Classical 2653636 165 7 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/SALONTAL.MP3 The Phantom's Lair - Hellbound (Freddy at the Opera) - Maddie Misha Segal The Phantom Of The Opera Classical 5824743 364 3 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEHELL.MP3 The Jewel Son (From Faust) Misha Segal The Phantom Of The Opera Classical 3893737 243 8 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEJEWEL.MP3 The Phantom On Fire - The Phantom's Face Misha Segal The Phantom Of The Opera Classical 4172112 260 6 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEPHANT.MP3 The Wedding - The Intruder From Springhood Misha Segal The Phantom Of The Opera Classical 8173238 510 12 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEWEDDI.MP3 You Are Him - Into The Lair Misha Segal The Phantom Of The Opera Classical 3604928 225 5 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/YOUAREHI.MP3 Young Phantom's Piano Etude - Davis' Unpleasant Surprise - Carlotta's Head Misha Segal The Phantom Of The Opera Classical 4903992 306 4 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/YOUNGPHA.MP3 Mesa Drive Jennifer Smith Code Mesa New Age 4845103 302 1 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/01MESADR.MP3 Looking for sleep Jennifer Smith Code Mesa New Age 5718227 357 2 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/02LOOKIN.MP3 Radio Bagdad Jennifer Smith Code Mesa New Age 5233947 327 3 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/03RADIOB.MP3 Return from calvery Jennifer Smith Code Mesa New Age 4940407 308 4 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/04RETURN.MP3 One more goodbye Jennifer Smith Code Mesa New Age 4670402 291 5 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/05ONEMOR.MP3 Bodycount Jennifer Smith Code Mesa New Age 4445951 277 6 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/06BODYCO.MP3 When the world began Jennifer Smith Code Mesa New Age 5003102 312 7 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/07WHENTH.MP3 Church of the higher disco Jennifer Smith Code Mesa New Age 4115781 257 8 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/08CHURCH.MP3 What's yours or mine Jennifer Smith Code Mesa New Age 4155899 259 9 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/09WHATSY.MP3 Civilization Jennifer Smith Code Mesa New Age 3540239 221 10 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/10CIVILI.MP3 The Sweet Hereafter Mychael Danna The Sweet Hereafter Soundtrack 3450842 215 1 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/01THESWE.MP3 Procession Mychael Danna The Sweet Hereafter Soundtrack 2981605 186 2 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/02PROCES.MP3 One More Colour Mychael Danna The Sweet Hereafter Soundtrack 3860438 241 3 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/03ONEMOR.MP3 Bus Mychael Danna The Sweet Hereafter Soundtrack 807793 50 4 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/04BUS.MP3 Bus Stop Mychael Danna The Sweet Hereafter Soundtrack 1799475 112 5 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/05BUSSTO.MP3 Courage Mychael Danna The Sweet Hereafter Soundtrack 4181004 261 6 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/06COURAG.MP3 It's Important That We Talk Mychael Danna The Sweet Hereafter Soundtrack 3316267 207 7 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/07ITSIMP.MP3 Dog Track Drizzle Mychael Danna The Sweet Hereafter Soundtrack 4147717 259 8 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/08DOGTRA.MP3 Thin Ice Mychael Danna The Sweet Hereafter Soundtrack 5655287 353 9 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/09THINIC.MP3 It Was A Wonderful Time In Our Lives Mychael Danna The Sweet Hereafter Soundtrack 5318024 332 10 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/10ITWASA.MP3 Pied Piper Mychael Danna The Sweet Hereafter Soundtrack 2138026 133 11 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/11PIEDPI.MP3 A Huge Wave Mychael Danna The Sweet Hereafter Soundtrack 2136077 133 12 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/12AHUGEW.MP3 Boy Mychael Danna The Sweet Hereafter Soundtrack 4273789 267 13 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/13BOY.MP3 Why I Lied Mychael Danna The Sweet Hereafter Soundtrack 3350107 209 14 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/14WHYILI.MP3 A Different Town Mychael Danna The Sweet Hereafter Soundtrack 2726518 170 15 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/15ADIFFE.MP3 865 (Courage) Misfit Cafe Auburn Country 2637824 164 2 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/865COURA.MP3 Away Misfit Cafe Auburn Country 3117056 194 7 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/AWAY.MP3 George's Grill Misfit Cafe Auburn Country 3241984 202 3 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/GEORGESG.MP3 Ghostland Misfit Cafe Auburn Country 2889728 180 4 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/GHOSTLAN.MP3 Glory Misfit Cafe Auburn Country 2295808 143 8 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/GLORY.MP3 I Miss You Misfit Cafe Auburn Country 2818048 176 6 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/IMISSYOU.MP3 Jasmine Misfit Cafe Auburn Country 3297280 206 5 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/JASMINE.MP3 Lullabye Misfit Cafe Auburn Country 2566144 160 10 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/LULLABYE.MP3 The Velvet Tears of Elvis Misfit Cafe Auburn Country 3733504 233 1 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/THEVELVE.MP3 Yukon River Misfit Cafe Auburn Country 3805184 237 9 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/YUKONRIV.MP3 Optimus_12_00(Genome-tuneup) DJ Optimus City Under Fire N/A 6926036 432 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/GENOMETU.MP3 Phazer09 DJ Optimus City Under Fire N/A 3147353 393 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 64 22050 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/PHAZER.MP3 Optimus_07_00(quickfix) DJ Optimus City Under Fire N/A 6107922 381 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/QUICKFIX.MP3 Optimus_10_00(structure) DJ Optimus City Under Fire N/A 5954427 372 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/STRUCTUR.MP3 The Shaking Fist DJ Optimus City Under Fire N/A 442309 31 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 112 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/THESHAKI.MP3 Tyrant-DjOptimus01-08-00 DJ Optimus City Under Fire N/A 6300949 393 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/TYRANT.MP3 Temptation New Order 1981 - Factus 8 - 1982 Alternative 6695008 418 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/1981FACTUS8/TEMPTATI.MP3 Brutal New Order Please Visit MUSIC DL Alternative 3216221 201 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/PLEASEVISIT/BRUTAL.MP3 The Beach New Order Power, Corruption & Lies Alternative 7004715 437 10 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/POWERCORRUP/THEBEACH.MP3 True Faith New Order Substance Alternative 5628236 351 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/SUBSTANCE/TRUEFAIT.MP3 In a Lonely Place New Order Substance 1987 (CD 2) Alternative 6020700 376 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/SUBSTANCE19/INALONEL.MP3 Murder New Order Substance 1987 (CD 2) Alternative 3772916 235 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/SUBSTANCE19/MURDER.MP3 Bizarre Love Triangle New Order N/A Alternative 6473767 404 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/BIZARREL.MP3 Confusion Instrumental New Order N/A Alternative 4797056 299 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/CONFUSIO.MP3 Fine Time New Order N/A Alternative 3019894 188 1 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/FINETIME.MP3 Love Vigilantes New Order N/A Alternative 4133197 258 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/LOVEVIGI.MP3 Mesh New Order N/A Alternative 3284880 205 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/MESH.MP3 Perfect Kiss New Order N/A Alternative 7768186 485 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/PERFECTK.MP3 Regret New Order N/A Alternative 3123826 195 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/REGRET.MP3 Shell Shock New Order N/A Alternative 4224034 264 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/SHELLSHO.MP3 Sister Ray (Live) New Order N/A Alternative 4205644 262 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/SISTERRA.MP3 Touched By The Hand Of God New Order N/A Alternative 5441965 340 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/TOUCHEDB.MP3 14 31 Global Communication 76 14 Ambient 13951890 871 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/7614/1431.MP3 4 02 Global Communication 76 14 Ambient 3877964 242 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/7614/402.MP3 9 25 Global Communication 76 14 Ambient 9052574 565 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/7614/925.MP3 Amor Real Global Communication Remotion Ambient 8625002 539 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/REMOTION/AMORREAL.MP3 Natural High Global Communication Remotion Ambient 8705667 544 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/REMOTION/NATURALH.MP3 3am Eternal KLF N/A Techno 3081851 192 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/3AM ETERNAL.MP3 3 am eternal (live) KLF N/A Techno 3503891 218 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/3AMETERN.MP3 The White Room KLF N/A Techno 5041422 315 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/THEWHITE.MP3 What Time Is Love KLF N/A Techno 5223234 326 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/WHATTIME.MP3 Justified & Ancient KLF w/ Tammy Wynett Techno 3488286 218 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/WTAMMYWYNET/JUSTIFIE.MP3 Hail to the Bopp Meat Beat Manifesto Actual sounds & voices Electronic 4488730 280 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ACTUALSOUND/HAILTOTH.MP3 I Am Organic Meat Beat Manifesto Original Fire Electronic 3467806 216 4 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ORIGINALFIR/IAMORGAN.MP3 Radio Babylon Meat Beat Manifesto Original Fire Electronic 6121010 382 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ORIGINALFIR/RADIO BABYLON.MP3 Radio Babylon (Orb Mix) Meat Beat Manifesto Original Fire Electronic 12776171 798 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ORIGINALFIR/RADIOBAB.MP3 Mindstream Meat Beat Manifesto Satyricon Electronic 4686715 292 2 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/MINDSTRE.MP3 Original Control (version 2) Meat Beat Manifesto Satyricon Electronic 5163188 322 9 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/ORIGINAL.MP3 Placebo Meat Beat Manifesto Satyricon Electronic 4864347 304 16 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/PLACEBO.MP3 untold stories Meat Beat Manifesto Satyricon Electronic 1799732 112 13 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/UNTOLDST.MP3 Your mind belongs to me Meat Beat Manifesto Satyricon Electronic 4840384 302 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/YOURMIND.MP3 Acid Again Meat Beat Manifesto N/A Electronic 5563453 347 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/ACIDAGAI.MP3 Brain Meat Beat Manifesto N/A Electronic 5280493 330 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/BRAIN.MP3 Deepsky St Meat Beat Manifesto N/A Electronic 6107755 381 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/DEEPSKYS.MP3 Euthanasia Meat Beat Manifesto N/A Electronic 4368926 273 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/EUTHANAS.MP3 mars needs women Meat Beat Manifesto N/A Electronic 3425173 214 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/MARSNEED.MP3 Mindstream (Aphex Mix) Meat Beat Manifesto N/A Electronic 9557834 2389 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 32 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/MINDSTRE.MP3 Paradise Meat Beat Manifesto N/A Electronic 5012165 313 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/PARADISE.MP3 Prime Audio Soup Meat Beat Manifesto N/A Electronic 6035050 377 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/PRIMEAUD.MP3 Radio babylon (Remix) Meat Beat Manifesto N/A Electronic 4934424 308 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/RADIOBAB.MP3 The Utterer Meat Beat Manifesto N/A Electronic 6622143 413 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/THEUTTER.MP3 Transmission Meat Beat Manifesto N/A Electronic 4027547 251 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/TRANSMIS.MP3 We Done Meat Beat Manifesto N/A Electronic 2039222 127 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/WEDONE.MP3 Alex Vs The KLF The Orb N/A Techno 9822873 613 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/THEORB/UNKNOWNALBU/ALEXVSTH.MP3 unknown mix Prodigy N/A Techno 14250313 890 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/PRODIGY/UNKNOWNALBU/UNKNOWN MIX.MP3 unknown mix Prodigy N/A Techno 3779419 472 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 64 44100 MPEG AUDIO FILE MP3028/PRODIGY/UNKNOWNALBU/UNKNOWNM.MP3 Cocaine Sex Renegade Soundwave Biting My Nails Alternative 6633986 414 2 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/RENEGADESOU/BITINGMYNAI/COCAINES.MP3 Biting My Nails Renegade Soundwave Tonal Evidence (USA) Alternative 4296619 268 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/RENEGADESOU/TONALEVIDEN/BITINGMY.MP3 Kray Twins Renegade Soundwave N/A Alternative 5560945 347 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/RENEGADESOU/UNKNOWNALBU/KRAYTWIN.MP3 Goodbye Seventies Yaz The Best of Alternative 2453142 153 5 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/THEBESTOF/GOODBYES.MP3 Only You Yaz N/A Alternative 3128006 195 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/UNKNOWNALBU/ONLYYOU.MP3 Situation '99 Remix Yaz N/A Alternative 4447663 277 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/UNKNOWNALBU/SITUATIO.MP3 Situation Yaz N/A Alternative 3591104 224 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/UNKNOWNALBU/SITUATION.MP3 Walk Away From Love Yaz You And Me Both Alternative 3183734 198 6 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/YOUANDMEBOT/WALKAWAY.MP3 Foil Autechre Amber Ambient 5836380 364 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/FOIL.MP3 Glitch Autechre Amber Ambient 6014429 375 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/GLITCH.MP3 Montreal Autechre Amber Ambient 6970721 435 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/MONTREAL.MP3 Nil Autechre Amber Ambient 7501529 468 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/NIL.MP3 Nine Autechre Amber Ambient 3524649 220 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/NINE.MP3 Silverside Autechre Amber Ambient 5296517 331 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/SILVERSI.MP3 Teartear Autechre Amber Ambient 6492576 405 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/TEARTEAR.MP3 777 Autechre N/A Ambient 5598979 349 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/UNKNOWNALBU/777.MP3 Further Autechre N/A Ambient 9690798 605 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/UNKNOWNALBU/FURTHER.MP3 The Beast (Autechre Mix) Autechre A Journey Into Ambient Groove Ambient 9383936 1876 6 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 40 44100 MPEG AUDIO FILE MP3028/AUTECHRE/UNKNOWNALBU/THEBEAST.MP3 Sexy Bits (Autechre Mix) DJ Food N/A Electronic 6905241 431 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/DJFOOD/UNKNOWNALBU/SEXYBITS.MP3 Gold (Autechre mix) Lamb N/A Ambient 7208957 450 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/LAMB/UNKNOWNALBU/GOLDAUTE.MP3 Clark Co. Record Fair Saint Etienne Fairfax High Dance 3130235 195 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/FAIRFAXHIGH/CLARKCOR.MP3 People Get Real Saint Etienne Foxbase Alpha Trip-Hop 4555056 284 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/FOXBASEALPH/PEOPLEGE.MP3 Sylvie (Radio Edit) Saint Etienne Good Humor Dance 3369308 210 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/GOODHUMOR/SYLVIERA.MP3 We're In The City Saint Etienne Places To Visit Dance 4508106 281 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/PLACESTOVIS/WEREINTH.MP3 Built On Sand Saint Etienne N/A Dance 3246288 202 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/BUILTONS.MP3 Heart failed (In The Back Of A Saint Etienne N/A Dance 3544293 221 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/HEARTFAI.MP3 He's on the phone Saint Etienne N/A Dance 5807008 362 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/HESONTHE.MP3 how i learned to love the bomb Saint Etienne N/A Dance 2963748 185 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/HOWILEAR.MP3 Like A Motorway Saint Etienne N/A Ambient 8354583 522 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/LIKEAMOT.MP3 Lost In The Library Saint Etienne N/A Dance 2169764 135 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/LOSTINTH.MP3 Only Love Can Break Your heart Saint Etienne N/A Dance 4302192 268 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/ONLYLOVE.MP3 Sylvie (Faze Action remix) Saint Etienne N/A Dance 9701665 606 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/SYLVIEFA.MP3 Sylvie (Titinnabulation remix) Saint Etienne N/A Dance 7758991 484 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/SYLVIETI.MP3 The Sea Saint Etienne N/A N/A 4117733 257 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/THESEA.MP3 Uri Geller Saint Etienne N/A Ambient 3407844 212 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/URIGELLE.MP3 Who Do You Think You are Saint Etienne w/ Aphex Twin Ambient 7806639 487 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/WAPHEXTWIN/WHODOYOU.MP3 SemiDetach (Nziq vs Autechre) Stereosphere N/A Electronic 5613190 350 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3028/STEREOSPHER/UNKNOWNALBU/SEMIDETA.MP3 Adverse Camber (Autechre Mix) Tortoise N/A Ambient 5821891 363 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3028/TORTOISE/UNKNOWNALBU/ADVERSEC.MP3 Coal In Ghost Out Blip N/A Electronic 4204668 262 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BLIP/UNKNOWNALBU/COALINGH.MP3 Bizarre Love Triangle Frente! N/A Alternative 1976111 123 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/FRENTE/UNKNOWNALBU/BIZARREL.MP3 Pump Up the Volume Marrs N/A Techno 4206758 262 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/MARRS/UNKNOWNALBU/PUMP UP THE VOLUME.MP3 Pump Up the Volume (Remix) Marrs N/A Techno 3809697 238 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/MARRS/UNKNOWNALBU/PUMPUPTH.MP3 Bjork vs Depeche Mode Igor N/A Dance 7096944 443 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/IGOR/UNKNOWNALBU/BJORKVSD.MP3 Aeroplane Bjork Debut Avantgarde 3756756 234 8 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/AEROPLAN.MP3 Big Time Sensuality Bjork Debut Avantgarde 3796462 237 6 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/BIGTIMES.MP3 Come to me Bjork Debut Avantgarde 4721823 295 9 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/COMETOME.MP3 Crying Bjork Debut Avantgarde 4678634 292 2 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/CRYING.MP3 Human Behaviour Bjork Debut Avantgarde 4020766 251 1 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/HUMANBEH.MP3 Like Someone In love Bjork Debut Avantgarde 4452240 278 5 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/LIKESOME.MP3 One Day Bjork Debut Avantgarde 5039750 314 7 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/ONEDAY.MP3 The Anchor Song Bjork Debut Avantgarde 4352208 272 11 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/THEANCHO.MP3 Theres More to Life Than This Bjork Debut Avantgarde 3140126 196 4 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/THERESMO.MP3 Venus As A Boy Bjork Debut Avantgarde 4508524 281 3 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/VENUSASA.MP3 Violently Happy Bjork Debut Avantgarde 4784935 299 10 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/VIOLENTL.MP3 Army of Me Bjork Post Avantgarde 3748257 234 1 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ARMYOFME.MP3 Cover Me Bjork Post Avantgarde 2020414 126 11 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/COVERME.MP3 Enjoy Bjork Post Avantgarde 3789320 236 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ENJOY.MP3 Headphones Bjork Post Avantgarde 5442663 340 10 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/HEADPHON.MP3 Hyper-Ballad Bjork Post Avantgarde 5142986 321 2 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/HYPERBAL.MP3 I Miss You Bjork Post Avantgarde 3901230 243 9 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/IMISSYOU.MP3 Isobel Bjork Post Avantgarde 5554258 347 7 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ISOBEL.MP3 It's Oh So Quiet Bjork Post Avantgarde 3498039 218 4 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ITSOHSOQ.MP3 Possibly Maybe Bjork Post Avantgarde 4905167 306 8 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/POSSIBLY.MP3 The Modern Things Bjork Post Avantgarde 4002098 250 3 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/THEMODER.MP3 You've Been Flirting Again Bjork Post Avantgarde 2395741 149 6 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/YOUVEBEE.MP3 Big time sensuality (Remix) Bjork N/A Dance 3978134 248 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/BIGTIMES.MP3 Play Dead Bjork N/A Avantgarde 3723597 232 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/PLAYDEAD.MP3 Violently Happy (highway mix) Bjork N/A Dance 4598385 287 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/VIOLENTL.MP3 Violently Happy (w/ Fluke) Bjork N/A Avantgarde 5524999 345 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/HAPFLUKE.MP3 Enjoy (Further Over The Edge) Bjork N/A Avantgarde 4149205 259 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/ENJOYREMIX.MP3 You've Been Flirting Again (Fl Bjork N/A Avantgarde 3206164 200 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/YOUVEBEE.MP3 Violently Happy (Live) Bjork N/A Avantgarde 5122088 320 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/HAPLIVE.MP3 Stressed Out (Dandelions Mix) A Tribe Called Quest N/A Rap 4233229 264 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/ATRIBECALLE/CDSINGLESTR/STRESSED.MP3 Night and Day Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2961996 185 1 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/01NIGHTA.MP3 Imagination Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3135307 195 2 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/02IMAGIN.MP3 I'll Never Smile Again Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3091850 193 3 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/03ILLNEV.MP3 Blue Skies Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3216808 201 4 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/04BLUESK.MP3 The One I Love (Belongs to Somebody Else) Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3443791 215 5 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/05THEONE.MP3 Fools Rush In (Where Angels Fear to Tread) Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3099393 193 6 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/06FOOLSR.MP3 Stardust Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3111480 194 7 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/07STARDU.MP3 In the Blue of Evening Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2854032 178 8 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/08INTHEB.MP3 Polka Dots and Moonbeams Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3229779 201 9 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/09POLKAD.MP3 Without a Song Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 4322733 270 10 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/10WITHOU.MP3 This Love of Mine Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3603429 225 11 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/11THISLO.MP3 I Think of You Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2849986 178 12 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/12ITHINK.MP3 Once in a While Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2991953 186 13 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/13ONCEIN.MP3 How Am I to Know Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3004075 187 14 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/14HOWAMI.MP3 The Sky Fell Down Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3097699 193 15 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/15THESKY.MP3 Love Is A Stranger Eurythmics Greatest Hits Rock 3536258 221 1 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/01LOVEIS.MP3 Sweet Dreams Eurythmics Greatest Hits Rock 4708070 294 2 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/02SWEETD.MP3 Who's That Girl? Eurythmics Greatest Hits Rock 3631551 226 3 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/03WHOSTH.MP3 Right By Your Side Eurythmics Greatest Hits Rock 3721832 232 4 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/04RIGHTB.MP3 Here Comes The Rain Again Eurythmics Greatest Hits Rock 4822603 301 5 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/05HERECO.MP3 There Must Be An Angel (Playing With My Heart) Eurythmics Greatest Hits Rock 4524342 282 6 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/06THEREM.MP3 Sisters Are Doin' It For Themselves Eurythmics Greatest Hits Rock 4694300 293 7 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/07SISTER.MP3 It's Alright (Baby's Coming Back) Eurythmics Greatest Hits Rock 3612202 225 8 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/08ITSALR.MP3 When Tomorrow Comes Eurythmics Greatest Hits Rock 4121402 257 9 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/09WHENTO.MP3 You Have Placed A Chill In My Heart Eurythmics Greatest Hits Rock 3665705 229 10 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/10YOUHAV.MP3 Miracle Of Love Eurythmics Greatest Hits Rock 4420241 276 11 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/11MIRACL.MP3 Sex Crime (1984) Eurythmics Greatest Hits Rock 3750671 234 12 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/12SEXCRI.MP3 Thorn In My Side Eurythmics Greatest Hits Rock 4054110 253 13 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/13THORNI.MP3 Don't Ask Me Why Eurythmics Greatest Hits Rock 4065255 254 14 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/14DONTAS.MP3 Angel Eurythmics Greatest Hits Rock 4624473 289 15 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/15ANGEL.MP3 Would I Lie To You? Eurythmics Greatest Hits Rock 4245398 265 16 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/16WOULDI.MP3 Missionary Man Eurythmics Greatest Hits Rock 3639351 227 17 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/17MISSIO.MP3 I Need A Man Eurythmics Greatest Hits Rock 4166815 260 18 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/18INEEDA.MP3 The Dam at Otter Creek Live Throwing Copper Rock 4530833 283 1 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/01THEDAM.MP3 Selling the Drama Live Throwing Copper Rock 3302447 206 2 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/02SELLIN.MP3 I Alone Live Throwing Copper Rock 3694482 230 3 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/03IALONE.MP3 Iris Live Throwing Copper Rock 3833241 239 4 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/04IRIS.MP3 Lightning Crashes Live Throwing Copper Rock 5208340 325 5 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/05LIGHTN.MP3 Top Live Throwing Copper Rock 2597058 162 6 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/06TOP.MP3 All Over You Live Throwing Copper Rock 3835757 239 7 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/07ALLOVE.MP3 Shit Towne Live Throwing Copper Rock 3647256 227 8 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/08SHITTO.MP3 T.B.D. Live Throwing Copper Rock 4304283 269 9 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/09TBD.MP3 Stage Live Throwing Copper Rock 3009169 188 10 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/10STAGE.MP3 Waitress Live Throwing Copper Rock 2703922 168 11 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/11WAITRE.MP3 Pillar of Davidson Live Throwing Copper Rock 6497886 406 12 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/12PILLAR.MP3 White, Discussion Live Throwing Copper Rock 5894630 368 13 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/13WHITED.MP3 ? Live Throwing Copper Rock 4072313 254 14 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/14.MP3 Angels and Devils Love and Rockets Express Rock 5895866 368 1 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/01ANGELS.MP3 It Could Be Sunshine Love and Rockets Express Rock 4792039 299 2 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/02ITCOUL.MP3 Kundalini Express Love and Rockets Express Rock 5567350 347 3 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/03KUNDAL.MP3 All in My Mind Love and Rockets Express Rock 4538054 283 4 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/04ALLINM.MP3 Life in Laralay Love and Rockets Express Rock 3406500 212 5 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/05LIFEIN.MP3 Ball of Confusion Love and Rockets Express Rock 6028359 376 6 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/06BALLOF.MP3 Holiday on the Moon Love and Rockets Express Rock 5907571 369 7 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/07HOLIDA.MP3 Yin and Yang the Flower Pot Man (remix) Love and Rockets Express Rock 5290266 330 8 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/08YINAND.MP3 Love Me Love and Rockets Express Rock 3678723 229 9 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/09LOVEME.MP3 All In My Mind (acoustic version) Love and Rockets Express Rock 4914516 307 10 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/10ALLINM.MP3 An American Dream Love and Rockets Express Rock 5846967 365 11 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/11ANAMER.MP3 Electricity Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3385671 211 1 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/01ELECTR.MP3 Messages Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 4572672 285 2 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/02MESSAG.MP3 Enola Gay Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3399044 212 3 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/03ENOLAG.MP3 Souvenir Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3496845 218 4 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/04SOUVEN.MP3 Joan Of Arc Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3651911 228 5 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/05JOANOF.MP3 Maid Of Orleans Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 4032816 252 6 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/06MAIDOF.MP3 Telegraph Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3582110 223 7 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/07TELEGR.MP3 Tesla Girls Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3423706 213 8 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/08TESLAG.MP3 Locomotion Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3742607 233 9 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/09LOCOMO.MP3 Talking Load And Clear Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3763937 235 10 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/10TALKIN.MP3 So In Love Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3358645 209 11 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/11SOINLO.MP3 Secret Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3794432 237 12 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/12SECRET.MP3 If You Leave Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 4335695 270 13 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/13IFYOUL.MP3 Forever Live And Die Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3438485 214 14 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/14FOREVE.MP3 Dreaming Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3812405 238 15 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/15DREAMI.MP3 Genetic Engineering Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3454227 215 16 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/16GENETI.MP3 We Love You (12-inch version) Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 5996821 374 17 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/17WELOVE.MP3 La Femme Accident (12-inch version) Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 6054784 378 18 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/18LAFEMM.MP3 Shine On You Crazy Diamond (Parts I II III IV V) Pink Floyd Wish You Were Here Rock 13055080 815 1 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/01SHINEO.MP3 Welcome To The Machine Pink Floyd Wish You Were Here Rock 7195687 449 2 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/02WELCOM.MP3 Have A Cigar Pink Floyd Wish You Were Here Rock 4919472 307 3 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/03HAVEAC.MP3 Wish You Were Here Pink Floyd Wish You Were Here Rock 5322530 332 4 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/04WISHYO.MP3 Shine On You Crazy Diamond (Parts VI VII VIII IX) Pink Floyd Wish You Were Here Rock 11981344 748 5 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/05SHINEO.MP3 Old devil moon Tony Bennett Unplugged Jazz 2384742 149 1 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/01OLDDEV.MP3 Speak low Tony Bennett Unplugged Jazz 3043067 190 2 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/02SPEAKL.MP3 It had to be you Tony Bennett Unplugged Jazz 3089494 193 3 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/03ITHADT.MP3 I love a piano Tony Bennett Unplugged Jazz 1866517 116 4 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/04ILOVEA.MP3 It amazes me Tony Bennett Unplugged Jazz 3009215 188 5 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/05ITAMAZ.MP3 The girl I love Tony Bennett Unplugged Jazz 3837055 239 6 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/06THEGIR.MP3 Fly me to the moon Tony Bennett Unplugged Jazz 2836691 177 7 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/07FLYMET.MP3 You're all the world to me Tony Bennett Unplugged Jazz 2172915 135 8 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/08YOUREA.MP3 Rags to riches Tony Bennett Unplugged Jazz 1342397 83 9 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/09RAGSTO.MP3 When Joanna loved me Tony Bennett Unplugged Jazz 3136163 196 10 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/10WHENJO.MP3 The good life/I wanna be around Tony Bennett Unplugged Jazz 3223288 201 11 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/11THEGOO.MP3 I left my hart in San Francisco Tony Bennett Unplugged Jazz 2487284 155 12 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/12ILEFTM.MP3 Steppin'out with my baby Tony Bennett Unplugged Jazz 3077635 192 13 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/13STEPPI.MP3 Moonglow Tony Bennett Unplugged Jazz 4371620 273 14 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/14MOONGL.MP3 They can't take that away from me Tony Bennett Unplugged Jazz 3306055 206 15 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/15THEYCA.MP3 A foggy day Tony Bennett Unplugged Jazz 2167725 135 16 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/16AFOGGY.MP3 All of you Tony Bennett Unplugged Jazz 2487273 155 17 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/17ALLOFY.MP3 Body and soul Tony Bennett Unplugged Jazz 3735719 233 18 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/18BODYAN.MP3 It don't mean a thing if it ain't got that swing Tony Bennett Unplugged Jazz 3484151 217 19 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/19ITDONT.MP3 Autumn leaves/Indian summer Tony Bennett Unplugged Jazz 5596816 349 20 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/20AUTUMN.MP3 Let's Make Music Grey Delisle Jump Start Baby N/A 246178 15 10 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/10LETSMA.MP3 The Mulberry Bush Grey Delisle Jump Start Baby N/A 427991 26 11 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/11THEMUL.MP3 Skip to My Lou Grey Delisle Jump Start Baby N/A 429661 26 12 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/12SKIPTO.MP3 London Bridge Grey Delisle Jump Start Baby N/A 400823 25 13 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/13LONDON.MP3 Old MacDonald Had a Farm Grey Delisle Jump Start Baby N/A 461009 28 14 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/14OLDMAC.MP3 Mary Had a Little Lamb Grey Delisle Jump Start Baby N/A 479818 29 15 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/15MARYHA.MP3 Hey Diddle Diddle Grey Delisle Jump Start Baby N/A 282541 17 16 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/16HEYDID.MP3 Sing a Song of Sixpense Grey Delisle Jump Start Baby N/A 369476 23 17 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/17SINGAS.MP3 Baa Baa Black Sheep Grey Delisle Jump Start Baby N/A 478982 29 18 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/18BAABAA.MP3 Twinkle Twinkle Little Star Grey Delisle Jump Start Baby N/A 525375 32 19 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/19TWINKL.MP3 Itsy Bitsy Spider Grey Delisle Jump Start Baby N/A 374910 23 20 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/20ITSYBI.MP3 Barnyard Animals Grey Delisle Jump Start Baby N/A 324337 20 21 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/21BARNYA.MP3 Cow Grey Delisle Jump Start Baby N/A 271256 16 22 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/22COW.MP3 Pig Grey Delisle Jump Start Baby N/A 164258 10 23 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/23PIG.MP3 Horse Grey Delisle Jump Start Baby N/A 216921 13 24 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/24HORSE.MP3 Cat Grey Delisle Jump Start Baby N/A 279197 17 25 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/25CAT.MP3 Rooster Grey Delisle Jump Start Baby N/A 172200 10 26 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/26ROOSTE.MP3 Dog Grey Delisle Jump Start Baby N/A 234476 14 27 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/27DOG.MP3 Sheep Grey Delisle Jump Start Baby N/A 291736 18 28 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/28SHEEP.MP3 Duck Grey Delisle Jump Start Baby N/A 189754 11 29 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/29DUCK.MP3 Frog Grey Delisle Jump Start Baby N/A 186410 11 30 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/30FROG.MP3 Owl Grey Delisle Jump Start Baby N/A 180141 11 31 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/31OWL.MP3 Goat Grey Delisle Jump Start Baby N/A 274182 17 32 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/32GOAT.MP3 Donkey Grey Delisle Jump Start Baby N/A 234894 14 33 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/33DONKEY.MP3 Part a: Saor / Free / Part b: News From Nowhere Afro Celt Sound System Volume 1 Sound Magic Ethnic 8049678 503 1 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/01PARTAS.MP3 Whirl-Y-Reel 1 (Beard and Sandals Mix) Afro Celt Sound System Volume 1 Sound Magic Ethnic 7081258 442 2 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/02WHIRLY.MP3 Inion / Daughter Afro Celt Sound System Volume 1 Sound Magic Ethnic 4120413 257 3 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/03INIOND.MP3 Part a: Sure-As-Not / Part b: Sure-As-Knot (Jungle Segue) Afro Celt Sound System Volume 1 Sound Magic Ethnic 9629156 601 4 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/04PARTAS.MP3 Nil Cead Againn Dul Abhaile / We Cannot Go Home Afro Celt Sound System Volume 1 Sound Magic Ethnic 7079177 442 5 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/05NILCEA.MP3 Dark Moon, High Tide (including Farewell to Eireann) Afro Celt Sound System Volume 1 Sound Magic Ethnic 4096625 256 6 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/06DARKMO.MP3 Whirl-Y-Reel 2 (Folk Police Mix) Afro Celt Sound System Volume 1 Sound Magic Ethnic 5279430 329 7 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/07WHIRLY.MP3 House Of The Ancestors Afro Celt Sound System Volume 1 Sound Magic Ethnic 7730750 483 8 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/08HOUSEO.MP3 Part a: Eistigh Liomsa Sealad / Listen To Me / Part b: Saor Reprise Afro Celt Sound System Volume 1 Sound Magic Ethnic 10461740 653 9 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/09PARTAE.MP3 1B Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3875946 242 1 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/011B.MP3 Misty Moonlight Waltz Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4584406 286 2 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/02MISTYM.MP3 Hard Times Come Again No More Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3577968 223 3 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/03HARDTI.MP3 Indecision Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4297257 268 4 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/04INDECI.MP3 Limerock Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 2376314 148 5 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/05LIMERO.MP3 Benjamin Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3391537 211 6 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/06BENJAM.MP3 Fisher's Hornpipe Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3589659 224 7 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/07FISHER.MP3 Duet for Cello and Bass Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 5663578 353 8 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/08DUETFO.MP3 Emily's Reel Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 2693549 168 9 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/09EMILYS.MP3 Cloverfoot Reel Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4237078 264 10 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/10CLOVER.MP3 Poem for Carlita Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 7261013 453 11 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/11POEMFO.MP3 Caprice for Three Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3648175 228 12 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/12CAPRIC.MP3 Second Time Around Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4345750 271 13 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/13SECOND.MP3 Slumber My Darling Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4682207 292 14 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/14SLUMBE.MP3 Vistas Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 9558525 597 15 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/15VISTAS.MP3 Aching To Sneeze Crash Test Dummies Give Yourself a Hand Rock 3250060 203 11 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/ACHINGTO.MP3 A Little Something Crash Test Dummies Give Yourself a Hand Rock 4412544 275 9 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/ALITTLES.MP3 Get You In The Morning Crash Test Dummies Give Yourself a Hand Rock 2829180 176 6 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/GETYOUIN.MP3 Give Yourself A Hand Crash Test Dummies Give Yourself a Hand Rock 2882677 180 5 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/GIVEYOUR.MP3 I Love Your Goo Crash Test Dummies Give Yourself a Hand Rock 3382552 211 10 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/ILOVEYOU.MP3 I Want To Par-tay! Crash Test Dummies Give Yourself a Hand Rock 2391155 149 4 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/IWANTTOP.MP3 Just Chillin' Crash Test Dummies Give Yourself a Hand Rock 3396341 212 3 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/JUSTCHIL.MP3 Just Shoot Me, Baby Crash Test Dummies Give Yourself a Hand Rock 3431456 214 8 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/JUSTSHOO.MP3 Keep A Lid On Things Crash Test Dummies Give Yourself a Hand Rock 2636081 164 1 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/KEEPALID.MP3 Pissed With Me Crash Test Dummies Give Yourself a Hand Rock 3026867 189 7 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/PISSEDWI.MP3 Playing Dead Crash Test Dummies Give Yourself a Hand Rock 3126758 195 12 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/PLAYINGD.MP3 almost gothic Steely Dan Two Against Nature Pop 3998750 249 5 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/ALMOSTGO.MP3 cousin dupree Steely Dan Two Against Nature Pop 5254159 328 7 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/COUSINDU.MP3 gaslighting abbie Steely Dan Two Against Nature Pop 5662091 353 1 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/GASLIGHT.MP3 jack of speed Steely Dan Two Against Nature Pop 6042848 377 6 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/JACKOFSP.MP3 janie runaway Steely Dan Two Against Nature Pop 3987325 249 4 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/JANIERUN.MP3 negative girl Steely Dan Two Against Nature Pop 5358231 334 8 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/NEGATIVE.MP3 two against nature Steely Dan Two Against Nature Pop 6047450 377 3 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/TWOAGAIN.MP3 west of hollywood Steely Dan Two Against Nature Pop 8023281 501 9 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/WESTOFHO.MP3 what a shame about me Steely Dan Two Against Nature Pop 5079878 317 2 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/WHATASHA.MP3 And She Was Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3508355 219 3 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/ANDSHEWA.MP3 Blind Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4801933 300 10 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/BLIND.MP3 City Of Dreams Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4930673 308 8 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/CITYOFDR.MP3 Gangster Of Love Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4305827 269 13 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/GANGSTER.MP3 Girlfriend Is Better (Live) Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3471173 216 2 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/GIRLFRIE.MP3 Life During Wartime (Live) Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4872587 304 1 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/LIFEDURI.MP3 Lifetime Piling Up Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3734061 233 14 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/LIFETIME.MP3 Love For Sale Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4361969 272 7 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/LOVEFORS.MP3 Mr. Jones Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4167893 260 9 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/MRJONES.MP3 (Nothing But) Flowers Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 5352401 334 11 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/NOTHINGB.MP3 Popsicle Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 5117495 319 15 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/POPSICLE.MP3 Road To Nowhere Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4167063 260 5 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/ROADTONO.MP3 Sex And Violins Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 5092425 318 12 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/SEXANDVI.MP3 Stay Up Late Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3731546 233 4 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/STAYUPLA.MP3 Wild Wild Life Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3521315 220 6 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/WILDWILD.MP3 Exodus U2 The New Year's Concert Rock 874774 54 5 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/EXODUS.MP3 Intro U2 The New Year's Concert Rock 2815774 175 1 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/INTRO.MP3 I Still Haven't Found What I'm U2 The New Year's Concert Rock 3965604 247 4 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/ISTILLHA.MP3 I Will Follow U2 The New Year's Concert Rock 4272787 267 3 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/IWILLFOL.MP3 MLK U2 The New Year's Concert Rock 1800968 112 6 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/MLK.MP3 One The Ill U2 The New Year's Concert Rock 4676534 292 7 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/ONETHEIL.MP3 Where The Streets Have No Name U2 The New Year's Concert Rock 4367681 272 2 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/WHERETHE.MP3 Descramble N/A N/A Comedy 6307140 450 0 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 112 44100 MPEG AUDIO FILE MP3030/VARIOUS/DESCRAMB.MP3 Arriving Ufo Yes Tormato Rock 5814623 363 5 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/ARRIVING.MP3 Circus Of Heaven Yes Tormato Rock 4309697 269 6 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/CIRCUSOF.MP3 Don't Kill The Whale Yes Tormato Rock 3780843 236 2 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/DONTKILL.MP3 Future Times - Rejoice Yes Tormato Rock 6478770 404 1 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/FUTURETI.MP3 Madrigal Yes Tormato Rock 2296240 143 3 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/MADRIGAL.MP3 On The Silent Wings Of Freedom Yes Tormato Rock 7466415 466 8 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/ONTHESIL.MP3 Onward Yes Tormato Rock 3875287 242 7 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/ONWARD.MP3 Release, Release Yes Tormato Rock 5547133 346 4 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/RELEASER.MP3 A Certain Slant Of Light The Tea Party Splendor Solis Rock 4808625 300 3 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/ACERTAIN.MP3 Dreams Of Reason The Tea Party Splendor Solis Rock 6058732 378 8 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/DREAMSOF.MP3 Haze On The Hills The Tea Party Splendor Solis Rock 2297103 143 10 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/HAZEONTH.MP3 In This Time The Tea Party Splendor Solis Rock 4743551 296 7 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/INTHISTI.MP3 Midsummer Day The Tea Party Splendor Solis Rock 5719486 357 2 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/MIDSUMME.MP3 Raven Skies The Tea Party Splendor Solis Rock 5063149 316 9 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/RAVENSKI.MP3 Save Me The Tea Party Splendor Solis Rock 6068476 379 5 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/SAVEME.MP3 Sun Going Down The Tea Party Splendor Solis Rock 6293205 393 6 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/SUNGOING.MP3 The Majestic Song The Tea Party Splendor Solis Rock 4430924 276 11 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/THEMAJES.MP3 The River The Tea Party Splendor Solis Rock 5481106 342 1 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/THERIVER.MP3 Winter Solstice The Tea Party Splendor Solis Rock 2628542 164 4 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/WINTERSO.MP3 Angry Chair Alice in Chains Dirt Grunge 4591616 286 6 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/ALICEINCHAI/06ANG1.MP3 Them Bones Alice in Chains Dirt Grunge 4200722 150 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 224 44100 MPEG AUDIO FILE MP3030/ALICEINCHAI/ALICEI1.MP3 Je T'Aime, Moi Non Plus (W/ Jane Birkin) Serge Gainsbourg N/A Rock 4069465 254 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/JANEBI1.MP3 Soixante neuf annee erotique Serge Gainsbourg N/A Rock 3205248 200 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SE20141.MP3 La javanaise Serge Gainsbourg N/A Rock 2360761 147 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SE3D171.MP3 La chanson de Prevert Serge Gainsbourg De Gainsbourg EGainsbarre Rock 2895902 180 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SE44751.MP3 Black Trombone Serge Gainsbourg N/A Rock 2528363 158 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG1.MP3 Dieu est un fumeur de havane Serge Gainsbourg N/A Rock 3702784 231 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG2.MP3 Je suis venu te dire que je m' Serge Gainsbourg N/A Rock 4076156 203 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 160 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG3.MP3 Serge Gainsbourg - Requiem Pour Un Con Serge Gainsbourg N/A Rock 2791424 174 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG4.MP3 Baudelaire Serge Gainsbourg Bonnie and Clyde (1967) Other 2352728 147 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/BONNIEANDCL/BAUDELAI.MP3 Pauvre Lola Serge Gainsbourg Bonnie and Clyde (1967) Other 2256180 141 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/BONNIEANDCL/PAUVRELO.MP3 Aux enfants de la chance Serge Gainsbourg De Gainsbourg EGainsbarre Other 3944315 246 1 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/DEGAINSBOUR/AUXENFAN.MP3 Le poinonneur des Lilas Serge Gainsbourg De Gainsbourg EGainsbarre Other 2613939 163 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/DEGAINSBOUR/LEPOINON.MP3 Qui est in qui est out Serge Gainsbourg De Gainsbourg EGainsbarre Other 2114894 132 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/DEGAINSBOUR/QUIESTIN.MP3 Contact (John Zorn) Serge Gainsbourg Great Jewish Music Other 2244881 140 16 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/GREATJEWISH/CONTACTJ.MP3 Ford Mustang (Mike Patton) Serge Gainsbourg Great Jewish Music Other 2575063 160 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/GREATJEWISH/FORDMUST.MP3 Couleur cafE(live) Serge Gainsbourg N/A Other 4236020 264 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/NONDFINI/COULEURC.MP3 Aux armes et caetera Serge Gainsbourg N/A Other 2970847 185 2 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/AUXARMES.MP3 Bonnie and Clyde Serge Gainsbourg N/A Other 4041670 252 1 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/BONNIEAN.MP3 Cha cha cha du loup Serge Gainsbourg N/A Other 1872438 117 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/CHACHACH.MP3 Charleston des dmnageurs de piano Serge Gainsbourg N/A Other 2332209 145 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/CHARLEST.MP3 Chez max, coiffeur pour homme Serge Gainsbourg N/A Other 1918423 119 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/CHEZMAXC.MP3 Docteur Jekyll Et Monsieur Hyde Serge Gainsbourg N/A Other 1901289 118 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/DOCTEURJ.MP3 Douzes Belles Dans La Peau Serge Gainsbourg N/A Other 1854472 115 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/DOUZESBE.MP3 Est-ce Si Bon? Serge Gainsbourg N/A Other 3140109 196 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/ESTCEEST.MP3 Flash Forward Serge Gainsbourg N/A Other 2521940 157 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/FLASHFOR.MP3 Harley David (son of a bitch) Serge Gainsbourg N/A Other 2858413 178 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/HARLEYDA.MP3 Je t'Aime Moi Non Plus Serge Gainsbourg N/A Other 4136970 258 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/JETAIMEM.MP3 La Ballade de Mlody Nelson Serge Gainsbourg N/A Other 1929706 120 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LABALLAD.MP3 La Chanson de Prvert (Les Feuilles Mortes) Serge Gainsbourg N/A Other 2890610 180 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LACHANSO.MP3 La Jambe De Bois "Friedland" Serge Gainsbourg N/A Other 2484339 155 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LAJAMBED.MP3 L'Ami Caouette Serge Gainsbourg N/A Other 3038957 189 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LAMICAOU.MP3 La Poupe Qui Fait Serge Gainsbourg N/A Other 2924858 182 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LAPOUPEQ.MP3 L'eau a la bouche (Brigitte Bardo) Serge Gainsbourg N/A Other 2363973 147 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LEAUALAB.MP3 Le Chanson de Slogan Serge Gainsbourg N/A Other 3629134 226 15 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LECHANSO.MP3 Lemon Incest Serge Gainsbourg N/A Other 5019663 313 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LEMONINC.MP3 Love On The Beat Serge Gainsbourg N/A Other 7784885 486 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LOVEONTH.MP3 Marilou Reggae Serge Gainsbourg N/A Other 2088935 130 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/MARILOUR.MP3 Mister Iceberg Serge Gainsbourg N/A Other 3436018 214 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/MISTERIC.MP3 My Lady Heroine Serge Gainsbourg N/A Other 3067867 191 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/MYLADYHE.MP3 Nazi Rock Serge Gainsbourg N/A Other 3041041 190 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/NAZIROCK.MP3 No Comment Serge Gainsbourg N/A Other 4965326 310 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/NOCOMMEN.MP3 Overseas Telegram Serge Gainsbourg N/A Other 3452739 215 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/OVERSEAS.MP3 Panpan Culcul Serge Gainsbourg N/A Other 2636461 164 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/PANPANCU.MP3 Par Hasard Et Pas Rase Serge Gainsbourg N/A Other 2404085 150 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/PARHASAR.MP3 Sea sex and sun Serge Gainsbourg N/A Other 3532149 220 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SEASEXAN.MP3 Sensuelle et sans suite Serge Gainsbourg N/A Other 2938655 183 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SENSUELL.MP3 Sex Shop Serge Gainsbourg N/A Other 2772711 173 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SEXSHOP.MP3 Sois belle et tais toi Serge Gainsbourg N/A Other 1934297 120 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SOISBELL.MP3 Sorry Angel Serge Gainsbourg N/A Other 3807579 237 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SORRYANG.MP3 Sous Le Soleil Exactement Serge Gainsbourg N/A Other 2689554 168 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SOUSLESO.MP3 Vieille Canaille (Eddy Mitchell) Serge Gainsbourg N/A Other 2754762 172 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/VIEILLEC.MP3 Come To Me (Hueristix Mix) Bjork N/A Drum & Bass 5006833 312 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/BJORK/UNKNOWNALBU/COMETOME.MP3 Walking Wounded (Omni Trio remix) Everything but the Girl N/A Trip-Hop 6462068 403 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/EVERYTHINGB/UNKNOWNALBU/WALKINGW.MP3 Meltdown Omni Trio N/A Drum & Bass 7640263 477 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/MELTDOWN#2.MP3 Meltdown Omni Trio N/A Drum & Bass 2858456 178 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/MELTDOWN.MP3 Not Available Omni Trio N/A Drum & Bass 4271991 266 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/NOTAVAIL.MP3 Nu Birth Of Cool Omni Trio N/A Drum & Bass 4166132 260 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/NUBIRTHO.MP3 Renegade Snares Omni Trio N/A Drum & Bass 5455148 340 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/RENEGADE.MP3 American Pie Madonna N/A Pop 4372713 273 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/AMERICAN.MP3 Beautiful Stranger Madonna N/A Pop 4187936 261 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/BEAUTIFU.MP3 Hey Mr. DJ (Remix) Madonna N/A Pop 3483242 217 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/HEYMRDJR.MP3 Ray Of Light Madonna N/A Pop 5131682 320 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/RAYOFLIG.MP3 Gasoline Moist Creature Alternative 3097904 193 12 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/GASOLINE.MP3 Leave It Alone. Moist Creature Alternative 4245208 265 4 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/LEAVEITA.MP3 Ophelia Moist Creature Alternative 3712303 232 11 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/OPHELIA.MP3 Resurrection Moist Creature Alternative 3826007 239 3 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/RESURREC.MP3 Tangerine Moist Creature Alternative 3912088 244 8 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/TANGERIN.MP3 Breathe (TLA Mix) Moist Mercedes Five and Dime Alternative 4524435 282 3 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/BREATHET.MP3 Comes and Goes Moist Mercedes Five and Dime Alternative 3746595 234 5 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/COMESAND.MP3 Place Moist Mercedes Five and Dime Alternative 3814297 238 11 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/PLACE.MP3 Underground Moist Mercedes Five and Dime Alternative 4706227 294 1 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/UNDERGRO.MP3 Believe Me Moist Silver Alternative 3751606 234 2 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/BELIEVEM.MP3 Break Her Down Moist Silver Alternative 4302047 268 6 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/BREAKHER.MP3 Machine Punch Through Moist Silver Alternative 4273633 267 9 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/MACHINEP.MP3 Push Moist Silver Alternative 3680532 230 1 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/PUSH.MP3 Silver Moist Silver Alternative 4082611 255 4 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/SILVER.MP3 This Shrieking Love Moist Silver Alternative 5058977 316 10 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/THISSHRI.MP3 Moist Vagina Nirvana N/A Alternative 3395047 212 0 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/UNKNOWNALBU/MOISTVAG.MP3 All Apologies Nirvana In Utero Alternative 3680061 230 12 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/ALLAPOLO.MP3 Dumb Nirvana In Utero Alternative 2436623 152 6 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/DUMB.MP3 Frances Farmer Will Have Her Revenge On Settle Nirvana In Utero Alternative 3996070 249 5 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/FRANCESF.MP3 Heart-Shaped Box Nirvana In Utero Alternative 4507622 281 3 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/HEARTSHA.MP3 Milk It Nirvana In Utero Alternative 3759466 234 8 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/MILKIT.MP3 Pennyroyal Tea Nirvana In Utero Alternative 3478187 217 9 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/PENNYROY.MP3 Radio Friendly Unit Shifter Nirvana In Utero Alternative 4661443 291 10 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/RADIOFRI.MP3 Rape Me Nirvana In Utero Alternative 2720002 170 4 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/RAPEME.MP3 Scentless Apprentice Nirvana In Utero Alternative 3646212 227 2 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/SCENTLES.MP3 Serve The Servants Nirvana In Utero Alternative 3473175 217 1 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/SERVETHE.MP3 tourette's Nirvana In Utero Alternative 1525061 95 11 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/TOURETTE.MP3 Very Ape Nirvana In Utero Alternative 1853992 115 7 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/VERYAPE.MP3 Moist Vagina (Nirvana Cover) Sonic Youth N/A Alternative 2911070 181 0 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/SONICYOUTH/UNKNOWNALBU/MOISTVAG.MP3 Aerial Tour (Instrumental) The Beatles Anthology Plus Rock 2019598 126 8 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/AERIALTO.MP3 Back In The USSR The Beatles Anthology Plus Rock 2846730 177 13 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/BACKINTH.MP3 Christmas Time Is Here Again The Beatles Anthology Plus Rock 2947053 184 10 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/CHRISTMA.MP3 Get Back (Rehearsal) The Beatles Anthology Plus Rock 2018339 126 20 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/GETBACKR.MP3 Goodbye The Beatles Anthology Plus Rock 2312986 144 18 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/GOODBYE.MP3 Good Morning, Good Morning The Beatles Anthology Plus Rock 1069995 66 5 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/GOODMORN.MP3 Happiness Is A Warm Gun (Studio) The Beatles Anthology Plus Rock 2614361 163 16 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/HAPPINES.MP3 Heather The Beatles Anthology Plus Rock 1789703 111 17 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/HEATHER.MP3 Here, There And Everywhere The Beatles Anthology Plus Rock 2318439 144 2 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/HERETHER.MP3 It's All Too Much The Beatles Anthology Plus Rock 7854299 490 6 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/ITSALLTO.MP3 I Want You The Beatles Anthology Plus Rock 4384396 274 23 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/IWANTYOU.MP3 Lady Madonna (Demo) The Beatles Anthology Plus Rock 1060793 66 9 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/LADYMADO.MP3 Let It Be The Beatles Anthology Plus Rock 4617633 288 22 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/LETITBES.MP3 Not Guilty (Demo) The Beatles Anthology Plus Rock 3048606 190 14 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/NOTGUILT.MP3 Revolution The Beatles Anthology Plus Rock 3922133 245 12 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/REVOLUTI.MP3 Strawberry Fields Forever (Orchestral) The Beatles Anthology Plus Rock 3365857 210 4 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/STRAWBER.MP3 Suzy Parker The Beatles Anthology Plus Rock 1884583 117 21 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/SUZYPARK.MP3 The End (Instrumental) The Beatles Anthology Plus Rock 2382802 148 24 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/THEENDIN.MP3 The Inner Light (Instrumental) The Beatles Anthology Plus Rock 2417500 151 11 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/THEINNER.MP3 Two Of Us (Rehearsal) The Beatles Anthology Plus Rock 1928897 120 19 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/TWOOFUSR.MP3 Weird Album The Beatles Anthology Plus Rock 4750958 296 15 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/WEIRDALB.MP3 Yellow Submarine The Beatles Anthology Plus Rock 2714654 169 1 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/YELLOWSU.MP3 Yesterday (Live) The Beatles Anthology Plus Rock 2574220 160 3 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/YESTERDA.MP3 Your Mother Should Know The Beatles Anthology Plus Rock 2388653 149 7 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/YOURMOTH.MP3 All I Want Is You U2 N/A Pop 9470919 591 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/ALLIWANT.MP3 Even Better Than The Real Thin U2 N/A Pop 3544704 221 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/EVENBETT.MP3 Mysterious Ways U2 N/A Pop 3892012 243 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/MYSTERIO.MP3 Numb U2 N/A Pop 4210472 263 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/NUMB.MP3 One U2 N/A Pop 4416107 276 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/ONE.MP3 One U2 N/A Pop 5120786 320 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/ONE2.MP3 U2 - Unchained Melody U2 N/A Pop 4733774 295 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/U2UNCHAI.MP3 With or without you (Acoustic) U2 N/A Pop 5109946 319 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/WITHORW1.MP3 With Or Without You U2 N/A Pop 4737534 296 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/WITHORW2.MP3 bullet the blue sky U2 The Joshua Tree Pop 4357175 272 4 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/BULLETTH.MP3 exit U2 The Joshua Tree Pop 4056217 253 10 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/EXIT.MP3 in god's country U2 The Joshua Tree Pop 2832457 177 7 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/INGODSCO.MP3 mothers of the disappeared U2 The Joshua Tree Pop 5015874 313 11 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/MOTHERSO.MP3 one tree hill U2 The Joshua Tree Pop 5174684 323 9 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/ONETREEH.MP3 red hill mining town U2 The Joshua Tree Pop 4698649 293 6 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/REDHILLM.MP3 running to stand still U2 The Joshua Tree Pop 4125629 257 5 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/RUNNINGT.MP3 trip through your wires U2 The Joshua Tree Pop 3400470 212 8 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/TRIPTHRO.MP3 Acrobat U2 Achtung Baby Rock 915270 57 11 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/ACROBAT.MP3 So Cruel U2 Achtung Baby Rock 5589713 349 6 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/SOCRUEL.MP3 The Fly U2 Achtung Baby Rock 4306995 269 7 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/THEFLY.MP3 Tryin' To Throw Your Arms Around The World U2 Achtung Baby Rock 3723559 232 9 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/TRYINTOT.MP3 Ultra Violet U2 Achtung Baby Rock 5292131 330 10 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/ULTRAVIO.MP3 Until The End Of The World U2 Achtung Baby Rock 4459151 278 4 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/UNTILTHE.MP3 Who's Gonna Ride Your Wild Horses U2 Achtung Baby Rock 5070632 316 5 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/WHOSGONN.MP3 Zoo Station U2 Achtung Baby Rock 4422774 276 1 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/ZOOSTATI.MP3 Big Saddle Fila Brazillia Mess Trip-Hop 4774359 298 2 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/BIGSADDL.MP3 Blood Fila Brazillia Mess Trip-Hop 5341108 333 13 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/BLOOD.MP3 But Momma Fila Brazillia Mess Trip-Hop 4730890 295 5 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/BUTMOMMA.MP3 DP's R Us Fila Brazillia Mess Trip-Hop 2432182 152 10 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/DPSRUS.MP3 Hairy Insides Fila Brazillia Mess Trip-Hop 6563645 410 9 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/HAIRYINS.MP3 Half Man Half Granary Thorax Fila Brazillia Mess Trip-Hop 1597051 99 4 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/HALFMANH.MP3 Howard Dan Ryan Fila Brazillia Mess Trip-Hop 5344879 334 12 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/HOWARDDA.MP3 Laying Down the Law ofthe Land Fila Brazillia Mess Trip-Hop 4861731 303 6 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/LAYINGDO.MP3 On Yer Haunches Fila Brazillia Mess Trip-Hop 4664442 291 11 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/ONYERHAU.MP3 Soft Music Under Stars Fila Brazillia Mess Trip-Hop 9773163 610 8 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/SOFTMUSI.MP3 Space Hearse Fila Brazillia Mess Trip-Hop 5878609 367 3 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/SPACEHEA.MP3 The LastOfThe Red Hot Brethren Fila Brazillia Mess Trip-Hop 2162134 135 1 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/THELASTO.MP3 TheReturnOfThe RedHot Brethren Fila Brazillia Mess Trip-Hop 2137476 133 14 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/THERETUR.MP3 Wavy Gravy Fila Brazillia Mess Trip-Hop 4437066 277 7 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/WAVYGRAV.MP3 The Chimney Song Bob Rivers Twisted Tunes Albums Comedy 2104872 131 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/BOBRIVER.MP3 Thank God I'm a Pubic Hair ( John Denver Parody) Bob Rivers Twisted Tunes Albums Comedy 920395 57 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/DRDEMENT.MP3 Take A Whack On The U.S. Side Bob Rivers Twisted Tunes Albums Comedy 2742246 171 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TAKEAWHA.MP3 Take Baseball And Shove It Bob Rivers Twisted Tunes Albums Comedy 1731618 108 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TAKEBASE.MP3 Take Some Lessons Bob Rivers Twisted Tunes Albums Comedy 2251967 140 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TAKESOME.MP3 Tanning Lotion Bob Rivers Twisted Tunes Albums Comedy 1633803 102 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TANNINGL.MP3 Teachers Bob Rivers Twisted Tunes Albums Comedy 2753927 172 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TEACHERS.MP3 Teddy The Red-Nosed Senator Bob Rivers Twisted Tunes Albums Comedy 1373009 85 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TEDDYTHE.MP3 That's The Sound Of Men Bob Rivers Twisted Tunes Albums Comedy 2295859 143 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THATSTHE.MP3 The Angel & Who Put The Stu Bob Rivers Twisted Tunes Albums Comedy 3286426 205 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEANGEL.MP3 The AOL Song Bob Rivers Twisted Tunes Albums Comedy 1765183 110 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 32000 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEAOLSO.MP3 The Day My Lemon Died Bob Rivers Twisted Tunes Albums Comedy 2497731 156 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEDAYMY.MP3 The Dot Coms They Are A Closin' Bob Rivers Twisted Tunes Albums Comedy 2124922 132 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEDOTCO.MP3 The Fondler Bob Rivers Twisted Tunes Albums Comedy 2022920 126 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEFONDL.MP3 The Frederick & Nelson Song Bob Rivers Twisted Tunes Albums Comedy 1741649 108 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEFREDE.MP3 The Handicap Can Bob Rivers Twisted Tunes Albums Comedy 1820633 113 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEHANDI.MP3 The Long And Boring Show Bob Rivers Twisted Tunes Albums Comedy 1778845 111 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THELONGA.MP3 Them Beans Bob Rivers Twisted Tunes Albums Comedy 1369231 85 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEMBEAN.MP3 The NAFTA Anthem Bob Rivers Twisted Tunes Albums Comedy 2191780 136 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THENAFTA.MP3 The No Smoking Song Bob Rivers Twisted Tunes Albums Comedy 2121984 132 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THENOSMO.MP3 The Ol' Man Is On The Commode Bob Rivers Twisted Tunes Albums Comedy 1651372 103 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEOLMAN.MP3 The Police Stopped My Car Bob Rivers Twisted Tunes Albums Comedy 1745409 109 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEPOLIC.MP3 There's Another Santa Claus.mp Bob Rivers Twisted Tunes Albums Comedy 1938929 121 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THERESAN.MP3 The Restroom Door Said, Gentlemen Bob Rivers Twisted Tunes Albums Comedy 1503837 93 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THERESTR.MP3 The Water Police Bob Rivers Twisted Tunes Albums Comedy 1913002 119 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEWATER.MP3 The What's It To Ya Chorus Bob Rivers Twisted Tunes Albums Comedy 2526591 157 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEWHATS.MP3 The Wreck of The Ship New Carissa Bob Rivers Twisted Tunes Albums Comedy 1730370 108 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEWRECK.MP3 They Call Him Vedder Bob Rivers Twisted Tunes Albums Comedy 1846132 115 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEYCALL.MP3 This Ain't No Barney Bob Rivers Twisted Tunes Albums Comedy 2459696 153 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THISAINT.MP3 Three Inch Tool Bob Rivers Twisted Tunes Albums Comedy 2103874 131 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 32000 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THREEINC.MP3 Ticket To The Eagles Bob Rivers Twisted Tunes Albums Comedy 2290005 143 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TICKETTO.MP3 Toy Sack Bob Rivers Twisted Tunes Albums Comedy 2461356 153 0 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TOYSACK.MP3 Trick Or Treatin' Blues Bob Rivers Twisted Tunes Albums Comedy 1587836 99 0 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TRICKORT.MP3 Intro Offspring Conspiracy of One Rock 84178 5 1 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/01INTRO.MP3 Come Out Swinging Offspring Conspiracy of One Rock 2676791 167 2 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/02COMEOU.MP3 Original Prankster Offspring Conspiracy of One Rock 3536534 221 3 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/03ORIGIN.MP3 Want You Bad Offspring Conspiracy of One Rock 3242703 202 4 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/04WANTYO.MP3 Million Miles Away Offspring Conspiracy of One Rock 3517726 219 5 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/05MILLIO.MP3 Dammit, I Changed Again Offspring Conspiracy of One Rock 2703546 168 6 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/06DAMMIT.MP3 Living In Chaos Offspring Conspiracy of One Rock 3334239 208 7 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/07LIVING.MP3 Special Delivery Offspring Conspiracy of One Rock 2888277 180 8 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/08SPECIA.MP3 One Fine Day Offspring Conspiracy of One Rock 2643767 165 9 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/09ONEFIN.MP3 All Along Offspring Conspiracy of One Rock 1579224 98 10 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/10ALLALO.MP3 Denial, Revisited Offspring Conspiracy of One Rock 4365348 272 11 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/11DENIAL.MP3 Vultures Offspring Conspiracy of One Rock 3428275 214 12 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/12VULTUR.MP3 Conspiracy of One Offspring Conspiracy of One Rock 2193632 137 13 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/13CONSPI.MP3 Daddy's Getting Married Bif Naked Bif Naked Rock 3823851 238 3 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/DADDYSGE.MP3 Everything Bif Naked Bif Naked Rock 2936511 183 1 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/EVERYTHI.MP3 Make Like A Tree Bif Naked Bif Naked Rock 4347547 271 2 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/MAKELIKE.MP3 My Bike Bif Naked Bif Naked Rock 4446595 277 10 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/MYBIKE.MP3 My Whole Life Bif Naked Bif Naked Rock 3804197 237 8 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/MYWHOLEL.MP3 Never Alone Bif Naked Bif Naked Rock 3568048 223 5 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/NEVERALO.MP3 Over You Bif Naked Bif Naked Rock 4095510 255 6 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/OVERYOU.MP3 Succulent Bif Naked Bif Naked Rock 3021773 188 7 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/SUCCULEN.MP3 Tell On You Bif Naked Bif Naked Rock 3939614 246 4 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/TELLONYO.MP3 The Gross, Gross Man Bif Naked Bif Naked Rock 1298958 81 11 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/THEGROSS.MP3 The Letter Bif Naked Bif Naked Rock 4909696 306 9 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/THELETTE.MP3 Airbag Radiohead O.k. Computer Rock 4553595 284 1 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/AIRBAG.MP3 Climbing Up the Walls Radiohead O.k. Computer Rock 4566149 285 9 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/CLIMBING.MP3 Electioneering Radiohead O.k. Computer Rock 3693443 230 8 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/ELECTION.MP3 Exit Music (for a Film) Radiohead O.k. Computer Rock 4239724 264 4 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/EXITMUSI.MP3 Fitter Happier Radiohead O.k. Computer Rock 1880399 117 7 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/FITTERHA.MP3 Karma Police Radiohead O.k. Computer Rock 4189140 261 6 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/KARMAPOL.MP3 Let Down Radiohead O.k. Computer Rock 4791416 299 5 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/LETDOWN.MP3 Lucky Radiohead O.k. Computer Rock 4156952 259 11 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/LUCKY.MP3 No Surprises Radiohead O.k. Computer Rock 3659587 228 10 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/NOSURPRI.MP3 Paranoid Android Radiohead O.k. Computer Rock 6138924 383 2 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/PARANOID.MP3 Subterranean Homesick Alien Radiohead O.k. Computer Rock 4286540 267 3 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/SUBTERRA.MP3 The Tourist Radiohead O.k. Computer Rock 5195586 324 12 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/THETOURI.MP3 #1 Crush Garbage Music From The Motion Picture "Romeo + Juliet" Soundtrack 4586647 286 1 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/1CRUSH.MP3 Angel Gavin Friday Music From The Motion Picture "Romeo + Juliet" Soundtrack 4149045 259 3 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/ANGEL.MP3 Everybody's Free (To Feel Good) Quindon Traver Music From The Motion Picture "Romeo + Juliet" Soundtrack 1655529 103 9 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/EVERYBOD.MP3 Kissing You (Love Theme From Romeo + Juliet) Des'ree Music From The Motion Picture "Romeo + Juliet" Soundtrack 4768495 298 5 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/KISSINGY.MP3 Little Star Stina Nordenstam Music From The Motion Picture "Romeo + Juliet" Soundtrack 3512087 219 12 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/LITTLEST.MP3 Local God Everclear Music From The Motion Picture "Romeo + Juliet" Soundtrack 3777481 236 2 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/LOCALGOD.MP3 Lovefool The Cardigans Music From The Motion Picture "Romeo + Juliet" Soundtrack 3181056 198 7 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/LOVEFOOL.MP3 Pretty Piece Of Flesh One Inch Punch Music From The Motion Picture "Romeo + Juliet" Soundtrack 4689485 293 4 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/PRETTYPI.MP3 Talk Show Host Radiohead Music From The Motion Picture "Romeo + Juliet" Soundtrack 4118541 257 11 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/TALKSHOW.MP3 To You I Bestow Mundy Music From The Motion Picture "Romeo + Juliet" Soundtrack 3820533 238 10 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/TOYOUIBE.MP3 Whatever (I Had A Dream) Butthole Surfers Music From The Motion Picture "Romeo + Juliet" Soundtrack 3988990 249 6 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/WHATEVER.MP3 You And Me Song The Wannadles Music From The Motion Picture "Romeo + Juliet" Soundtrack 2771882 173 13 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/YOUANDME.MP3 Young Hearts Run Free Kym Mazelle Music From The Motion Picture "Romeo + Juliet" Soundtrack 4097233 256 8 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/YOUNGHEA.MP3 Old MacDonald Had A Farm Baby Reflections If You're Happy and You Know It, Sing Along Kids 2804727 175 1 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/01OLDMAC.MP3 Pop Goes The Weasel / Two Green And Speckled Frogs Baby Reflections If You're Happy and You Know It, Sing Along Kids 3020421 188 2 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/02POPGOE.MP3 Alphabet Song / Baa, Baa, B;acl Sheep Baby Reflections If You're Happy and You Know It, Sing Along Kids 3796977 237 3 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/03ALPHAB.MP3 The Eensy, Weensy Spider Baby Reflections If You're Happy and You Know It, Sing Along Kids 1745202 109 4 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/04THEEEN.MP3 Head And Shoulders, knees And Toes Baby Reflections If You're Happy and You Know It, Sing Along Kids 2001839 125 5 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/05HEADAN.MP3 If You're Happy And you Know It Baby Reflections If You're Happy and You Know It, Sing Along Kids 2376745 148 6 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/06IFYOUR.MP3 Three Blind Mice Baby Reflections If You're Happy and You Know It, Sing Along Kids 4994827 312 7 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/07THREEB.MP3 B-I-N-G-O Baby Reflections If You're Happy and You Know It, Sing Along Kids 2217481 138 8 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/08BINGO.MP3 Down By The Bay Baby Reflections If You're Happy and You Know It, Sing Along Kids 5332953 333 9 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/09DOWNBY.MP3 It's Raining, It's Pouring Baby Reflections If You're Happy and You Know It, Sing Along Kids 2635877 164 10 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/10ITSRAI.MP3 London Bridge Baby Reflections If You're Happy and You Know It, Sing Along Kids 2833559 177 11 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/11LONDON.MP3 The Ants Go Marching Baby Reflections If You're Happy and You Know It, Sing Along Kids 3160828 197 12 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/12THEANT.MP3 There's A Hole In My Bucket Baby Reflections If You're Happy and You Know It, Sing Along Kids 3319659 207 13 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/13THERES.MP3 Allegro con brio Beethoven Symphonies 1 & 3 Classical 15394297 962 5 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/ALLEGROC.MP3 Finale- Allegro motto Beethoven Symphonies 1 & 3 Classical 11056303 691 8 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/FINALEAL.MP3 Marcia funebre- Adagio assa Beethoven Symphonies 1 & 3 Classical 14048479 878 6 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/MARCIAFU.MP3 Scherzo- Allegro vivace Beethoven Symphonies 1 & 3 Classical 5456070 341 7 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/SCHERZOA.MP3 [6-1] Allegro ma non troppo Beethoven Symphony No6 Classical 10086625 630 5 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/61ALLEGR.MP3 [6-2] Adante molto messo Beethoven Symphony No6 Classical 11830766 739 6 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/62ADANTE.MP3 [6-3] Allegro Beethoven Symphony No6 Classical 4681563 292 7 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/63ALLEGR.MP3 [6-4] Allegro Beethoven Symphony No6 Classical 3614931 225 8 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/64ALLEGR.MP3 [6-5] Allegretto Beethoven Symphony No6 Classical 9462601 591 9 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/65ALLEGR.MP3 Allegro ma non troppo, un poco maestoso Beethoven Symphony No9 Classical 13416518 838 1 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO9/ALLEGROM.MP3 Molto vivace - Presto Beethoven Symphony No9 Classical 13067086 816 2 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO9/MOLTOVIV.MP3 Adagio motto - Allegro con Beethoven-Harnoncourt Symphonies 1 & 3 Classical 9121169 570 1 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/ADAGIOMO.MP3 Andante cantabile con moto Beethoven-Harnoncourt Symphonies 1 & 3 Classical 7459364 466 2 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/ANDANTEC.MP3 Finale- Adagio - Allegro mo Beethoven-Harnoncourt Symphonies 1 & 3 Classical 5424322 339 4 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/FINALEAD.MP3 Menuetto- Allegro motto e v Beethoven-Harnoncourt Symphonies 1 & 3 Classical 3893337 243 3 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/MENUETTO.MP3 Beat Bowery Electric Beat Ambient 7016850 438 1 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/01BEAT.MP3 Empty Words Bowery Electric Beat Ambient 3641001 227 2 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/02EMPTYW.MP3 Without Stopping Bowery Electric Beat Ambient 5011912 313 3 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/03WITHOU.MP3 Under the Sun Bowery Electric Beat Ambient 3414887 213 4 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/04UNDERT.MP3 Fear of Flying Bowery Electric Beat Ambient 5429451 339 5 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/05FEAROF.MP3 Looped Bowery Electric Beat Ambient 2555556 159 6 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/06LOOPED.MP3 Black Light Bowery Electric Beat Ambient 6622304 413 7 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/07BLACKL.MP3 Inside Out Bowery Electric Beat Ambient 7028559 439 8 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/08INSIDE.MP3 Coming Down Bowery Electric Beat Ambient 4416315 276 9 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/09COMING.MP3 Postscript Bowery Electric Beat Ambient 16024296 1001 10 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/10POSTSC.MP3 Low Density Bowery Electric Beat Ambient 6969212 435 11 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/11LOWDEN.MP3 London Calling Clash London Calling Rock 3264059 204 1 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/01LONDON.MP3 Brand New Cadillac Clash London Calling Rock 2084582 130 2 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/02BRANDN.MP3 Jimmy Jazz Clash London Calling Rock 3795699 237 3 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/03JIMMYJ.MP3 Hateful Clash London Calling Rock 2658847 166 4 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/04HATEFU.MP3 Rudie Can't Fail Clash London Calling Rock 3390284 211 5 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/05RUDIEC.MP3 Spanish Bombs Clash London Calling Rock 3223516 201 6 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/06SPANIS.MP3 The Right Profile Clash London Calling Rock 3804065 237 7 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/07THERIG.MP3 Lost in the Supermarket Clash London Calling Rock 3682445 230 8 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/08LOSTIN.MP3 Clampdown Clash London Calling Rock 3715867 232 9 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/09CLAMPD.MP3 The Guns of Brixton Clash London Calling Rock 3088105 193 10 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/10THEGUN.MP3 Wrong 'Em Boyo Clash London Calling Rock 3091442 193 11 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/11WRONGE.MP3 Death or Glory Clash London Calling Rock 3797794 237 12 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/12DEATHO.MP3 Koka Kola Clash London Calling Rock 1752715 109 13 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/13KOKAKO.MP3 The Card Cheat Clash London Calling Rock 3728831 233 14 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/14THECAR.MP3 Lover's Rock Clash London Calling Rock 3937391 246 15 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/15LOVERS.MP3 Four Horsemen Clash London Calling Rock 2840667 177 16 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/16FOURHO.MP3 I'm Not Down Clash London Calling Rock 2994475 187 17 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/17IMNOTD.MP3 Revolution Rock Clash London Calling Rock 5406520 337 18 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/18REVOLU.MP3 Train in Vain Clash London Calling Rock 3090189 193 19 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/19TRAINI.MP3 Sacrifice Contention House of Contention Rock 3953237 247 1 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/01SACRIF.MP3 Kitchen Window Contention House of Contention Rock 3960348 247 2 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/02KITCHE.MP3 Loadsock Contention House of Contention Rock 1876815 117 3 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/03LOADSO.MP3 The Bus Song Contention House of Contention Rock 4528352 283 4 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/04THEBUS.MP3 Tom Caruthers Shoes Contention House of Contention Rock 6343138 396 5 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/05TOMCAR.MP3 Mythical Proportions Contention House of Contention Rock 3978744 248 6 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/06MYTHIC.MP3 New House Contention House of Contention Rock 2425179 151 7 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/07NEWHOU.MP3 Take Time Contention House of Contention Rock 3669443 229 8 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/08TAKETI.MP3 Caps & Gown Contention House of Contention Rock 4378722 273 9 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/09CAPSGO.MP3 These Days Contention House of Contention Rock 4122932 257 10 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/10THESED.MP3 last Trip Home Contention House of Contention Rock 3703305 231 11 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/11LASTTR.MP3 Desist Contention House of Contention Rock 3976642 248 12 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/12DESIST.MP3 Bye Bye Babe Contention House of Contention Rock 3299136 206 13 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/13BYEBYE.MP3 Angels Weep Enigma ENIGMA & D-Emotion Project New Age 5389611 336 11 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/ANGELSWE.MP3 Beyond the Invisible (radio edit) Enigma ENIGMA & D-Emotion Project New Age 4355184 272 14 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/BEYONDTH.MP3 Brazil Enigma ENIGMA & D-Emotion Project New Age 4126532 257 5 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/BRAZIL.MP3 Cang Ding Enigma ENIGMA & D-Emotion Project New Age 4572080 285 1 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/CANGDING.MP3 Close to Heaven Enigma ENIGMA & D-Emotion Project New Age 3716105 232 6 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/CLOSETOH.MP3 Evolution Enigma ENIGMA & D-Emotion Project New Age 4985442 311 12 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/EVOLUTIO.MP3 Flatlands Enigma ENIGMA & D-Emotion Project New Age 6676504 417 3 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/FLATLAND.MP3 Indian Spirits Reprise Enigma ENIGMA & D-Emotion Project New Age 3380492 211 10 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/INDIANSP.MP3 June Enigma ENIGMA & D-Emotion Project New Age 4822014 301 4 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/JUNE.MP3 November Enigma ENIGMA & D-Emotion Project New Age 4771445 298 8 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/NOVEMBER.MP3 Paradox Enigma ENIGMA & D-Emotion Project New Age 4590051 286 13 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/PARADOX.MP3 Planinata Enigma ENIGMA & D-Emotion Project New Age 3306080 206 2 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/PLANINAT.MP3 Return to Innocence (long) Enigma ENIGMA & D-Emotion Project New Age 6819045 426 9 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/RETURNTO.MP3 Sunless Sea Enigma ENIGMA & D-Emotion Project New Age 3846923 240 7 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/SUNLESSS.MP3 Alla breve Rachmaninoff Concerto No3 Classical 5218656 326 3 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/CONCERTONO3/ALLABREV.MP3 Allegro Ma Non Tanto Rachmaninoff Concerto No3 Classical 16854216 1053 1 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/CONCERTONO3/ALLEGROM.MP3 Intermezzo-Adagio Rachmaninoff Concerto No3 Classical 20047421 1252 2 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/CONCERTONO3/INTERMEZ.MP3 Sonata No. 2 the B flat m.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 4768956 298 10 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/BFLATNO3.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 4452558 278 5 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/FOUREL.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 2748540 171 4 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/LUDEIN.MP3 Piano Concerto No. 3: Fin.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 13509735 844 3 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/NO3FIN.MP3 Piano Concerto No. 3: Int.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 10097098 631 2 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/NO3INT.MP3 Piano Concerto No. 3: All.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 16753516 1047 1 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/PIANOCON.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 4103146 256 7 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/PRE4.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 2547084 159 6 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/PRELU3.MP3 Sonata No. 2 the B flat m.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 5412194 338 9 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/SONATANO.MP3 Sonata No. 2 the B flat m.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 7521216 470 8 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/THEBFLAT.MP3 Allegro Rachmaninoff Symphony No1 Classical 7433821 464 2 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/SYMPHONYNO1/ALLEGRO.MP3 Grave Rachmaninoff Symphony No1 Classical 13230495 826 1 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/SYMPHONYNO1/GRAVE.MP3 Larghetto Rachmaninoff Symphony No1 Classical 8788847 549 3 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/SYMPHONYNO1/LARGHETT.MP3 Descramble, the DeCSS Song N/A N/A Comedy 3604225 450 0 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 44100 MPEG AUDIO FILE MP3034/UNKNOWNARTI/UNKNOWNALBU/DESCRAMB.MP3 01 Woody Allen Night Club Years Comedy 12431845 1553 1 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/01.MP3 02 Woody Allen Night Club Years Comedy 10535997 1316 2 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/02.MP3 03 Woody Allen Night Club Years Comedy 11669920 1458 3 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/03.MP3 04 Woody Allen Night Club Years Comedy 10007697 1250 4 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/04.MP3 Asking For It Hole Live Through This Rock 3350714 209 4 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/ASKINGFO.MP3 Credit In The Straight World Hole Live Through This Rock 3058994 191 7 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/CREDITIN.MP3 Doll Parts Hole Live Through This Rock 3385402 211 6 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/DOLLPART.MP3 Gutless Hole Live Through This Rock 2165377 135 11 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/GUTLESS.MP3 I Think That I Would Die Hole Live Through This Rock 3463157 216 10 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/ITHINKTH.MP3 Jennifer's Body Hole Live Through This Rock 3547575 221 5 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/JENNIFER.MP3 Miss World Hole Live Through This Rock 2883851 180 2 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/MISSWORL.MP3 Plump Hole Live Through This Rock 2472992 154 3 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/PLUMP.MP3 Rock Star Hole Live Through This Rock 2590862 161 12 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/ROCKSTAR.MP3 She Walks On Me Hole Live Through This Rock 3263781 203 9 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/SHEWALKS.MP3 Softer, Softest Hole Live Through This Rock 3330236 208 8 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/SOFTERSO.MP3 Violet Hole Live Through This Rock 3270877 204 1 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/VIOLET.MP3 Finger Lickin' Good Beastie Boys Check Your Head Hip-Hop 3522089 220 6 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/FINGERLI.MP3 Funky Boss Beastie Boys Check Your Head Hip-Hop 1536774 96 2 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/FUNKYBOS.MP3 Gratitude Beastie Boys Check Your Head Hip-Hop 2653559 165 4 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/GRATITUD.MP3 Groove Holmes Beastie Boys Check Your Head Hip-Hop 2456288 153 15 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/GROOVEHO.MP3 In 3's Beastie Boys Check Your Head Hip-Hop 2294529 143 19 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/IN3S.MP3 Jimmy James Beastie Boys Check Your Head Hip-Hop 3114988 194 1 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/JIMMYJAM.MP3 Lighten Up Beastie Boys Check Your Head Hip-Hop 2587105 161 5 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/LIGHTENU.MP3 Live at P.J.'s Beastie Boys Check Your Head Hip-Hop 3173089 198 16 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/LIVEATPJ.MP3 Mark on the Bus Beastie Boys Check Your Head Hip-Hop 1051724 65 17 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/MARKONTH.MP3 Namaste' Beastie Boys Check Your Head Hip-Hop 3861043 241 20 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/NAMASTE.MP3 Pass the Mic Beastie Boys Check Your Head Hip-Hop 4115584 257 3 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/PASSTHEM.MP3 POW Beastie Boys Check Your Head Hip-Hop 2146152 134 13 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/POW.MP3 Professor Booty Beastie Boys Check Your Head Hip-Hop 4055819 253 18 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/PROFESSO.MP3 Something's Got to Give Beastie Boys Check Your Head Hip-Hop 3332340 208 10 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/SOMETHIN.MP3 So What'cha Want Beastie Boys Check Your Head Hip-Hop 3476110 217 7 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/SOWHATCH.MP3 Stand Together Beastie Boys Check Your Head Hip-Hop 2681987 167 12 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/STANDTOG.MP3 The Biz vs. The Nuge Beastie Boys Check Your Head Hip-Hop 540787 33 8 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/THEBIZVS.MP3 The Blue Nun Beastie Boys Check Your Head Hip-Hop 517792 32 11 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/THEBLUEN.MP3 The Maestro Beastie Boys Check Your Head Hip-Hop 2758052 172 14 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/THEMAEST.MP3 Time for Livin' Beastie Boys Check Your Head Hip-Hop 1743250 108 9 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/TIMEFORL.MP3 Beautiful Way Beck Midnite Vultures Rock 5533296 345 9 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/BEAUTIFU.MP3 Broken Train Beck Midnite Vultures Rock 4029060 251 7 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/BROKENTR.MP3 Debra Beck Midnite Vultures Rock 13197406 824 11 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/DEBRA.MP3 Get Real Paid Beck Midnite Vultures Rock 4175765 260 4 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/GETREALP.MP3 Hollywood Freaks Beck Midnite Vultures Rock 3834713 239 5 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/HOLLYWOO.MP3 Milk & Honey Beck Midnite Vultures Rock 5105723 319 8 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/MILKHONE.MP3 Mixed Bizness Beck Midnite Vultures Rock 4016940 251 3 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/MIXEDBIZ.MP3 Nicotine & Gravy Beck Midnite Vultures Rock 5005835 312 2 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/NICOTINE.MP3 Peaches & Cream Beck Midnite Vultures Rock 4708665 294 6 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/PEACHESC.MP3 Pressure Zone Beck Midnite Vultures Rock 2991695 186 10 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/PRESSURE.MP3 Sexx Laws Beck Midnite Vultures Rock 3518311 219 1 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/SEXXLAWS.MP3 Afrodiziak Bran Van 3000 Glee Trip-Hop 3715178 232 8 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/AFRODIZI.MP3 Ceci n'est pas une chanson Bran Van 3000 Glee Trip-Hop 6515103 407 13 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/CECINEST.MP3 Drinking in L.A. Bran Van 3000 Glee Trip-Hop 3773698 235 3 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/DRINKING.MP3 Everywhere Bran Van 3000 Glee Trip-Hop 3779126 236 12 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/EVERYWHE.MP3 Exactly like me! Bran Van 3000 Glee Trip-Hop 3418016 213 11 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/EXACTLYL.MP3 Forest Bran Van 3000 Glee Trip-Hop 4051213 253 6 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/FOREST.MP3 Lucknow Bran Van 3000 Glee Trip-Hop 2379377 148 9 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/LUCKNOW.MP3 Problems Bran Van 3000 Glee Trip-Hop 1635829 102 4 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/PROBLEMS.MP3 3 lil' putos Cypress Hill Black Sunday Hip-Hop 3527938 220 8 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/3LILPUTO.MP3 A to the k Cypress Hill Black Sunday Hip-Hop 3327317 207 12 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/ATOTHEK.MP3 Break 'em off some Cypress Hill Black Sunday Hip-Hop 2664441 166 14 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/BREAKEMO.MP3 Cock the hammer Cypress Hill Black Sunday Hip-Hop 4245159 265 6 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/COCKTHEH.MP3 Hand on the glock Cypress Hill Black Sunday Hip-Hop 3403810 212 13 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/HANDONTH.MP3 Hits from the bong Cypress Hill Black Sunday Hip-Hop 2582103 161 10 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/HITSFROM.MP3 I ain't goin' out like that Cypress Hill Black Sunday Hip-Hop 4297416 268 2 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/IAINTGOI.MP3 Insane in the brain Cypress Hill Black Sunday Hip-Hop 3350312 209 3 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/INSANEIN.MP3 Interlude Cypress Hill Black Sunday Hip-Hop 1232921 77 7 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/INTERLUD.MP3 I wanna get high Cypress Hill Black Sunday Hip-Hop 2796094 174 1 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/IWANNAGE.MP3 Legalize it Cypress Hill Black Sunday Hip-Hop 746419 46 9 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/LEGALIZE.MP3 Lick a shot Cypress Hill Black Sunday Hip-Hop 3258771 203 5 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/LICKASHO.MP3 What go around come around, kid Cypress Hill Black Sunday Hip-Hop 3558469 222 11 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/WHATGOAR.MP3 When the sh__ goes down Cypress Hill Black Sunday Hip-Hop 3023472 188 4 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/WHENTHES.MP3 Beautiful Love Helmet Betty Rock 1976457 123 10 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/BEAUTIFU.MP3 Biscuits For Smut Helmet Betty Rock 2782284 173 3 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/BISCUITS.MP3 Clean Helmet Betty Rock 2345921 146 8 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/CLEAN.MP3 I Know Helmet Betty Rock 3542123 221 2 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/IKNOW.MP3 Milquetoast Helmet Betty Rock 3743584 233 4 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/MILQUETO.MP3 Overrated Helmet Betty Rock 2567446 160 13 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/OVERRATE.MP3 Rollo Helmet Betty Rock 2531496 158 6 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/ROLLO.MP3 Sam Hell Helmet Betty Rock 2070073 129 14 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/SAMHELL.MP3 Speechless Helmet Betty Rock 2867124 179 11 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/SPEECHLE.MP3 Street Crab Helmet Betty Rock 3393334 212 7 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/STREETCR.MP3 The Silver Hawaiian Helmet Betty Rock 2050858 128 12 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/THESILVE.MP3 Tic Helmet Betty Rock 3529999 220 5 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/TIC.MP3 Vaccination Helmet Betty Rock 2946954 184 9 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/VACCINAT.MP3 Wilma's Rainbow Helmet Betty Rock 3744006 234 1 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/WILMASRA.MP3 Had A Dad Jane's Addiction Nothing's Shocking Alternative 3606514 225 3 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/HADADAD.MP3 Idiots Rule Jane's Addiction Nothing's Shocking Alternative 2901419 181 8 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/IDIOTSRU.MP3 Jane Says Jane's Addiction Nothing's Shocking Alternative 4689029 293 9 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/JANESAYS.MP3 Mountain Song Jane's Addiction Nothing's Shocking Alternative 3905777 244 7 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/MOUNTAIN.MP3 Ocean Size Jane's Addiction Nothing's Shocking Alternative 4157802 259 2 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/OCEANSIZ.MP3 Pigs In Zen Jane's Addiction Nothing's Shocking Alternative 4335020 270 11 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/PIGSINZE.MP3 Standing In The Shower... Thinking Jane's Addiction Nothing's Shocking Alternative 2963300 185 5 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/STANDING.MP3 Summertime Rolls Jane's Addiction Nothing's Shocking Alternative 6087945 380 6 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/SUMMERTI.MP3 Ted, Just Admit It... Jane's Addiction Nothing's Shocking Alternative 7084365 442 4 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/TEDJUSTA.MP3 Thank You Boys Jane's Addiction Nothing's Shocking Alternative 1036489 64 10 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/THANKYOU.MP3 Up The Beach Jane's Addiction Nothing's Shocking Alternative 2898912 181 1 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/UPTHEBEA.MP3 All I Ever Wanted Lenny Kravitz Mama Said Rock 4070446 254 11 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/ALLIEVER.MP3 Always On The Run Lenny Kravitz Mama Said Rock 3732316 233 2 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/ALWAYSON.MP3 Butterfly Lenny Kravitz Mama Said Rock 1795486 112 14 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/BUTTERFL.MP3 Fields Of Joy Lenny Kravitz Mama Said Rock 3802529 237 1 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/FIELDSOF.MP3 Flowers For Zoe Lenny Kravitz Mama Said Rock 2623050 163 9 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/FLOWERSF.MP3 More Than Anything In This World Lenny Kravitz Mama Said Rock 3333180 208 5 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/MORETHAN.MP3 Stand By My Woman Lenny Kravitz Mama Said Rock 4169501 260 3 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/STANDBYM.MP3 Stop Draggin' Around Lenny Kravitz Mama Said Rock 2550747 159 8 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/STOPDRAG.MP3 The Difference Is Why Lenny Kravitz Mama Said Rock 4688193 293 7 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/THEDIFFE.MP3 What Goes Around Comes Around Lenny Kravitz Mama Said Rock 4643061 290 6 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/WHATGOES.MP3 What The .... are We Saying? Lenny Kravitz Mama Said Rock 5023404 313 13 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/WHATTHEA.MP3 When The Morning Turns To Night Lenny Kravitz Mama Said Rock 2873425 179 12 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/WHENTHEM.MP3 Alice Springs Liz Phair Whip-Smart Alternative 1773753 110 13 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/ALICESPR.MP3 Chopsticks Liz Phair Whip-Smart Alternative 2012822 125 1 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/CHOPSTIC.MP3 Cinco de Mayo Liz Phair Whip-Smart Alternative 2624299 164 8 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/CINCODEM.MP3 Crater Lake Liz Phair Whip-Smart Alternative 2028705 126 12 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/CRATERLA.MP3 Dogs of L.A. Liz Phair Whip-Smart Alternative 2262764 141 9 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/DOGSOFLA.MP3 Go West Liz Phair Whip-Smart Alternative 3170148 198 7 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/GOWEST.MP3 Jealousy Liz Phair Whip-Smart Alternative 3482365 217 11 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/JEALOUSY.MP3 May Queen Liz Phair Whip-Smart Alternative 2597547 162 14 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/MAYQUEEN.MP3 Nashville Liz Phair Whip-Smart Alternative 4525592 282 6 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/NASHVILL.MP3 Shane Liz Phair Whip-Smart Alternative 4046188 252 5 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/SHANE.MP3 Supernova Liz Phair Whip-Smart Alternative 2704543 169 2 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/SUPERNOV.MP3 Support System Liz Phair Whip-Smart Alternative 2858775 178 3 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/SUPPORTS.MP3 Whip-Smart Liz Phair Whip-Smart Alternative 4140235 258 10 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/WHIPSMAR.MP3 X-Ray Man Liz Phair Whip-Smart Alternative 2140299 133 4 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/XRAYMAN.MP3 Bad Shit Porno for Pyros Porno For Pyros Alternative 2874663 179 7 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/BADSHIT.MP3 Black Girlfriend Porno for Pyros Porno For Pyros Alternative 4398550 274 9 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/BLACKGIR.MP3 Blood Rag Porno for Pyros Porno For Pyros Alternative 3387919 211 10 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/BLOODRAG.MP3 Cursed Female Porno for Pyros Porno For Pyros Alternative 3287194 205 4 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/CURSEDFE.MP3 Cursed Male Porno for Pyros Porno For Pyros Alternative 3711420 231 5 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/CURSEDMA.MP3 Meija Porno for Pyros Porno For Pyros Alternative 3099522 193 3 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/MEIJA.MP3 Orgasm Porno for Pyros Porno For Pyros Alternative 4305754 269 11 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/ORGASM.MP3 Packin' .25 Porno for Pyros Porno For Pyros Alternative 4009843 250 8 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/PACKIN25.MP3 Pets Porno for Pyros Porno For Pyros Alternative 3477356 217 6 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/PETS.MP3 Porno for Pyros Porno for Pyros Porno For Pyros Alternative 2998804 187 2 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/PORNOFOR.MP3 Sadness Porno for Pyros Porno For Pyros Alternative 2455449 153 1 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/SADNESS.MP3 Bouquet For A Siren Sebadoh Bubble & Scrape Rock 2825766 176 15 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/BOUQUETF.MP3 Cliche Sebadoh Bubble & Scrape Rock 2359309 147 7 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/CLICHE.MP3 Elixir Is Zog Sebadoh Bubble & Scrape Rock 2027457 126 9 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/ELIXIRIS.MP3 Emma Get Wild Sebadoh Bubble & Scrape Rock 1300209 81 10 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/EMMAGETW.MP3 Fantastic Disaster Sebadoh Bubble & Scrape Rock 3418430 213 4 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/FANTASTI.MP3 Flood Sebadoh Bubble & Scrape Rock 1510852 94 17 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/FLOOD.MP3 Forced Love Sebadoh Bubble & Scrape Rock 3196069 199 13 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/FORCEDLO.MP3 Happily Divided Sebadoh Bubble & Scrape Rock 2257754 141 5 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/HAPPILYD.MP3 Homemade Sebadoh Bubble & Scrape Rock 4844079 302 12 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/HOMEMADE.MP3 No Way Out Sebadoh Bubble & Scrape Rock 2172486 135 14 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/NOWAYOUT.MP3 Sacred Attention Sebadoh Bubble & Scrape Rock 2684491 167 8 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SACREDAT.MP3 Sister Sebadoh Bubble & Scrape Rock 2615936 163 6 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SISTER.MP3 Sixteen Sebadoh Bubble & Scrape Rock 1439383 89 11 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SIXTEEN.MP3 Soul And Fire Sebadoh Bubble & Scrape Rock 3628658 226 1 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SOULANDF.MP3 Telecosmic Alchemy Sebadoh Bubble & Scrape Rock 2166224 135 3 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/TELECOSM.MP3 Think (Let Tomorrow Bee) Sebadoh Bubble & Scrape Rock 3085741 192 16 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/THINKLET.MP3 Two Years Two Days Sebadoh Bubble & Scrape Rock 3002560 187 2 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/TWOYEARS.MP3 Androgynous Mind Sonic Youth Experimental Jet Set, Trash And No Star Rock 3377496 211 8 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/ANDROGYN.MP3 Bone Sonic Youth Experimental Jet Set, Trash And No Star Rock 3815087 238 7 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/BONE.MP3 Bull In The Heather Sonic Youth Experimental Jet Set, Trash And No Star Rock 2960793 185 2 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/BULLINTH.MP3 Doctor's Orders Sonic Youth Experimental Jet Set, Trash And No Star Rock 4168274 260 11 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/DOCTORSO.MP3 In The Mind Of The Bourgeois Reader Sonic Youth Experimental Jet Set, Trash And No Star Rock 2452572 153 13 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/INTHEMIN.MP3 Quest For The Cup Sonic Youth Experimental Jet Set, Trash And No Star Rock 2404906 150 9 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/QUESTFOR.MP3 Screaming Skull Sonic Youth Experimental Jet Set, Trash And No Star Rock 2553279 159 5 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SCREAMIN.MP3 Self-Obsessed And Sexxee Sonic Youth Experimental Jet Set, Trash And No Star Rock 4330033 270 6 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SELFOBSE.MP3 Skink Sonic Youth Experimental Jet Set, Trash And No Star Rock 4037442 252 4 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SKINK.MP3 Starfield Road Sonic Youth Experimental Jet Set, Trash And No Star Rock 2164158 135 3 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/STARFIEL.MP3 Sweet Shine Sonic Youth Experimental Jet Set, Trash And No Star Rock 7529498 470 14 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SWEETSHI.MP3 Tokyo Eye Sonic Youth Experimental Jet Set, Trash And No Star Rock 3758249 234 12 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/TOKYOEYE.MP3 Waist Sonic Youth Experimental Jet Set, Trash And No Star Rock 2711677 169 10 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/WAIST.MP3 Winner's Blues Sonic Youth Experimental Jet Set, Trash And No Star Rock 2036263 127 1 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/WINNERSB.MP3 Atlanta Stone Temple Pilots No. 4 Rock 5104469 319 11 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/ATLANTA.MP3 Church On Tuesday Stone Temple Pilots No. 4 Rock 2890548 180 4 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/CHURCHON.MP3 Down Stone Temple Pilots No. 4 Rock 3665850 229 1 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/DOWN.MP3 Glide Stone Temple Pilots No. 4 Rock 4803953 300 8 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/GLIDE.MP3 Heaven & Hot Rods Stone Temple Pilots No. 4 Rock 3299312 206 2 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/HEAVENHO.MP3 I Got You Stone Temple Pilots No. 4 Rock 4090919 255 9 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/IGOTYOU.MP3 MC5 Stone Temple Pilots No. 4 Rock 2602143 162 10 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/MC5.MP3 No Way Out Stone Temple Pilots No. 4 Rock 4157376 259 6 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/NOWAYOUT.MP3 Pruno Stone Temple Pilots No. 4 Rock 3118742 194 3 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/PRUNO.MP3 Sex & Violence Stone Temple Pilots No. 4 Rock 2790235 174 7 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/SEXVIOLE.MP3 Sour Girl Stone Temple Pilots No. 4 Rock 4104294 256 5 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/SOURGIRL.MP3 Adhesive Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 5354449 334 9 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/ADHESIVE.MP3 And So I know Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3807169 237 6 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/ANDSOIKN.MP3 Art School Girl Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3448562 215 8 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/ARTSCHOO.MP3 Big Bang Baby Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3262568 203 4 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/BIGBANGB.MP3 Daisy Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 2221843 138 11 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/DAISY.MP3 Lady Picture Show Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3983969 248 5 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/LADYPICT.MP3 Pop's Love Suicide Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3575206 223 2 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/POPSLOVE.MP3 Press Play Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 1299411 81 1 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/PRESSPLA.MP3 Ride The Cliche Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3168112 198 10 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/RIDETHEC.MP3 Seven Caged Tigers Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 4118136 257 12 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/SEVENCAG.MP3 Trippin' On A Hole In A Paper Heart Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 2829166 176 7 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/TRIPPINO.MP3 Tumble In The Rough Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3182744 198 3 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/TUMBLEIN.MP3 Bankrobber The Clash The Singles Rock 4407730 275 11 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/BANKROBB.MP3 Clash City Rockers The Clash The Singles Rock 3673801 229 4 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/CLASHCIT.MP3 Complete Control The Clash The Singles Rock 3113316 194 3 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/COMPLETE.MP3 English Civil War The Clash The Singles Rock 2529846 158 7 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/ENGLISHC.MP3 Hitsville UK The Clash The Singles Rock 4214217 263 13 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/HITSVILL.MP3 I Fought The Law The Clash The Singles Rock 2581252 161 8 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/IFOUGHTT.MP3 Know Your Rights The Clash The Singles Rock 3553010 222 16 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/KNOWYOUR.MP3 London Calling The Clash The Singles Rock 3219893 201 9 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/LONDONCA.MP3 Magnificent Seven The Clash The Singles Rock 4313696 269 14 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/MAGNIFIC.MP3 Remote Control The Clash The Singles Rock 2917709 182 2 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/REMOTECO.MP3 Rock The Casbah The Clash The Singles Rock 3578504 223 17 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/ROCKTHEC.MP3 Should I Stay Or Should I Go The Clash The Singles Rock 3001733 187 18 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/SHOULDIS.MP3 The Call Up The Clash The Singles Rock 5232782 327 12 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/THECALLU.MP3 This Is Radio Clash The Clash The Singles Rock 4020291 251 15 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/THISISRA.MP3 Tommy Gun The Clash The Singles Rock 3153015 197 6 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/TOMMYGUN.MP3 Train In Vain The Clash The Singles Rock 3062321 191 10 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/TRAININV.MP3 (White Man) In Hammersmith Palais The Clash The Singles Rock 3866495 241 5 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/WHITEMAN.MP3 White Riot The Clash The Singles Rock 1907497 119 1 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/WHITERIO.MP3 Bobcaygeon The Tragically Hip Phantom Power Rock 4729151 295 4 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/BOBCAYGE.MP3 Chagrin Falls The Tragically Hip Phantom Power Rock 4014862 250 10 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/CHAGRINF.MP3 Emperor Penguin The Tragically Hip Phantom Power Rock 3983100 248 12 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/EMPERORP.MP3 Escape Is At Hand For The Travelin' Man The Tragically Hip Phantom Power Rock 5653288 353 11 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/ESCAPEIS.MP3 Fireworks The Tragically Hip Phantom Power Rock 3784980 236 7 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/FIREWORK.MP3 Membership The Tragically Hip Phantom Power Rock 4490914 280 6 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/MEMBERSH.MP3 Poets The Tragically Hip Phantom Power Rock 3833877 239 1 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/POETS.MP3 Save the Planet The Tragically Hip Phantom Power Rock 3489071 218 3 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/SAVETHEP.MP3 Something On The Tragically Hip Phantom Power Rock 3227425 201 2 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/SOMETHIN.MP3 The Rules The Tragically Hip Phantom Power Rock 3624484 226 9 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/THERULES.MP3 Thompson Girl The Tragically Hip Phantom Power Rock 3402551 212 5 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/THOMPSON.MP3 Vapour Trail The Tragically Hip Phantom Power Rock 4333763 270 8 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/VAPOURTR.MP3 Calling All The People 4 Non Blondes Bigger, Better, Faster, More! Rock 3165170 197 8 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/CALLINGA.MP3 Dear Mr. President 4 Non Blondes Bigger, Better, Faster, More! Rock 4536908 283 9 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/DEARMRPR.MP3 Drifting 4 Non Blondes Bigger, Better, Faster, More! Rock 3379153 211 10 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/DRIFTING.MP3 Morphine & Chocolate 4 Non Blondes Bigger, Better, Faster, More! Rock 4546941 284 5 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/MORPHINE.MP3 No Place Like Home 4 Non Blondes Bigger, Better, Faster, More! Rock 3023479 188 11 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/NOPLACEL.MP3 Old Mr. Heffer 4 Non Blondes Bigger, Better, Faster, More! Rock 2189646 136 7 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/OLDMRHEF.MP3 Pleasantly Blue 4 Non Blondes Bigger, Better, Faster, More! Rock 2378564 148 4 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/PLEASANT.MP3 Spaceman 4 Non Blondes Bigger, Better, Faster, More! Rock 3526273 220 6 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/SPACEMAN.MP3 Superfly 4 Non Blondes Bigger, Better, Faster, More! Rock 4442022 277 2 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/SUPERFLY.MP3 Train 4 Non Blondes Bigger, Better, Faster, More! Rock 3561379 222 1 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/TRAIN.MP3 What's Up 4 Non Blondes Bigger, Better, Faster, More! Rock 4731668 295 3 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/WHATSUP.MP3 Bad Things L7 The Beauty Process:Triple Platinum Rock 3089920 193 8 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/BADTHING.MP3 Bitter Wine L7 The Beauty Process:Triple Platinum Rock 4086335 255 6 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/BITTERWI.MP3 Drama L7 The Beauty Process:Triple Platinum Rock 3331077 208 2 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/DRAMA.MP3 I Need L7 The Beauty Process:Triple Platinum Rock 2827437 176 4 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/INEED.MP3 Lorenza, Giada, Alessandra L7 The Beauty Process:Triple Platinum Rock 4250191 265 12 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/LORENZAG.MP3 Me, Myself & I L7 The Beauty Process:Triple Platinum Rock 3627420 226 11 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/MEMYSELF.MP3 Moonshine L7 The Beauty Process:Triple Platinum Rock 3253341 203 5 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/MOONSHIN.MP3 Must Have More L7 The Beauty Process:Triple Platinum Rock 2803622 175 9 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/MUSTHAVE.MP3 Non-Existent Patricia L7 The Beauty Process:Triple Platinum Rock 4327509 270 10 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/NONEXIST.MP3 Off The Wagon L7 The Beauty Process:Triple Platinum Rock 3311859 206 3 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/OFFTHEWA.MP3 The Beauty Process L7 The Beauty Process:Triple Platinum Rock 923645 57 1 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/THEBEAUT.MP3 The Masses Are Asses L7 The Beauty Process:Triple Platinum Rock 4179967 261 7 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/THEMASSE.MP3 Don't Look Back Luscious Jackson Fever In Fever Out Alternative 3070697 191 2 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/DONTLOOK.MP3 Door Luscious Jackson Fever In Fever Out Alternative 104847 6 3 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/DOOR.MP3 Electric Luscious Jackson Fever In Fever Out Alternative 3047284 190 6 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/ELECTRIC.MP3 Faith Luscious Jackson Fever In Fever Out Alternative 2967034 185 13 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/FAITH.MP3 Mood Swing Luscious Jackson Fever In Fever Out Alternative 3225337 201 4 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/MOODSWIN.MP3 Naked Eye Luscious Jackson Fever In Fever Out Alternative 4494260 280 1 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/NAKEDEYE.MP3 One Thing Luscious Jackson Fever In Fever Out Alternative 2951573 184 11 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/ONETHING.MP3 Parade Luscious Jackson Fever In Fever Out Alternative 193040 12 12 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/PARADE.MP3 Soothe Yourself Luscious Jackson Fever In Fever Out Alternative 4077142 254 9 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/SOOTHEYO.MP3 Stardust Luscious Jackson Fever In Fever Out Alternative 3673388 229 14 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/STARDUST.MP3 Take A Ride Luscious Jackson Fever In Fever Out Alternative 6523871 407 7 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/TAKEARID.MP3 Under Your Skin Luscious Jackson Fever In Fever Out Alternative 3810902 238 5 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/UNDERYOU.MP3 Water Your Garden Luscious Jackson Fever In Fever Out Alternative 4226774 264 8 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/WATERYOU.MP3 Why Do I Lie? Luscious Jackson Fever In Fever Out Alternative 3198591 199 10 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/WHYDOILI.MP3 Denied Our Lady Peace Naveed Rock 4813145 300 7 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/DENIED.MP3 Dirty Walls Our Lady Peace Naveed Rock 3633252 227 6 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/DIRTYWAL.MP3 Hope Our Lady Peace Naveed Rock 5044693 315 4 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/HOPE.MP3 Is It Safe? Our Lady Peace Naveed Rock 3657493 228 8 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/ISITSAFE.MP3 Julia Our Lady Peace Naveed Rock 3827597 239 9 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/JULIA.MP3 Naveed Our Lady Peace Naveed Rock 5628584 351 5 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/NAVEED.MP3 Neon Crossing Our Lady Peace Naveed Rock 3063576 191 11 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/NEONCROS.MP3 Starseed Our Lady Peace Naveed Rock 3962601 247 3 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/STARSEED.MP3 Supersatellite Our Lady Peace Naveed Rock 3597728 224 2 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/SUPERSAT.MP3 The Birdman Our Lady Peace Naveed Rock 5023384 313 1 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/THEBIRDM.MP3 Under Zenith Our Lady Peace Naveed Rock 3612356 225 10 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/UNDERZEN.MP3 Dance To The Music Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2878042 179 7 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/DANCETOT.MP3 Everybody Is A Star Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2896853 181 2 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/EVERYBOD.MP3 Everyday People Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2277015 142 8 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/EVERYDAY.MP3 Fun Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2266136 141 5 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/FUN.MP3 Hot Fun In The Summertime Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2534906 158 9 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/HOTFUNIN.MP3 I Want To Take You Higher Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 5181841 323 1 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/IWANTTOT.MP3 Life Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2889822 180 4 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/LIFE.MP3 M'Lady Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2654424 165 10 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/MLADY.MP3 Sing A Simple Song Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 3791777 236 11 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/SINGASIM.MP3 Stand! Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2991716 186 3 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/STAND.MP3 Thank You (Fa Lettin Me Be Mice Elf Agin) Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 4636840 289 12 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/THANKYOU.MP3 You Can Make It If You Try Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 3501647 218 6 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/YOUCANMA.MP3 Cannonball The breeders The Last Splash Alternative 3423860 213 2 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/CANNONBA.MP3 Divine Hammer The breeders The Last Splash Alternative 2583766 161 10 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/DIVINEHA.MP3 Do You Love Me? The breeders The Last Splash Alternative 2913537 182 6 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/DOYOULOV.MP3 Drivin' On 9 The breeders The Last Splash Alternative 3238707 202 14 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/DRIVINON.MP3 Flipside The breeders The Last Splash Alternative 1915026 119 7 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/FLIPSIDE.MP3 Hag The breeders The Last Splash Alternative 2816558 176 12 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/HAG.MP3 I Just Wanna Get Along The breeders The Last Splash Alternative 1671787 104 8 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/IJUSTWAN.MP3 Invisible Man The breeders The Last Splash Alternative 2695360 168 3 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/INVISIBL.MP3 Mad Lucas The breeders The Last Splash Alternative 4431977 276 9 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/MADLUCAS.MP3 New Year The breeders The Last Splash Alternative 1856093 116 1 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/NEWYEAR.MP3 No Aloha The breeders The Last Splash Alternative 2038324 127 4 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/NOALOHA.MP3 Roi The breeders The Last Splash Alternative 4028640 251 5 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/ROI.MP3 Roi (Reprise) The breeders The Last Splash Alternative 676201 42 15 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/ROIREPRI.MP3 Saints The breeders The Last Splash Alternative 2437056 152 13 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/SAINTS.MP3 S.O.S. The breeders The Last Splash Alternative 1470734 91 11 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/SOS.MP3 Dead Presidents Theme (Music from the "Dead Presidents" Original Score) Danny Elfman Dead Presidents (Vol. 1) Soundtrack 4184617 261 14 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/DEADPRES.MP3 Do Right Woman, Do Right Man Aretha Franklin Dead Presidents (Vol. 1) Soundtrack 3127557 195 9 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/DORIGHTW.MP3 Get Up & Get Down The Dramatics Dead Presidents (Vol. 1) Soundtrack 3065686 191 7 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/GETUPGET.MP3 If There's Hell Below Curtis Mayfield Dead Presidents (Vol. 1) Soundtrack 7432530 464 8 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/IFTHERES.MP3 If You Want Me To Stay Sly & The Family Stone Dead Presidents (Vol. 1) Soundtrack 2852123 178 1 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/IFYOUWAN.MP3 I'll Be Around The Spinners Dead Presidents (Vol. 1) Soundtrack 3053143 190 4 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/ILLBEARO.MP3 I Miss You Harold Melvin & The Blue Notes Dead Presidents (Vol. 1) Soundtrack 8132197 508 6 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/IMISSYOU.MP3 Love Train The O'Jays Dead Presidents (Vol. 1) Soundtrack 2854190 178 12 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/LOVETRAI.MP3 Never Gonna Give You Up Barry White Dead Presidents (Vol. 1) Soundtrack 7661151 478 5 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/NEVERGON.MP3 The Look Of Love Isaac Hayes Dead Presidents (Vol. 1) Soundtrack 10783300 673 13 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/THELOOKO.MP3 The Payback James Brown Dead Presidents (Vol. 1) Soundtrack 7381107 461 3 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/THEPAYBA.MP3 Tired Of Being Alone Al Green Dead Presidents (Vol. 1) Soundtrack 2701225 168 11 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/TIREDOFB.MP3 Walk On By Isaac Hayes Dead Presidents (Vol. 1) Soundtrack 4389354 274 2 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/WALKONBY.MP3 Where Is The Love Jessis & Trina Dead Presidents (Vol. 1) Soundtrack 4037025 252 10 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/WHEREIST.MP3 Ain't That a Groove James Brown Dead Presidents (Vol. 2) Soundtrack 3398801 212 12 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/AINTTHAT.MP3 Cowboys to Girls The Intruders Dead Presidents (Vol. 2) Soundtrack 2546162 159 6 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/COWBOYST.MP3 I got the Feelin' James Brown Dead Presidents (Vol. 2) Soundtrack 2564551 160 1 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/IGOTTHEF.MP3 I was made to love her Stevie Wonder Dead Presidents (Vol. 2) Soundtrack 2524852 157 8 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/IWASMADE.MP3 Just my Imagination (Running away with me) The Temptations Dead Presidents (Vol. 2) Soundtrack 3736956 233 5 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/JUSTMYIM.MP3 Keep on Pushing The Impressions Dead Presidents (Vol. 2) Soundtrack 2462571 153 2 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/KEEPONPU.MP3 (Man Oh Man) I want to go back The Impressions Dead Presidents (Vol. 2) Soundtrack 2977094 186 9 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/MANOHMAN.MP3 Never Gonna Give You Up Jerry Butler Dead Presidents (Vol. 2) Soundtrack 2842919 177 7 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/NEVERGON.MP3 Right on for the Darkness Curtis Mayfield Dead Presidents (Vol. 2) Soundtrack 7130767 445 4 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/RIGHTONF.MP3 Smiling Faces Sometimes The Undisputed Truth Dead Presidents (Vol. 2) Soundtrack 3153471 197 3 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/SMILINGF.MP3 We People Darker than Blue Curtis Mayfield Dead Presidents (Vol. 2) Soundtrack 8396767 524 11 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/WEPEOPLE.MP3 When Something Is Wrong with my Baby Sam & Dave Dead Presidents (Vol. 2) Soundtrack 3137174 196 10 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/WHENSOME.MP3 When The Body Speaks Depeche Mode Exciter Alternative 5779913 361 4 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/WHENTHEB.MP3 Shine Depeche Mode Exciter Alternative 5323905 332 2 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/SHINE.MP3 The Dead Of Night Depeche Mode Exciter Alternative 4647659 290 5 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/THEDEADO.MP3 The Sweetest Condition Depeche Mode Exciter Alternative 3565149 222 3 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/THESWEET.MP3 I Am You Depeche Mode Exciter Alternative 4970733 310 12 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/IAMYOU.MP3 I Feel Loved Depeche Mode Exciter Alternative 4175360 260 9 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/IFEELLOV.MP3 Lovetheme Depeche Mode Exciter Alternative 1963935 122 6 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/LOVETHEM.MP3 Comatose Depeche Mode Exciter Alternative 3269638 204 8 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/COMATOSE.MP3 Freelove Depeche Mode Exciter Alternative 5934964 370 7 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/FREELOVE.MP3 Goodnight Lovers Depeche Mode Exciter Alternative 3661275 228 13 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/GOODNIGH.MP3 Breathe Depeche Mode Exciter Alternative 5086507 317 10 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/BREATHE.MP3 Dream On Depeche Mode Exciter Alternative 4161563 260 1 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/DREAMON.MP3 Easy Tiger Depeche Mode Exciter Alternative 2009912 125 11 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/EASYTIGE.MP3 Amnesiac-Morning Bell Radiohead Amnesiac Rock 3110912 194 7 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Amnesiac-Morning Bell.mp3 Dollars & Cents Radiohead Amnesiac Rock 4669440 291 8 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Dollars & Cents.mp3 Hunting Bears Radiohead Amnesiac Rock 1941504 121 9 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Hunting Bears.mp3 I Might Be Wrong Radiohead Amnesiac Rock 4702208 293 5 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/I Might Be Wrong.mp3 Knives Out Radiohead Amnesiac Rock 4079616 254 6 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Knives Out.mp3 Life In A Glass House Radiohead Amnesiac Rock 4397056 274 11 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Life In A Glass House.mp3 Like Spinning Plates Radiohead Amnesiac Rock 3801088 237 10 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Like Spinning Plates.mp3 Packt Like Sardines In A Crushd Tin Box Radiohead Amnesiac Rock 3848192 240 1 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Packt Like Sardines In A Crushd Tin Box.mp3 Pullk-Pull Revolving Doors Radiohead Amnesiac Rock 3958784 247 3 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Pullk-Pull Revolving Doors.mp3 Pyramid Song Radiohead Amnesiac Rock 4622336 288 2 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Pyramid Song.mp3 Outside - Live Staind N/A Rock 5467232 341 0 2002-02-26 01:29:38-08 2002-02-26 01:29:38-08 128 44100 MPEG AUDIO FILE MP3036/Staind/Unknown Album/Outside - Live.mp3 ========================================================== 4images Installation ========================================================== ---------------------------------------------------------- Systemvoraussetzungen: ---------------------------------------------------------- - Ein Webserver oder ein Webhosting Account (Empfohlen wird Linux/Apache) - PHP Version 4.0.5 oder hher (Empfohlen wird die jeweils aktuellste Version). Um zu gewhrleisten, dass 4images einwandfrei funktioniert, sollte "safe_mode" deaktiviert sein ("safe_mode = off" in your php.ini). - MySQL Version 3.23 oder hher (Empfohlen wird MySQL Version 3.23.33) Optional: - ImageMagick (http://www.imagemagick.org) oder GD (http://www.boutell.com/gd) - Um Thumbnails und verkleinerte Bilder erstellen zu knnen, wird PHP mit UnterstEzung der GD Bibliothek (http://www.boutell.com/gd) oder das ImageMagick "convert" Programm (http://www.imagemagick.org) oder NetPBM (http://netpbm.sourceforge.net) bentigt. ---------------------------------------------------------- Installation: ---------------------------------------------------------- (FE Update von lteren Versionen siehe Update.deutsch.txt) 1. Entpacken Sie das .zip Archiv (z.B. mit WinZip) und Eertragen Sie alle Dateien in ein geeignetes Verzeichnis auf Ihren Webserver (Achten Sie darauf, dass die Verzeichnisstruktur erhalten bleibt) und rufen Sie dieses Verzeichnis Eer Ihren Browser auf. 2. Nun erscheint die Installationsmaske von 4images. Tragen Sie alle geforderten Daten in das Formular ein und klicken Sie auf "Installation starten". 3. Es werden jetzt die bentigten Tabellen in Ihrer Datenbank erstellt und Grundeinstellungen vorgenommen. 4. Der Installer erstellt whrend der Installation eine Konfigurationsdatei mit dem Namen config.php im gewhlten Installationsverzeichnis. Sollte der Installer diese Datei nicht direkt auf Ihrem Server speichern knnen (z.B. wenn er nicht die erforderlichen Schreibrechte besitzt), erscheint am Ende der Installation ein Hinweis und die Mglichkeit diese Datei herunterzuladen. Laden Sie sich die Datei herunter und Eertragen Sie diese auf Ihren Webserver. 5. Setzen die angegebenen Zugriffsrechte fE folgende Verzeichnisse: chmod 777 (drwxrwxrwx) : data chmod 777 (drwxrwxrwx) : data/database chmod 777 (drwxrwxrwx) : data/media chmod 777 (drwxrwxrwx) : data/thumbnails chmod 777 (drwxrwxrwx) : data/tmp_media chmod 777 (drwxrwxrwx) : data/tmp_thumbnails chmod 777 (drwxrwxrwx) : templates chmod 777 (drwxrwxrwx) : templates/default chmod 777 (drwxrwxrwx) : templates/default/media Setzen die angegebenen Zugriffsrechte fE folgende Dateien: chmod 666 (-rw-rw-rw-) : alle Dateien im Verzeichnis "templates/default" chmod 666 (-rw-rw-rw-) : alle Dateien im Verzeichnis "templates/default/media" Dies knnen Sie z.B. mit FTP-Programmen wie CuteFTP oder WS_FTP tun. 6. Lschen Sie die Datei "install.php" und alle "update_*_to_*.php" von Ihrem Server. Zustzlich knnen Sie die Dateien im Ordner "data/database/default" und den Ordner "docs" lschen. 7. Die Installation ist nun abgeschlossen. Sie knnen sich nun mit Ihrem bei der Installation gewhlten Usernamen und Passwort in den Administrationsbereich einloggen und unter "Allgemein -> Einstellungen" Die Einstellungen fE Ihre Galerie vornehmen. 8. Seit Version 1.7.1 enthlt 4images ein internes Caching-System. AusfErliche Informationen finden sie in der Datei docs/Cache_de.txt. ========================================================== Cache ========================================================== Seit Version 1.7.1 verfEt 4images Eer ein internes Caching System. Dieses System kann Ergebnisse die von den Skripten generiert werden, zwischenspeichern. Wenn ein Besucher das nchste Mal ein bestimmtes Skript aufruft, kann das Ergebnis aus dem Zwischenspeicher geholt und muss nicht neu generiert werden. Dies bringt aber auch gewisse "Nachteile" mit sich. Dynamische Daten wie Hits, Bewertungen, Zufallsbilder und die "Wer ist online"-Anzeige werden ebenso zwischengespeichert. Diese Daten werden dem Besucher solange unverndert nagezeigt, bis die Daten im Zwischenspeicher ungEtig und neu generiert werden. Wenn z.B. $cache_lifetime (wird weiter unten genauer erklrt) auf 5 Minuten gesetzt wird, bleiben fE den Besucher fE diesen Zeitraum dynamische Daten unverndert sichtbar. Auch neu hinzugefEet Kategorien und Bilder erscheinen nicht in der Galerie bis die zwischengespeicherten Daten ungEtig und neu generiert werden. Das bedeutet, wenn nderungen vorgenommen werden wie z.B. - HinzufEen/Bearbeiten von Bilder - HinzufEen/Bearbeiten von Kategorien - HinzufEen/Bearbeiten von Benutzern und Berechtigungen - HinzufEen/Bearbeiten von Templates - ndern der Standard-Sprache muss der Zwischenspeicher geleert werden um sicherzustellen, dass die Besucher keine alten Daten sehen. Der Zwischenspeicher sollte auerdem grundstzlich von Zeit zu Zeit geleert werden. Das kann manuell mit einem FTP-Programm oder mit dem Plugin "Clear Cache" Eer das Control Panel gemacht werden. Momentan werden folgende Seiten zwischengepeichert: - Die Index-Seite (index.php) - Die Kategorie-Seiten (categories.php) - Die Top-Seite (top.php) - Die RSS-Feeds (rss.php) Auerdem werden einige interne Daten zwischengespeichert. ---------------------------------------------------------- Das Caching System aktivieren: ---------------------------------------------------------- 1. Erstellen Sie ein neues Verzeichnis "cache" innerhalb des 4images Ordners. Stellen Sie sicher, dass der Ordner Schreibzugriff erlaubt (chmod 777). Sie sollten auerdem das Verzeichnis mit einer .htaccess Datei gegen Zugriff von auen schEzen. 2. FEen Sie folgende Zeile in der Datei config.php ein: $cache_enable = 1; -- Erweiterte Kontrolle des Caching Systems ------------ Sie knnen das Caching System mit den folgende Anweisungen in der Datei config.php konfigurieren: - $cache_enable = 1; Ein Wert von 1 aktiviert das Caching System, 0 deaktiviert es. Der Standard-Wert ist 0. - $cache_lifetime = 3600; Die Lebensdauer der Dateien im Zwischenspeicher in Sekunden. Der Standard-Wert ist 3600 (1 Stunde). - $cache_path = './cache'; Der Pfad zum Ordern in welchem die Cache-Dateien gespeichert werden. Sie sollten den Ordner auerhalb des DOCUMENT_ROOT verschieben oder den Ordner mit einer .htaccess Datei schEzen. - $cache_page_index = 1; Ein Wert von 0 dekativiert das Zwischenspeichern von Inhalten generiert von index.php. Der Standard-Wert ist 1. - $cache_page_categories = 1; Ein Wert von 0 dekativiert das Zwischenspeichern von Inhalten generiert von categories.php. Der Standard-Wert ist 1. - $cache_page_top = 1; Ein Wert von 0 dekativiert das Zwischenspeichern von Inhalten generiert von top.php. Der Standard-Wert ist 1. - $cache_page_rss = 1; Ein Wert von 0 dekativiert das Zwischenspeichern von Inhalten generiert von rss.php. Der Standard-Wert ist 1. Name Artist Album Genre Size Time Track Number Track Count Year Date Date Added Bit Rate Sample Rate Volume Adjustment Kind Comments Location Too Da Doo N/A N/A N/A 51857 12 0 2002-01-20 01:38:26-08 2002-01-20 01:38:26-08 32 22050 MPEG AUDIO FILE Toodadoo.mp3 The Makers Daniel Lanois N/A Rock 3944667 246 0 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/DANIELLANOI/UNKNOWNALBU/THEMAKER.MP3 Animal Francis Cabrel D'une ombre a l'autre vol.1 Pop 5261718 328 2 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/ANIMAL.MP3 Carte postale Francis Cabrel D'une ombre a l'autre vol.1 Pop 4401209 275 14 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/CARTEPOS.MP3 Je pense encore Etoi Francis Cabrel D'une ombre a l'autre vol.1 Pop 2487320 155 15 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/JEPENSEE.MP3 Je sais que tu danses Francis Cabrel D'une ombre a l'autre vol.1 Pop 4381512 273 13 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/JESAISQU.MP3 Je te suivrai Francis Cabrel D'une ombre a l'autre vol.1 Pop 5039789 314 7 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/JETESUIV.MP3 L'encre de tes yeux Francis Cabrel D'une ombre a l'autre vol.1 Pop 3730747 233 9 2002-02-26 01:16:49-08 2002-02-26 01:16:49-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LENCREDE.MP3 Le pas des ballerines Francis Cabrel D'une ombre a l'autre vol.1 Pop 8982406 561 1 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LEPASDES.MP3 Les murs de poussire Francis Cabrel D'une ombre a l'autre vol.1 Pop 3318223 207 5 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LESMURSD.MP3 Le temps s'en allait Francis Cabrel D'une ombre a l'autre vol.1 Pop 5142614 321 8 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/LETEMPSS.MP3 Petite Marie Francis Cabrel D'une ombre a l'autre vol.1 Pop 3792598 237 4 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/PETITEMA.MP3 Petite sirne Francis Cabrel D'une ombre a l'autre vol.1 Pop 3334935 208 10 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/PETITESI.MP3 Qu'est-ce que je viens de dire Francis Cabrel D'une ombre a l'autre vol.1 Pop 3979027 248 12 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/QUESTCEQ.MP3 Question d'quilibre Francis Cabrel D'une ombre a l'autre vol.1 Pop 3643812 227 11 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/QUESTION.MP3 Said et Mohamed Francis Cabrel D'une ombre a l'autre vol.1 Pop 4070544 254 3 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/SAIDETMO.MP3 Tourner les hlicos Francis Cabrel D'une ombre a l'autre vol.1 Pop 5140523 321 6 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR1/TOURNERL.MP3 C'etait l'hiver Francis Cabrel D'une ombre a l'autre vol.3 Pop 3754568 234 10 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/CETAITLH.MP3 Chandelle Francis Cabrel D'une ombre a l'autre vol.3 Pop 4133232 258 6 2002-02-26 01:16:50-08 2002-02-26 01:16:50-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/CHANDELL.MP3 Chauffard Francis Cabrel D'une ombre a l'autre vol.3 Pop 4251932 265 9 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/CHAUFFAR.MP3 Dame d'un soir Francis Cabrel D'une ombre a l'autre vol.3 Pop 3605773 225 11 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/DAMEDUNS.MP3 Encore et encore Francis Cabrel D'une ombre a l'autre vol.3 Pop 5333618 333 13 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/ENCOREET.MP3 Je te suivrai Francis Cabrel D'une ombre a l'autre vol.3 Pop 4070960 254 3 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/JETESUIV.MP3 La dame de Haute-Savoie Francis Cabrel D'une ombre a l'autre vol.3 Pop 4486422 280 14 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/LADAMEDE.MP3 La fille qui m'accompagne Francis Cabrel D'une ombre a l'autre vol.3 Pop 4620170 288 7 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/LAFILLEQ.MP3 Leila et les chasseurs Francis Cabrel D'une ombre a l'autre vol.3 Pop 5088281 318 4 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/LEILAETL.MP3 Petite Marie Francis Cabrel D'une ombre a l'autre vol.3 Pop 3790508 236 2 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/PETITEMA.MP3 Rosie Francis Cabrel D'une ombre a l'autre vol.3 Pop 3505871 219 8 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/ROSIE.MP3 Sarbacane Francis Cabrel D'une ombre a l'autre vol.3 Pop 4412429 275 12 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/SARBACAN.MP3 Si tu la croises un jour Francis Cabrel D'une ombre a l'autre vol.3 Pop 3427732 214 1 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/SITULACR.MP3 Tout le monde y pense Francis Cabrel D'une ombre a l'autre vol.3 Pop 3730749 233 5 2002-02-26 01:16:51-08 2002-02-26 01:16:51-08 128 44100 MPEG AUDIO FILE MP3031/FRANCISCABR/DUNEOMBR3/TOUTLEMO.MP3 Le dernier repas Jacques Brel 15 ans d'amour Pop 3313161 207 0 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/15ANSDAMOUR/LEDERNIE.MP3 La Quete Jacques Brel Brel, Quinze Ans D'amour Pop 2302120 143 0 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/BRELQUINZEA/LAQUETE.MP3 Le Moribond Jacques Brel De 24 Grootste Successen Pop 3008140 188 0 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/DE24GROOTST/LEMORIBO.MP3 Je ne sais pas Jacques Brel Intgrale Vol.10 - Ne me quitte pas Pop 3033160 189 11 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/INTGRALE10 /JENESAIS.MP3 Le prochain amour Jacques Brel Intgrale Vol.10 - Ne me quitte pas Pop 4172519 260 8 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/INTGRALE10 /LEPROCHA.MP3 Les flamandes Jacques Brel Intgrale Vol.10 - Ne me quitte pas Pop 2552087 159 4 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/INTGRALE10 /LESFLAMA.MP3 Au suivant Jacques Brel Jacques Brel Vol. 1 Pop 2971700 185 14 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/AUSUIVAN.MP3 Ces gens la Jacques Brel Jacques Brel Vol. 1 Pop 4503104 281 11 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/CESGENSL.MP3 J'arrive Jacques Brel Jacques Brel Vol. 1 Pop 4556181 284 10 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/JARRIVE.MP3 Jef Jacques Brel Jacques Brel Vol. 1 Pop 3447749 215 12 2002-02-26 01:16:52-08 2002-02-26 01:16:52-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/JEF.MP3 Le plat pays Jacques Brel Jacques Brel Vol. 1 Pop 2614346 163 6 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LEPLATPA.MP3 Les bourgeois Jacques Brel Jacques Brel Vol. 1 Pop 2755618 172 16 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LESBOURG.MP3 Les remparts de varsovie Jacques Brel Jacques Brel Vol. 1 Pop 3950990 246 8 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LESREMPA.MP3 Les vieux Jacques Brel Jacques Brel Vol. 1 Pop 3934258 245 3 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/LESVIEUX.MP3 Madeleine Jacques Brel Jacques Brel Vol. 1 Pop 2824160 176 15 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/MADELEIN.MP3 Mathilde Jacques Brel Jacques Brel Vol. 1 Pop 2517792 157 7 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/MATHILDE.MP3 On n'oublie rien Jacques Brel Jacques Brel Vol. 1 Pop 2968779 185 5 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/JACQUESB 1/ONNOUBLI.MP3 bruxelles Jacques Brel Master Serie Vol. 2 Pop 2873896 179 6 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/BRUXELLE.MP3 fernand Jacques Brel Master Serie Vol. 2 Pop 5031818 314 10 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/FERNAND.MP3 Jojo Jacques Brel Master Serie Vol. 2 Pop 3122158 195 8 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/JOJO.MP3 le gaz Jacques Brel Master Serie Vol. 2 Pop 2789883 174 5 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LEGAZ.MP3 les biches Jacques Brel Master Serie Vol. 2 Pop 4842066 302 2 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESBICHE.MP3 les bonbons Jacques Brel Master Serie Vol. 2 Pop 3389241 211 4 2002-02-26 01:16:53-08 2002-02-26 01:16:53-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESBONBO.MP3 les marquises Jacques Brel Master Serie Vol. 2 Pop 3738239 233 9 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESMARQU.MP3 les paumes du petit matin Jacques Brel Master Serie Vol. 2 Pop 4129461 258 3 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/LESPAUME.MP3 Orly Jacques Brel Master Serie Vol. 2 Pop 4127768 257 1 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/MASTERSE 2/ORLY.MP3 C'est trop facile Jacques Brel Quand On n'a Que l'Amour (CD1) Pop 1717425 107 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/QUANDONNAQU/CESTTROP.MP3 La chanson des vieux amants Jacques Brel Ses 16 plus belles chansons Pop 4332587 270 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LA CHANSON DES VIEUX AMANTS.MP3 La chanson de Jacky Jacques Brel Ses 16 plus belles chansons Pop 3273889 204 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LACHANSO.MP3 La ville s'endormait Jacques Brel Ses 16 plus belles chansons Pop 4406559 275 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LAVILLES.MP3 L'eclusier Jacques Brel Ses 16 plus belles chansons Pop 4159117 259 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/SES16PLUSBE/LECLUSIE.MP3 Il nous faut regarder Jacques Brel N/A Pop 2318398 144 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/ILNOUSFA.MP3 isabelle Jacques Brel N/A Pop 3084086 192 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/ISABELLE.MP3 Jaures Jacques Brel N/A Pop 3406749 212 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/JAURES.MP3 knokke-le-zoute Jacques Brel N/A Pop 4980792 311 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/KNOKKELE.MP3 La Biere Jacques Brel N/A Pop 2047547 127 0 2002-02-26 01:16:54-08 2002-02-26 01:16:54-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LABIERE.MP3 La fanette Jacques Brel N/A Pop 3953025 247 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LAFANETT.MP3 La Tendresse Jacques Brel N/A Pop 2529876 158 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LATENDRE.MP3 le port d 'amsterdam Jacques Brel N/A Pop 3162257 197 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LEPORTDA.MP3 Les prenoms Jacques Brel N/A Pop 2408667 150 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/LESPRENO.MP3 Ne Me Quitte Pas Jacques Brel N/A Pop 4009038 250 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/NEMEQUIT.MP3 Pourquoi faut-il que les homme Jacques Brel N/A Pop 3364977 210 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/POURQUOI.MP3 Une valse E1000 temps Jacques Brel N/A Pop 3718980 232 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/UNEVALSE.MP3 Voir un ami pleurer Jacques Brel N/A Pop 3007291 187 0 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/JACQUESBREL/UNKNOWNALBU/VOIRUNAM.MP3 Live Session 1 Offspring Intimate & Interactive (tv) Grunge 14804149 925 1 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES1.MP3 Live Session 2 Offspring Intimate & Interactive (tv) Grunge 12997730 812 2 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES2.MP3 Live Session 3 Offspring Intimate & Interactive (tv) Grunge 8766311 547 3 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES3.MP3 Live Session 4 Offspring Intimate & Interactive (tv) Grunge 4600930 287 4 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/OFFSPRING/INTIMATEINT/LIVESES4.MP3 Beautiful World Rage Against The Machine Renegades Alternative 2484409 155 5 2002-02-26 01:16:55-08 2002-02-26 01:16:55-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/BEAUTIFU.MP3 Down on the Street Rage Against The Machine Renegades Alternative 3504233 219 10 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/DOWNONTH.MP3 Kick Out The Jams Rage Against The Machine Renegades Alternative 3069972 191 3 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/KICKOUT1.MP3 How I Could Just Kill A Man (l Rage Against The Machine Renegades Alternative 4610583 288 14 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/HOWICOUL.MP3 I'm Housin Rage Against The Machine Renegades Alternative 4750160 296 6 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/IMHOUSIN.MP3 In My Eyes Rage Against The Machine Renegades Alternative 2793694 174 7 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/INMYEYES.MP3 Kick Out The Jams (live) Rage Against The Machine Renegades Alternative 4342665 271 13 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/KICKOUTT.MP3 Maggies Farm Rage Against The Machine Renegades Alternative 6615515 413 12 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/MAGGIESF.MP3 Microphone Fiend Rage Against The Machine Renegades Alternative 4890183 305 1 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/MICROPHO.MP3 Pistol Grip Pump Rage Against The Machine Renegades Alternative 3176132 198 2 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/PISTOLGR.MP3 Renegades of Funk Rage Against The Machine Renegades Alternative 4407859 275 4 2002-02-26 01:16:56-08 2002-02-26 01:16:56-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/RENEGADE.MP3 Street Fighting Man Rage Against The Machine Renegades Alternative 4519039 282 11 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/STREETFI.MP3 The Ghost Of Tom Joad Rage Against The Machine Renegades Alternative 5416816 338 9 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/THEGHOST.MP3 How I Could Just Kill A Man Rage Against The Machine Renegades Alternative 3917185 244 8 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/RAGEAGAINST/RENEGADES/HOWICOU1.MP3 Bold As Love Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 6870896 429 6 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/BOLDASLO.MP3 Burning Of The Midnight Lamp [ Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3942692 246 2 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/BURNINGO.MP3 Catfish Blues [Live] Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 5229997 326 5 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/CATFISHB.MP3 Fire [Live] Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 2609384 163 8 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/FIRELIVE.MP3 Gloria Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 8542310 533 13 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/GLORIA.MP3 Gypsy Eyes Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3577795 223 11 2002-02-26 01:16:57-08 2002-02-26 01:16:57-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/GYPSYEYE.MP3 (Have You Ever Been To) Electr Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 1424907 89 10 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/HAVEYOUE.MP3 It's Too Bad Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 8513895 532 14 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/ITSTOOBA.MP3 Little Miss Lover Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 2272514 142 4 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/LITTLEMI.MP3 Little Wing Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3263490 203 3 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/LITTLEWI.MP3 Room Full Of Mirrors Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 1382265 86 12 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/ROOMFULL.MP3 Somewhere Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 3662639 228 9 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/SOMEWHER.MP3 Star Spangled Banner Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 4039232 252 15 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/STARSPAN.MP3 Sweet Angel Jimi Hendrix Jimi Hendrix Experience (CD 2) Rock 4036714 252 7 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/JIMIHENDRIX/JIMIHENDRIX/SWEETANG.MP3 Everything In Its Right Place Radiohead Kid A (Pre-Release) Rock 4023736 251 1 2002-02-26 01:16:58-08 2002-02-26 01:16:58-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/EVERYTHI.MP3 Hidden extra Track Radiohead Kid A (Pre-Release) Rock 559666 34 11 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/HIDDENEX.MP3 How To Disappear Completely Radiohead Kid A (Pre-Release) Rock 5701421 356 4 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/HOWTODIS.MP3 Idioteque Radiohead Kid A (Pre-Release) Rock 4946152 309 8 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/IDIOTEQU.MP3 In Limbo Radiohead Kid A (Pre-Release) Rock 3376297 211 7 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/INLIMBO.MP3 Kid A Radiohead Kid A (Pre-Release) Rock 4552431 284 2 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/KIDA.MP3 Morning Bell Radiohead Kid A (Pre-Release) Rock 4410332 275 9 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/MORNINGB.MP3 Motion Picture Soundtrack Radiohead Kid A (Pre-Release) Rock 6671923 416 10 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/MOTIONPI.MP3 National Anthem Radiohead Kid A (Pre-Release) Rock 5627432 351 3 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/NATIONAL.MP3 Optimistic Radiohead Kid A (Pre-Release) Rock 5056912 316 6 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/OPTIMIST.MP3 Treefingers Radiohead Kid A (Pre-Release) Rock 3561456 222 5 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/RADIOHEAD/KIDAPRERELE/TREEFING.MP3 Release Afro Celt Sound System Volume 2 Release Ethnic 7332431 458 1 2002-02-26 01:16:59-08 2002-02-26 01:16:59-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/01RELEAS.MP3 Lovers Of Light Afro Celt Sound System Volume 2 Release Ethnic 3844570 240 2 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/02LOVERS.MP3 Eireann Afro Celt Sound System Volume 2 Release Ethnic 4989352 311 3 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/03EIREAN.MP3 Urban Aire Afro Celt Sound System Volume 2 Release Ethnic 2082449 130 4 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/04URBANA.MP3 Big Cat Afro Celt Sound System Volume 2 Release Ethnic 7443190 465 5 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/05BIGCAT.MP3 Even In My Dreams Afro Celt Sound System Volume 2 Release Ethnic 6833398 427 6 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/06EVENIN.MP3 Amber Afro Celt Sound System Volume 2 Release Ethnic 5254754 328 7 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/07AMBER.MP3 Hypnotica Afro Celt Sound System Volume 2 Release Ethnic 7050311 440 8 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/08HYPNOT.MP3 Riding The Waves Afro Celt Sound System Volume 2 Release Ethnic 6358177 397 9 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/09RIDING.MP3 I Think Of... Afro Celt Sound System Volume 2 Release Ethnic 4450611 278 10 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/10ITHINK.MP3 Release It (Instrumental) Afro Celt Sound System Volume 2 Release Ethnic 6234890 389 11 2002-02-26 01:17:00-08 2002-02-26 01:17:00-08 128 44100 MPEG AUDIO FILE MP3031/AFROCELTSOU/VOLUME2RELE/11RELEAS.MP3 Break Stuff Limp Bizkit Significant Other Rock 2660739 166 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/BREAKSTU.MP3 N 2 Gether Now Limp Bizkit Significant Other Rock 4639345 289 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/N2GETHER.MP3 Nookie Limp Bizkit Significant Other Rock 4259830 266 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/NOOKIE.MP3 Re-arranged Limp Bizkit Significant Other Rock 5676732 354 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/SIGNIFICANT/REARRANG.MP3 Full Nelson Limp Bizkit The Chocolate Starfish Rock 3954223 247 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/FULLNELS.MP3 My Generation Limp Bizkit The Chocolate Starfish Rock 3571897 223 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/MYGENERA.MP3 Rollin' (Air Raid Vehicle) Limp Bizkit The Chocolate Starfish Rock 3506708 219 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/ROLLINAI.MP3 The One Limp Bizkit The Chocolate Starfish Rock 5492075 343 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/THECHOCOLAT/THEONE.MP3 Counterfit Limp Bizkit N/A Rock 4927705 307 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/COUNTERF.MP3 Jump around Limp Bizkit N/A Rock 2630185 164 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/JUMPAROU.MP3 Switch Limp Bizkit N/A Rock 4029089 251 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/SWITCH.MP3 Take a look around Limp Bizkit N/A Rock 5137529 321 0 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/LIMPBIZKIT/UNKNOWNALBU/TAKEALOO.MP3 04 My Lover's Gone Dido No Angel Trip-Hop 4290782 268 4 2002-02-26 01:17:01-08 2002-02-26 01:17:01-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/04MYLOVE.MP3 All You Want Dido No Angel Trip-Hop 3737398 233 5 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/ALLYOUWA.MP3 Don't Think Of Me Dido No Angel Trip-Hop 4358073 272 3 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/DONTTHIN.MP3 Here With Me Dido No Angel Trip-Hop 4076781 254 1 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/HEREWITH.MP3 Honestly OK Dido No Angel Trip-Hop 4443315 277 7 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/HONESTLY.MP3 Hunter Dido No Angel Trip-Hop 3796325 237 2 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/HUNTER.MP3 I'm No Angel Dido No Angel Trip-Hop 3772926 235 10 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/IMNOANGE.MP3 Isobel Dido No Angel Trip-Hop 3748259 234 9 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/ISOBEL.MP3 My Life Dido No Angel Trip-Hop 3033969 189 11 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/MYLIFE.MP3 Slide Dido No Angel Trip-Hop 4699533 293 8 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/SLIDE.MP3 Take My Hand Dido No Angel Trip-Hop 6450790 403 12 2002-02-26 01:17:02-08 2002-02-26 01:17:02-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/TAKEMYHA.MP3 Thank you Dido No Angel Trip-Hop 3489546 218 6 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/DIDO/NOANGEL/THANKYOU.MP3 Good Rockin' Tonight Paul Mccartney Oobu Joobu Part 1 Rock 3430715 214 6 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/GOODROCK.MP3 L'Richard's Story Tutti F Paul Mccartney Oobu Joobu Part 1 Rock 3695619 230 8 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/LRICHARD.MP3 O J Cook Of The House Paul Mccartney Oobu Joobu Part 1 Rock 2139134 133 9 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/OJCOOKOF.MP3 Oobu Joobu Intro Paul Mccartney Oobu Joobu Part 1 Rock 1874562 117 1 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP1/OOBUJOOB.MP3 Daytime Nightime Sufferin Paul Mccartney Oobu Joobu Part 8 Rock 3298140 206 8 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/DAYTIMEN.MP3 Oobu Joobu Outro Paul Mccartney Oobu Joobu Part 8 Rock 987236 61 20 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/OOBUJOOB.MP3 San Fransisco Bay Blues Paul Mccartney Oobu Joobu Part 8 Rock 2322205 145 18 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/SANFRANS.MP3 Yellow Submarine Paul Mccartney Oobu Joobu Part 8 Rock 1212516 75 21 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/PAULMCCARTN/OOBUJOOBUP8/YELLOWSU.MP3 Alabama Song (Wiskey Bar) The Doors The Doors Rock 3202430 200 5 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/ALABAMAS.MP3 Back Door Man The Doors The Doors Vocal 3430205 214 7 2002-02-26 01:17:03-08 2002-02-26 01:17:03-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/BACKDOOR.MP3 Break On Through (To The Other Side) The Doors The Doors Rock 2389092 149 1 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/BREAKONT.MP3 End Of The Night The Doors The Doors Rock 2764399 172 9 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/ENDOFTHE.MP3 I Looked At You The Doors The Doors Rock 2274132 142 8 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/ILOOKEDA.MP3 Light My Fire The Doors The Doors Rock 6426624 401 6 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/LIGHTMYF.MP3 Soul Kitchen The Doors The Doors Rock 3441071 215 2 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/SOULKITC.MP3 The Chrystal Ship The Doors The Doors Rock 2479352 154 3 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/THECHRYS.MP3 The End The Doors The Doors Rock 11233916 702 11 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/THEEND.MP3 Twentieth Century Fox The Doors The Doors Rock 2463474 153 4 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/TWENTIET.MP3 Take It As It Comes The Doors The Doors Rock 2195561 137 10 2002-02-26 01:17:04-08 2002-02-26 01:17:04-08 128 44100 MPEG AUDIO FILE MP3031/THEDOORS/THEDOORS/TAKEITAS.MP3 Kalpol Introl Autechre Incunabula Ambient 3178708 198 1 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/01KALPO.MP3 Bike Autechre Incunabula Ambient 7681929 480 2 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/02BIK.MP3 Autriche Autechre Incunabula Ambient 6650828 415 3 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/03AUTRI.MP3 Bronchus 2 Autechre Incunabula Ambient 3413737 213 4 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/04BRONC.MP3 Basscadet Autechre Incunabula Ambient 5184489 324 5 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/05BASSC.MP3 Eggshell Autechre Incunabula Ambient 8674864 542 6 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/06EGGSH.MP3 Doctrine Autechre Incunabula Ambient 7498309 468 7 2002-02-26 01:17:15-08 2002-02-26 01:17:15-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/07DOCTR.MP3 Maetl Autechre Incunabula Ambient 6286365 392 8 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/08MAET.MP3 Windwind Autechre Incunabula Ambient 10836547 677 9 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/09WINDW.MP3 Lowride Autechre Incunabula Ambient 6975583 435 10 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/10LOWRI.MP3 444 Autechre Incunabula Ambient 8568281 535 11 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/INCUNABU/1144.MP3 Second Bad Vilbel Autechre Tri Repetae++ (Disk 2) Ambient 9394727 587 1 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/01SECON.MP3 Second Scepe Autechre Tri Repetae++ (Disk 2) Ambient 7449401 465 2 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/02SECON.MP3 Second Scout Autechre Tri Repetae++ (Disk 2) Ambient 7087588 442 3 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/03SECON.MP3 Second Peng Autechre Tri Repetae++ (Disk 2) Ambient 10472497 654 4 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/04SECON.MP3 Garbagemx36 Autechre Tri Repetae++ (Disk 2) Ambient 13615131 850 5 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/05GARBA.MP3 Piobmx19 Autechre Tri Repetae++ (Disk 2) Ambient 7314118 457 6 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/06PIOBM.MP3 Bronchusevenmx24 Autechre Tri Repetae++ (Disk 2) Ambient 9346103 584 7 2002-02-26 01:17:16-08 2002-02-26 01:17:16-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/07BRONC.MP3 Vietrmx21 Autechre Tri Repetae++ (Disk 2) Ambient 8115346 507 8 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPE1/08VIETR.MP3 Dael Autechre Tri Repetae++ (Disk 1) Ambient 6399914 399 1 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/01DAE.MP3 Clipper Autechre Tri Repetae++ (Disk 1) Ambient 8223054 513 2 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/02CLIPP.MP3 Leterel Autechre Tri Repetae++ (Disk 1) Ambient 6851452 428 3 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/03LETER.MP3 Rotar Autechre Tri Repetae++ (Disk 1) Ambient 7749922 484 4 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/04ROTA.MP3 Stud Autechre Tri Repetae++ (Disk 1) Ambient 9293026 580 5 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/05STU.MP3 Eutow Autechre Tri Repetae++ (Disk 1) Ambient 4098296 256 6 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/06EUTO.MP3 C/Pach Autechre Tri Repetae++ (Disk 1) Ambient 4467831 279 7 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/07CPAC.MP3 Gnit Autechre Tri Repetae++ (Disk 1) Ambient 5593253 349 8 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/08GNI.MP3 Overand Autechre Tri Repetae++ (Disk 1) Ambient 7258822 453 9 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/09OVERA.MP3 Rsdio Autechre Tri Repetae++ (Disk 1) Ambient 8785209 549 10 2002-02-26 01:17:17-08 2002-02-26 01:17:17-08 128 44100 MPEG AUDIO FILE MP3001/AUTECHRE/TRIREPET/10RSDI.MP3 Dark River DJ Food A Recipe for Disaster Electronic 4832178 302 1 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/01DARKR.MP3 Inosan DJ Food A Recipe for Disaster Electronic 4447792 277 2 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/02INOSA.MP3 Scratch yer Hed DJ Food A Recipe for Disaster Electronic 2678581 167 3 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/03SCRAT.MP3 Mr. Quicke cuts the Cheese DJ Food A Recipe for Disaster Electronic 4320195 270 4 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/04MRQUI.MP3 Brass Neck DJ Food A Recipe for Disaster Electronic 3740888 233 5 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/05BRASS.MP3 Fungle Junk DJ Food A Recipe for Disaster Electronic 7928838 495 6 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/06FUNGL.MP3 Half Step DJ Food A Recipe for Disaster Electronic 4873555 304 7 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/07HALFS.MP3 The Dusk DJ Food A Recipe for Disaster Electronic 4587392 286 8 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/08THEDU.MP3 Bass City Roller DJ Food A Recipe for Disaster Electronic 5119740 319 9 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/09BASSC.MP3 Spiral DJ Food A Recipe for Disaster Electronic 5821067 363 10 2002-02-26 01:17:18-08 2002-02-26 01:17:18-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/10SPIRA.MP3 Scratch yer Butt DJ Food A Recipe for Disaster Electronic 3712056 232 11 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/11SCRAT.MP3 Akaire DJ Food A Recipe for Disaster Electronic 4980552 311 12 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/12AKAIR.MP3 A little Samba DJ Food A Recipe for Disaster Electronic 5619759 351 13 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/13ALITT.MP3 Scientific Youth DJ Food A Recipe for Disaster Electronic 5874674 367 14 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/DJFOOD/ARECIPEF/14SCIEN.MP3 Purrfect Funki Porcini Love, Pussycats & Carwrecks Electronic 7594606 474 1 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/01PURRF.MP3 Groover Funki Porcini Love, Pussycats & Carwrecks Electronic 4878986 304 2 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/02GROOV.MP3 The Last Song Funki Porcini Love, Pussycats & Carwrecks Electronic 5251393 328 3 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/03THELA.MP3 Snip & Lick Funki Porcini Love, Pussycats & Carwrecks Electronic 1735102 108 4 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/04SNIPL.MP3 Carwreck Funki Porcini Love, Pussycats & Carwrecks Electronic 6206563 387 5 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/05CARWR.MP3 The Afterlife Funki Porcini Love, Pussycats & Carwrecks Electronic 3971185 248 6 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/06THEAF.MP3 12 Points Off Your License Funki Porcini Love, Pussycats & Carwrecks Electronic 6630671 414 7 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/0712POI.MP3 Venus Funki Porcini Love, Pussycats & Carwrecks Electronic 4377015 273 8 2002-02-26 01:17:19-08 2002-02-26 01:17:19-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/08VENU.MP3 Hyde Park Funki Porcini Love, Pussycats & Carwrecks Electronic 7314853 457 9 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/09HYDEP.MP3 Theme Music For Nothing Funki Porcini Love, Pussycats & Carwrecks Electronic 4974299 310 10 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/10THEME.MP3 I'm Such A Small Thing Funki Porcini Love, Pussycats & Carwrecks Electronic 4712795 294 11 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/11IMSUC.MP3 Going Down Funki Porcini Love, Pussycats & Carwrecks Electronic 7732815 483 12 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUNKIPOR/LOVEPUSS/12GOING.MP3 We Have Explosive (7" edit) Future Sound Of London Electronica - Disk 1 Electronic 3250257 203 7 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/01WEHAV.MP3 Part 1 Future Sound Of London Cascade Ambient 7010781 438 1 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/01PART.MP3 Part 2 Future Sound Of London Cascade Ambient 8773475 548 2 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/02PART.MP3 Part 3 Future Sound Of London Cascade Ambient 4079377 254 3 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/03PART.MP3 Part 4 Future Sound Of London Cascade Ambient 4367769 272 4 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/04PART.MP3 Part 5 Future Sound Of London Cascade Ambient 5941523 371 5 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/05PART.MP3 Shortform Future Sound Of London Cascade Ambient 4120340 257 6 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/CASCADE/06SHORT.MP3 Just A Fuckin Idiot Future Sound Of London ISDN (white CD) Ambient 5430030 339 1 2002-02-26 01:17:20-08 2002-02-26 01:17:20-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/01JUSTA.MP3 The Far Out Son Of Lung And The Ramblings Of A Madman Future Sound Of London ISDN (white CD) Ambient 4305336 269 2 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/02THEFA.MP3 Appendage Future Sound Of London ISDN (white CD) Ambient 2332108 145 3 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/03APPEN.MP3 Slider Future Sound Of London ISDN (white CD) Ambient 7074128 442 4 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/04SLIDE.MP3 Smokin Japanese Babe Future Sound Of London ISDN (white CD) Ambient 4791667 299 5 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/05SMOKI.MP3 You're Creeping Me Out Future Sound Of London ISDN (white CD) Ambient 6262885 391 6 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/06YOURE.MP3 Eyes Pop - Skin Explodes - Everybody Dead Future Sound Of London ISDN (white CD) Ambient 3605243 225 7 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/07EYESP.MP3 It's My Mind That Works Future Sound Of London ISDN (white CD) Ambient 3279217 204 8 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/08ITSMY.MP3 Dirty Shadows Future Sound Of London ISDN (white CD) Ambient 6003353 375 9 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/09DIRTY.MP3 Tired Future Sound Of London ISDN (white CD) Ambient 6264682 391 10 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/10TIRE.MP3 Egypt Future Sound Of London ISDN (white CD) Ambient 4018012 251 11 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/11EGYP.MP3 Kai Future Sound Of London ISDN (white CD) Ambient 4236325 264 12 2002-02-26 01:17:21-08 2002-02-26 01:17:21-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/12KA.MP3 Amoeba Future Sound Of London ISDN (white CD) Ambient 5133546 320 13 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/13AMOEB.MP3 A Study Of Six Guitars Future Sound Of London ISDN (white CD) Ambient 4048958 253 14 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/14ASTUD.MP3 Snake Hips Future Sound Of London ISDN (white CD) Ambient 5622562 351 15 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/FUTURESO/ISDNWHIT/15SNAKE.MP3 Pressure Spacetime Continuum Sea Biscuit Ambient 9993089 624 1 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/01PRESS.MP3 Subway Spacetime Continuum Sea Biscuit Ambient 11447724 715 2 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/02SUBWA.MP3 Ping Pong Spacetime Continuum Sea Biscuit Ambient 6315887 394 3 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/03PINGP.MP3 Voice of the Earth Spacetime Continuum Sea Biscuit Ambient 11054297 690 4 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/04VOICE.MP3 Floatilla Spacetime Continuum Sea Biscuit Ambient 8826287 551 5 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/05FLOAT.MP3 Q 11 Spacetime Continuum Sea Biscuit Ambient 10691913 668 6 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/06Q1.MP3 A Low Frequency Inversion Field Spacetime Continuum Sea Biscuit Ambient 12611625 788 7 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/SPACETIM/SEABISCU/07ALOWF.MP3 berreichweite The Third Room - Der Dritte Raum wellenbad House 2894108 180 1 2002-02-26 01:17:22-08 2002-02-26 01:17:22-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/01BERRE.MP3 ver megahertz The Third Room - Der Dritte Raum wellenbad House 6260475 391 2 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/02VERME.MP3 wellenbad The Third Room - Der Dritte Raum wellenbad House 6656818 416 3 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/03WELLE.MP3 raupe The Third Room - Der Dritte Raum wellenbad House 6136346 383 4 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/04RAUP.MP3 alienoid The Third Room - Der Dritte Raum wellenbad House 5375524 335 5 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/05ALIEN.MP3 trommelmaschine The Third Room - Der Dritte Raum wellenbad House 5792794 362 6 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/06TROMM.MP3 geister The Third Room - Der Dritte Raum wellenbad House 6623629 413 7 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/07GEIST.MP3 narkose The Third Room - Der Dritte Raum wellenbad House 6863039 428 8 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/08NARKO.MP3 slapstick The Third Room - Der Dritte Raum wellenbad House 6827933 426 9 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/09SLAPS.MP3 wind The Third Room - Der Dritte Raum wellenbad House 6829208 426 10 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/10WIN.MP3 tiefschlaf The Third Room - Der Dritte Raum wellenbad House 7183619 448 11 2002-02-26 01:17:23-08 2002-02-26 01:17:23-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/11TIEFS.MP3 unterwasser The Third Room - Der Dritte Raum wellenbad House 3978292 248 12 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THE3RDRO/WELLENBA/12UNTER.MP3 Perverted Science N/A The Theory of Evolution Electronic 96764 6 1 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/01INTRO.MP3 Birth of a Disco Dancer Reload The Theory of Evolution Electronic 3624756 226 2 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/02RELOA.MP3 Waltz with The Horn The Theory of Evolution Electronic 1174669 73 3 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/03THEHO.MP3 Sexomatic Reload The Theory of Evolution Electronic 3895997 243 4 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/04RELOA.MP3 Senda Jak and Stepper The Theory of Evolution Electronic 429032 26 5 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/05JAKAN.MP3 Peschi Reload The Theory of Evolution Electronic 4892827 305 6 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/06RELOA.MP3 Election The Horn The Theory of Evolution Electronic 1191804 74 7 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/07THEHO.MP3 Ptysch Reload and E621 The Theory of Evolution Electronic 4094534 255 8 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/08RELOA.MP3 The Biosphere Reload and E621 The Theory of Evolution Electronic 6342742 396 9 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/09RELOA.MP3 Nemm Reload and E621 The Theory of Evolution Electronic 4616285 288 10 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/10RELOA.MP3 Larynx The Rebus Project The Theory of Evolution Electronic 2375890 148 11 2002-02-26 01:17:24-08 2002-02-26 01:17:24-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/11THERE.MP3 Royal Wedding Wish Mountain The Theory of Evolution Electronic 2448758 153 12 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/12WISHM.MP3 Amazon Amenity (Chameleon remix) Link The Theory of Evolution Electronic 8694190 543 13 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/13LINKA.MP3 Archetype Arcadian Link The Theory of Evolution Electronic 4417619 276 14 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/14LINKA.MP3 The Book Wish Mountain Plays The Theory of Evolution Electronic 2524688 157 15 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/15WISHM.MP3 QA : 752 :LP (Reload remix) Mystic Institute The Theory of Evolution Electronic 4727766 295 16 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/16MYSTI.MP3 Pubic Funk (Live) The Jedi Knights The Theory of Evolution Electronic 2278934 142 17 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/17THEJE.MP3 Antacid Reload and E621 The Theory of Evolution Electronic 11123353 695 18 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/18RELOA.MP3 Winna Reload and E621 The Theory of Evolution Electronic 782628 48 19 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/19RELOA.MP3 A Tribute to Peter Cook N/A The Theory of Evolution Electronic 1063078 66 20 2002-02-26 01:17:25-08 2002-02-26 01:17:25-08 128 44100 MPEG AUDIO FILE MP3001/THETHEOR/20ATRIB.MP3 Pacific 808 State N/A Electronic 5463195 341 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/808STATE/01.MP3 Kin Up Pin Up 808 State N/A Electronic 5232071 327 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/808STATE/02.MP3 Devil's Haircut Beck Odelay Avantgarde 3105288 194 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/01.MP3 Hotwax Beck Odelay Avantgarde 3668358 229 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/02.MP3 Lord Only Knows Beck Odelay Avantgarde 4060098 253 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/03.MP3 The New Pollution Beck Odelay Avantgarde 3511974 219 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/04.MP3 Derelict Beck Odelay Avantgarde 4047132 252 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/05.MP3 Novacane Beck Odelay Avantgarde 4442105 277 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/06.MP3 Jack-Ass Beck Odelay Avantgarde 4030832 251 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/07.MP3 Where It's At Beck Odelay Avantgarde 5278027 329 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/08.MP3 Minus Beck Odelay Avantgarde 2421989 151 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/09.MP3 Sissyneck Beck Odelay Avantgarde 3722819 232 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/10.MP3 Readymade Beck Odelay Avantgarde 2513259 157 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/11.MP3 12.MP3 Beck Odelay Avantgarde 4012037 250 0 2002-02-26 01:17:34-08 2002-02-26 01:17:34-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/12.MP3 Ramshackle Beck Odelay Avantgarde 7194392 449 0 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BECK/ODELAY/13.MP3 Hunter Bjrk Homogenic Avantgarde 4085659 255 1 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/01HUNTER.MP3 Jga Bjrk Homogenic Avantgarde 4892039 305 2 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/02JGA.MP3 Unravel Bjrk Homogenic Avantgarde 3167126 197 3 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/03UNRAVE.MP3 Bachelorette Bjrk Homogenic Avantgarde 5063271 316 4 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/04BACHEL.MP3 All Neon Like Bjrk Homogenic Avantgarde 5649668 353 5 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/05ALLNEO.MP3 5 Years Bjrk Homogenic Avantgarde 4308683 269 6 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/065YEARS.MP3 Immature Bjrk Homogenic Avantgarde 2982667 186 7 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/07IMMATU.MP3 Alarm Call Bjrk Homogenic Avantgarde 4152258 259 8 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/08ALARMC.MP3 Pluto Bjrk Homogenic Avantgarde 3188828 199 9 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/09PLUTO.MP3 All Is Full Of Love Bjrk Homogenic Avantgarde 4354003 272 10 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/BJORK/HOMOGENI/10ALLISF.MP3 AM2K (Full blast) Coldcut N/A Electronic 5824315 364 0 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/01.MP3 Autumn Leaves Coldcut N/A Electronic 5637394 0 0 2002-02-26 01:17:35-08 2002-02-26 01:17:35-08 0 0 MPEG AUDIO FILE MP3002/COLDCUT/02.MP3 Beats & Pieces '89 Coldcut N/A Electronic 5611947 350 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/03.MP3 More Beats & Pieces Coldcut N/A Electronic 3867957 241 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/04.MP3 Say Kid. What Time Is It? Coldcut N/A Electronic 4617969 288 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/COLDCUT/05.MP3 Wild About Coldcut N/A Electronic 6893070 0 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 0 0 MPEG AUDIO FILE MP3002/COLDCUT/06.MP3 Wild About Coldcut N/A Electronic 2104709 0 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 0 0 MPEG AUDIO FILE MP3002/COLDCUT/07.MP3 Now Is The Time Crystal Method Busy Child Electronic 5707231 356 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/01.MP3 Trip Like I Do Crystal Method Busy Child Electronic 7248382 453 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/02.MP3 Busy Child Crystal Method Busy Child Electronic 7143500 446 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/03.MP3 Cherry Twist Crystal Method Busy Child Electronic 4250722 265 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/04.MP3 Coming Back Crystal Method Busy Child Electronic 5439688 339 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/05.MP3 Keep Hope Crystal Method Busy Child Electronic 5962163 372 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/06.MP3 High Roller Crystal Method Busy Child Electronic 5275139 329 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/CRYSTALM/BUSYCHIL/07.MP3 Factory 101 Continuous Mix DJ Frankie Bones Factory 101 House 68584649 4286 1 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/DJFRANKI/FACTORY1/01FACTOR.MP3 Soul Pleureur Dubmatique la Force De Comprendre Hip-Hop 3741115 233 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/01.MP3 Dire Dubmatique la Force De Comprendre Hip-Hop 4475299 279 0 2002-02-26 01:17:36-08 2002-02-26 01:17:36-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/02.MP3 Jamais cesser D'y Croire Dubmatique la Force De Comprendre Hip-Hop 3723244 232 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/03.MP3 La Morale Dubmatique la Force De Comprendre Hip-Hop 3900035 243 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/04.MP3 Authentique Dubmatique la Force De Comprendre Hip-Hop 4162365 260 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/05.MP3 Un Ete A Montreal Dubmatique la Force De Comprendre Hip-Hop 3553154 222 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/06.MP3 La Force De Comprendre Dubmatique la Force De Comprendre Hip-Hop 3595118 224 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/07.MP3 Voir pour Le Croire Dubmatique la Force De Comprendre Hip-Hop 3733298 233 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/08.MP3 Mere Afrique Dubmatique la Force De Comprendre Hip-Hop 3993237 249 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/09.MP3 Plus Rien N'Est Pareil Dubmatique la Force De Comprendre Hip-Hop 3824929 239 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/10.MP3 C'Est De La Bombe Dubmatique la Force De Comprendre Hip-Hop 4250564 265 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/11.MP3 Montreal / Paris / Dakar Dubmatique la Force De Comprendre Hip-Hop 3714852 232 0 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/DUBMATIQ/LAFORCED/12.MP3 Lunaire (live at the Blue Room) Les Autres Circuites Autres Electronic 8419492 526 1 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/01LUNAIR.MP3 Aquarel Les Autres Circuites Autres Electronic 8174962 510 2 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/02AQUARE.MP3 Rivea Corymbosa Les Autres Circuites Autres Electronic 12217887 763 3 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/03RIVEAC.MP3 Un Droit Naturel Les Autres Circuites Autres Electronic 11759387 734 4 2002-02-26 01:17:37-08 2002-02-26 01:17:37-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/04UNDROI.MP3 Kaleidophon Les Autres Circuites Autres Electronic 14964849 935 5 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/05KALEID.MP3 malfunction Les Autres Circuites Autres Electronic 3160851 197 6 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/06MALFUN.MP3 Lunaire (optic lobe) Les Autres Circuites Autres Electronic 12168155 760 7 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/LESAUTRE/AUTRES/07LUNAIR.MP3 Iketa Polygon Window Quoth Electronic 3795083 271 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/02.MP3 Quoth (Wooden Thump Mix) Polygon Window Quoth Electronic 6688999 477 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/03.MP3 Bike Pump Meets Bucket Polygon Window Quoth Electronic 4884197 348 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/04.MP3 N/A Polygon Window Quoth Electronic 5727515 409 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 112 44100 MPEG AUDIO FILE MP3002/POLYGONW/QUOTH/05.MP3 Polygon Window Polygon Window Surfing on Sine Waves Electronic 5247568 327 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/01.MP3 Audax power Polygon Window Surfing on Sine Waves Electronic 4490641 280 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/02.MP3 Quoth Polygon Window Surfing on Sine Waves Electronic 5391337 336 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/03.MP3 If It Really Is Me Polygon Window Surfing on Sine Waves Electronic 6775631 423 0 2002-02-26 01:17:38-08 2002-02-26 01:17:38-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/04.MP3 Supremacy II Polygon Window Surfing on Sine Waves Electronic 3958162 247 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/05.MP3 UT1 Dot Polygon Window Surfing on Sine Waves Electronic 5132204 320 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/06.MP3 N/A Polygon Window Surfing on Sine Waves Electronic 6168321 385 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/07.MP3 Quixote Polygon Window Surfing on Sine Waves Electronic 5803029 362 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/08.MP3 Quino Phec Polygon Window Surfing on Sine Waves Electronic 4544557 284 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/POLYGONW/SURFINGO/09.MP3 Wandering Star - Live Portis Head N/A Trip-Hop 4382012 273 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/01.MP3 Numb Portis Head N/A Trip-Hop 3808076 238 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/02.MP3 Elysium Portis Head N/A Trip-Hop 5711338 356 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/03.MP3 Half Day Closing Portis Head N/A Trip-Hop 3646634 227 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/04.MP3 Humming Portis Head N/A Trip-Hop 5825023 364 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/05.MP3 Mourning Air Portis Head N/A Trip-Hop 4088407 255 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/06.MP3 Only You Portis Head N/A Trip-Hop 4836968 302 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/07.MP3 Over Portis Head N/A Trip-Hop 3852252 240 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/08.MP3 Roads Portis Head N/A Trip-Hop 3121203 195 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/09.MP3 Seven Months Portis Head N/A Trip-Hop 4063210 253 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/10.MP3 Undenied Portis Head N/A Trip-Hop 4234689 264 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/11.MP3 Western Eye Portis Head N/A Trip-Hop 3829272 239 0 2002-02-26 01:17:39-08 2002-02-26 01:17:39-08 128 44100 MPEG AUDIO FILE MP3002/PORTISHE/12.MP3 Aaah! Sun Electric N/A Electronic 4708398 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/01.MP3 Entrance Sun Electric N/A Electronic 13298298 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/02.MP3 Kiko Sun Electric N/A Electronic 5536793 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/03.MP3 Lone Sloane Sun Electric N/A Electronic 6743447 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/04.MP3 Newambi Sun Electric N/A Electronic 8055417 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/05.MP3 Point X (ed. 2) Sun Electric N/A Electronic 8134419 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/06.MP3 Spinout & Mellow Sun Electric N/A Electronic 7478642 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/SUNELECT/07.MP3 Hallucinogen The Orb N/A Electronic 5663505 404 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 112 44100 MPEG AUDIO FILE MP3002/THE_OB/01.MP3 Oxbow Lakes The Orb N/A Electronic 7170596 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/THE_OB/02.MP3 Spanish Castle (Aubrey Mix) The Orb N/A Electronic 8633339 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/THE_OB/03.MP3 Trippin' On Sunshine The Orb N/A Electronic 3148130 224 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 112 44100 MPEG AUDIO FILE MP3002/THE_OB/04.MP3 Valley The Orb N/A Electronic 7299741 0 0 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 0 0 MPEG AUDIO FILE MP3002/THE_OB/05.MP3 Leave Home The Chemical Brothers Exit Planet Dust Electronic 5322014 332 1 2002-02-26 01:17:40-08 2002-02-26 01:17:40-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/01LEAVEH.MP3 In Dust We Trust The Chemical Brothers Exit Planet Dust Electronic 5083586 317 2 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/02INDUST.MP3 Song To The Siren The Chemical Brothers Exit Planet Dust Electronic 3149887 196 3 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/03SONGTO.MP3 Three Little Birdies Down Beats The Chemical Brothers Exit Planet Dust Electronic 5419142 338 4 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/04THREEL.MP3 Fuck Up Beats The Chemical Brothers Exit Planet Dust Electronic 1371051 85 5 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/05FUCKUP.MP3 Chemical Beats The Chemical Brothers Exit Planet Dust Electronic 4646597 290 6 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/06CHEMIC.MP3 Chico's Groove The Chemical Brothers Exit Planet Dust Electronic 4619569 288 7 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/07CHICOS.MP3 One Too Many Mornings The Chemical Brothers Exit Planet Dust Electronic 4051848 253 8 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/08ONETOO.MP3 Life Is Sweet The Chemical Brothers Exit Planet Dust Electronic 6297963 393 9 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/09LIFEIS.MP3 Playground For A Wedgeless Firm The Chemical Brothers Exit Planet Dust Electronic 2428647 151 10 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/10PLAYGR.MP3 Alive Alone The Chemical Brothers Exit Planet Dust Electronic 5065809 316 11 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/THECHEMI/EXITPLAN/11ALIVEA.MP3 The Long Tunnel Of Wanting You Vanessa Daou Zipless Trip-Hop 3498177 218 1 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/01THELON.MP3 Dear Anne Sexton Vanessa Daou Zipless Trip-Hop 3625223 226 2 2002-02-26 01:17:41-08 2002-02-26 01:17:41-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/02DEARAN.MP3 Alcestis On The Poetry Circuit Vanessa Daou Zipless Trip-Hop 4493756 280 3 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/03ALCEST.MP3 Sunday Afternoons Vanessa Daou Zipless Trip-Hop 3653505 228 4 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/04SUNDAY.MP3 Autumn Perspective Vanessa Daou Zipless Trip-Hop 6167112 385 5 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/05AUTUMN.MP3 Near The Black Forest Vanessa Daou Zipless Trip-Hop 4590991 286 6 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/06NEARTH.MP3 My Love Is Too Much Vanessa Daou Zipless Trip-Hop 5586289 349 7 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/07MYLOVE.MP3 Becoming A Nun Vanessa Daou Zipless Trip-Hop 5131405 320 8 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/08BECOMI.MP3 Smoke Vanessa Daou Zipless Trip-Hop 2651645 165 9 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/09SMOKE.MP3 Autumn Reprise Vanessa Daou Zipless Trip-Hop 2200679 137 10 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VANESSAD/ZIPLESS/10AUTUMN.MP3 Mr. Frosty Mark & Rich N/A Electronic 6511448 406 0 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 128 44100 MPEG AUDIO FILE MP3002/VARIOUSA/01.MP3 Loving You Alex Paterson N/A Electronic 4193158 209 0 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 160 44100 MPEG AUDIO FILE MP3002/VARIOUSA/02.MP3 Alphacentauri DJ Spooky N/A Electronic 5832761 0 0 2002-02-26 01:17:42-08 2002-02-26 01:17:42-08 0 0 MPEG AUDIO FILE MP3002/VARIOUSA/03.MP3 Leggy Fila Brazillia A Taste Of Pork - A Collection Of Pork Recordings Ambient 6249040 390 1 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/01LEGGY.MP3 The Sheriff Fila Brazillia A Taste Of Pork - A Collection Of Pork Recordings Ambient 9160968 572 2 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/02THESHE.MP3 Lights On The Vibe Solid Doctor A Taste Of Pork - A Collection Of Pork Recordings Ambient 7316102 457 3 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/03LIGHTS.MP3 The Cleric Heights Of Abraham A Taste Of Pork - A Collection Of Pork Recordings Ambient 6652521 415 4 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/04THECLE.MP3 R Resonant R Earth A Taste Of Pork - A Collection Of Pork Recordings Ambient 7479093 467 5 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/05RRESON.MP3 Eva Heights Of Abraham A Taste Of Pork - A Collection Of Pork Recordings Ambient 10087997 630 6 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/06EVA.MP3 Subtle Body Fila Brasillia A Taste Of Pork - A Collection Of Pork Recordings Ambient 8304988 519 7 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/ATASTEOF/07SUBTLE.MP3 I Wonder Why - feat. A-Cyde, SLI Poetry - DJ Vadim remix DJ Vadim Aural Prostitution - remixes Electronic 7111744 444 1 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/01IWONDE.MP3 ( ) - feat. DJ Ollie Teeba - Andre Gurov remix - instr DJ Vadim Aural Prostitution - remixes Electronic 3867266 241 2 2002-02-26 01:17:53-08 2002-02-26 01:17:53-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/02FEATDJ.MP3 Beatbox Skit DJ Vadim Aural Prostitution - remixes Electronic 835626 52 3 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/03BEATBO.MP3 It's Impossible - Mark B remix - feat Mark B, Delerious, Lewis Parker & A Cyde DJ Vadim Aural Prostitution - remixes Electronic 4404227 275 4 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/04ITSIMP.MP3 ( ) - DJ Cam remix DJ Vadim Aural Prostitution - remixes Electronic 4385777 274 5 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/05DJCAMR.MP3 Who Do You Love? DJ Vadim Aural Prostitution - remixes Electronic 3329175 208 6 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/06WHODOY.MP3 ( ) - Andre Gurov remix - Vocal - feat. A-Cyde, SLI Poetry & DJ Ollie Teeba DJ Vadim Aural Prostitution - remixes Electronic 3893897 243 7 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/07ANDREG.MP3 I Wonder Why - DJ Vadim remix - instr. DJ Vadim Aural Prostitution - remixes Electronic 6259507 391 8 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/08IWONDE.MP3 It's Impossible - Mark B remix - instr. DJ Vadim Aural Prostitution - remixes Electronic 4262640 266 9 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/DJVADIM/AURALPRO/09ITSIMP.MP3 Northwest 37th Neotropic 15 Levels Of Magnification Electronic 4931261 308 1 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/01NORTHW.MP3 Laundry pt 3 Neotropic 15 Levels Of Magnification Electronic 4937110 308 2 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/02LAUNDR.MP3 La Centinela Neotropic 15 Levels Of Magnification Electronic 5511108 344 3 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/03LACENT.MP3 Laundry pt 1 Neotropic 15 Levels Of Magnification Electronic 3624719 226 4 2002-02-26 01:17:54-08 2002-02-26 01:17:54-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/04LAUNDR.MP3 15 Levels Of Magnification Neotropic 15 Levels Of Magnification Electronic 4018032 251 5 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/0515LEVE.MP3 Weeds Neotropic 15 Levels Of Magnification Electronic 4295536 268 6 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/06WEEDS.MP3 Nana Neotropic 15 Levels Of Magnification Electronic 4412982 275 7 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/07NANA.MP3 Nincompoop Neotropic 15 Levels Of Magnification Electronic 4643701 290 8 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/08NINCOM.MP3 Electric Bud Neotropic 15 Levels Of Magnification Electronic 6517413 407 9 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/09ELECTR.MP3 CCTV Neotropic 15 Levels Of Magnification Electronic 3052945 190 10 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/10CCTV.MP3 Neotropic Neotropic 15 Levels Of Magnification Electronic 5646804 352 11 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/11NEOTRO.MP3 Beautiful Pool Neotropic 15 Levels Of Magnification Electronic 3997682 249 12 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/12BEAUTI.MP3 Regents Park Neotropic 15 Levels Of Magnification Electronic 2711479 169 13 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/13REGENT.MP3 It's Your Turn To Wash Up Neotropic 15 Levels Of Magnification Electronic 6031342 376 14 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/14ITSYOU.MP3 Aloo Gobi Neotropic 15 Levels Of Magnification Electronic 5554853 347 15 2002-02-26 01:17:55-08 2002-02-26 01:17:55-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/15ALOOGO.MP3 Frozen Hands Neotropic 15 Levels Of Magnification Electronic 5609330 350 16 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NEOTROPI/15LEVELS/16FROZEN.MP3 Hyde Park Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 7379700 461 1 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/01FUNKIP.MP3 swingpool 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4678424 292 2 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/029LAZY9.MP3 styles THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4813847 300 3 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/03THEHER.MP3 wicked, cruel nasty and bad Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 5085959 317 4 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/04FUNKIP.MP3 half step DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4666862 291 5 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/05DJFOOD.MP3 train (marden hill mix) 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 5947919 371 6 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/069LAZY9.MP3 freedom HEDFUNK If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 6280459 392 7 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/07HEDFUN.MP3 y ahora tu UP, BUSTLE & OUT If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4792955 299 8 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/08UPBUST.MP3 dark river DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4861631 303 9 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/09DJFOOD.MP3 40 winks THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 2985281 186 10 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/10THEHER.MP3 the hand of contraband UP, BUSTLE & OUT If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 5624430 351 11 2002-02-26 01:17:56-08 2002-02-26 01:17:56-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/11UPBUST.MP3 onamission DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 1 Electronic 4229540 264 12 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACAN1/12COLDCU.MP3 Circle Line Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5439243 339 1 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/01FUNKIP.MP3 Black Jesus 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 4864542 304 2 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/029LAZY9.MP3 The Real Killer THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 4557214 284 3 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/03THEHER.MP3 Dark Blood HEDFUNK If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 3952416 247 4 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/04HEDFUN.MP3 Bass City Roller DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5490511 343 5 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/05DJFOOD.MP3 It's a Long Road Funki Porcini If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 7776892 486 6 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/06FUNKIP.MP3 Eine Kleine Hedmusik Coldcut If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 4031142 251 7 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/07COLDCU.MP3 B Hip & Shake 9LAZY9 If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5211032 325 8 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/089LAZY9.MP3 A Little Groove THE HERBALIZER If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 3616111 226 9 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/09THEHER.MP3 Valves DJ Food If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 3125273 195 10 2002-02-26 01:17:57-08 2002-02-26 01:17:57-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/10DJFOOD.MP3 Coffee at Senor Roody's UP, BUSTLE & OUT If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5773486 360 11 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/11UPBUST.MP3 Dub Lion HEDFUNK If Ya Can't Stand Da Beatz, Git Outta Da Kitchen Disk 2 Electronic 5106401 319 12 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/NINJATUN/IFYACANT/12HEDFUN.MP3 a Reagenz Reagenz Ambient 10008538 625 1 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/01A.MP3 hollow mountain Reagenz Reagenz Ambient 14259613 891 2 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/02HOLLOW.MP3 u Reagenz Reagenz Ambient 10473030 654 3 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/03U.MP3 long leaves Reagenz Reagenz Ambient 7920007 495 4 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/04LONGLE.MP3 o Reagenz Reagenz Ambient 6554107 409 5 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/05O.MP3 dj friendly Reagenz Reagenz Ambient 9170122 573 6 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/06DJFRIE.MP3 b Reagenz Reagenz Ambient 12056955 753 7 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/07B.MP3 tz Reagenz Reagenz Ambient 2430524 151 8 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/REAGENZ/REAGENZ/08TZ.MP3 The Fun Equations Speedy J G Spot Electronic 4430486 276 1 2002-02-26 01:17:58-08 2002-02-26 01:17:58-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/01THEFUN.MP3 Ping Pong Speedy J G Spot Electronic 4744365 296 2 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/02PINGPO.MP3 Fill 25 Speedy J G Spot Electronic 9051865 565 3 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/03FILL25.MP3 Lanzarote Speedy J G Spot Electronic 2409228 150 4 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/04LANZAR.MP3 Extruma Speedy J G Spot Electronic 8004861 500 5 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/05EXTRUM.MP3 The Oil Zone Speedy J G Spot Electronic 8627347 539 6 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/06THEOIL.MP3 Treatments Speedy J G Spot Electronic 5908869 369 7 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/07TREATM.MP3 Fill 17 Speedy J G Spot Electronic 2576410 161 8 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/08FILL17.MP3 G Spot Speedy J G Spot Electronic 7929628 495 9 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/09GSPOT.MP3 Grogno Speedy J G Spot Electronic 4909180 306 10 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/GSPOT/10GROGNO.MP3 Symmetry Speedy J Live Electronic 8458472 528 1 2002-02-26 01:17:59-08 2002-02-26 01:17:59-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/01SYMMET.MP3 The Oil Zone Speedy J Live Electronic 6302503 393 2 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/02THEOIL.MP3 Ping Pong Speedy J Live Electronic 7185444 449 3 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/03PINGPO.MP3 Pepper Speedy J Live Electronic 7328011 458 4 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/04PEPPER.MP3 Scare Tactics Speedy J Live Electronic 6617509 413 5 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/05SCARET.MP3 Fusion Speedy J Live Electronic 11020896 688 6 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/06FUSION.MP3 The Fun Equations Speedy J Live Electronic 2067748 129 7 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/07THEFUN.MP3 G Spot Speedy J Live Electronic 2689660 168 8 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/SPEEDYJ/LIVE/08GSPOT.MP3 Deep In It St Germain Boulevard Jazz 7041877 440 1 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/01DEEPIN.MP3 Thank U Mum (For Everything You Did) St Germain Boulevard Jazz 12076219 754 2 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/02THANKU.MP3 Street Scene (4 Shaz) St Germain Boulevard Jazz 15140261 946 3 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/03STREET.MP3 Easy To Remember St Germain Boulevard Jazz 9291756 580 4 2002-02-26 01:18:00-08 2002-02-26 01:18:00-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/04EASYTO.MP3 Sentimental Mood St Germain Boulevard Jazz 9924964 620 5 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/05SENTIM.MP3 What's New St Germain Boulevard Jazz 7452730 465 6 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/06WHATSN.MP3 Dub Experience II St Germain Boulevard Jazz 3650564 228 7 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/07DUBEXP.MP3 Forget It St Germain Boulevard Jazz 7634960 477 8 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/STGERMAI/BOULEVAR/08FORGET.MP3 Tabla Rasa Sven Van Hees The Future Sound Of Jazz Ambient 6865128 429 1 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/01SVENVA.MP3 Journey (Aphex Twin Care Mix) Gentle People The Future Sound Of Jazz Ambient 9751154 609 2 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/02GENTLE.MP3 Nights Interlude Nightmares On Wax The Future Sound Of Jazz Ambient 4455186 278 3 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/03NIGHTM.MP3 Quiddity (Last Visit) Max 404 The Future Sound Of Jazz Ambient 5720761 357 4 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/04MAX404.MP3 Sexual Attraction Fauna Flash The Future Sound Of Jazz Ambient 5803657 362 5 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/05FAUNAF.MP3 All That Jazz 12-10 Series MK 1 The Future Sound Of Jazz Ambient 5612512 350 6 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/061210SE.MP3 Sides Of Iron Chaser The Future Sound Of Jazz Ambient 7019351 438 7 2002-02-26 01:18:01-08 2002-02-26 01:18:01-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/07CHASER.MP3 Nova Sola (Bahia Blunt) Shantel The Future Sound Of Jazz Ambient 4404192 275 8 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/08SHANTE.MP3 A Pulsinger/Tunakan Prod. - P.M.2/SM2 Lazer Musik The Future Sound Of Jazz Ambient 4169735 260 9 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/09LAZERM.MP3 1992 Live b. Low Feat. Richard Dorfmeister On Flute The Future Sound Of Jazz Ambient 3708313 231 10 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/10BLOWFE.MP3 Hector's House u-ZIQ The Future Sound Of Jazz Ambient 4208161 263 11 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/11UZIQ.MP3 Tranquilizer Turntable Terranova The Future Sound Of Jazz Ambient 2492451 155 12 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/THEFUTUR/12TURNTA.MP3 Ion State Children of the Bong N/A Electronic 9896000 706 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 112 44100 MPEG AUDIO FILE MP3003/VARIOUSA/01.MP3 Ultraspace Children of the Bong N/A Electronic 7209025 514 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 112 44100 MPEG AUDIO FILE MP3003/VARIOUSA/02.MP3 Side A Kid Koala Scratch Happy Land Electronic 6385616 399 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/03.MP3 Binary Sinapse N/A Electronic 5318033 332 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/04.MP3 Dreamer N/A N/A Electronic 4554999 0 0 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 0 0 MPEG AUDIO FILE MP3003/VARIOUSA/05.MP3 Encore Une Fois (blunt radio edit) Sash! Electronica - Disk 1 Electronic 3606906 225 9 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/09ENCORE.MP3 Groovebird (original radio edit) Natural Born Grooves Electronica - Disk 1 Electronic 3004642 187 10 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/10GROOVE.MP3 Spin Spin Sugar (album version) Sneaker Pimps Electronica - Disk 2 Electronic 4152798 259 10 2002-02-26 01:18:02-08 2002-02-26 01:18:02-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/10SPINSP.MP3 Rollercoaster (original) The Grid Electronica - Disk 1 Electronic 6533030 408 13 2002-02-26 01:18:03-08 2002-02-26 01:18:03-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/13ROLLER.MP3 Inner City Life (radio edit) Goldie Electronica - Disk 2 Electronic 3567189 222 14 2002-02-26 01:18:03-08 2002-02-26 01:18:03-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/14INNERC.MP3 Walking Wounded (Dave Wallace remix) Everything but the Girl Electronica - Disk 2 Electronic 5502643 343 15 2002-02-26 01:18:03-08 2002-02-26 01:18:03-08 128 44100 MPEG AUDIO FILE MP3003/VARIOUSA/15WALKIN.MP3 Cyax Pt. 1 Alter Ego Decoding The Hacker Myth Ambient 7527582 470 1 2002-02-26 01:18:11-08 2002-02-26 01:18:11-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/01CYAXPT.MP3 Cryonics Alter Ego Decoding The Hacker Myth Ambient 6625207 414 2 2002-02-26 01:18:11-08 2002-02-26 01:18:11-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/02CRYONI.MP3 Brom Alter Ego Decoding The Hacker Myth Ambient 4771972 298 3 2002-02-26 01:18:11-08 2002-02-26 01:18:11-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/03BROM.MP3 Mescal Alter Ego Decoding The Hacker Myth Ambient 6823875 426 4 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/04MESCAL.MP3 Slacker Alter Ego Decoding The Hacker Myth Ambient 6368579 398 5 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/05SLACKE.MP3 Alterism Alter Ego Decoding The Hacker Myth Ambient 6733040 420 6 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/06ALTERI.MP3 Microshopping Alter Ego Decoding The Hacker Myth Ambient 6320519 395 7 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/07MICROS.MP3 Lycra Alter Ego Decoding The Hacker Myth Ambient 6230232 389 8 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/08LYCRA.MP3 Telekinetik Alter Ego Decoding The Hacker Myth Ambient 4741050 296 9 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/09TELEKI.MP3 Cyax Pt. 2 Alter Ego Decoding The Hacker Myth Ambient 5762265 360 10 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/10CYAXPT.MP3 lavender Alter Ego Decoding The Hacker Myth Ambient 7207425 450 11 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/ALTEREGO/DECODING/11LAVEND.MP3 Acrid Avid Jam Shred Aphex Twin I Care Because You Do Electronic 7335336 458 1 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/01ACRIDA.MP3 The Woxen Pith Aphex Twin I Care Because You Do Electronic 4636291 289 2 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/02THEWOX.MP3 Wax The Nip Aphex Twin I Care Because You Do Electronic 4141424 258 3 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/03WAXTHE.MP3 Icct Hedral Aphex Twin I Care Because You Do Electronic 5875396 367 4 2002-02-26 01:18:12-08 2002-02-26 01:18:12-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/04ICCTHE.MP3 VENTOLIN Aphex Twin I Care Because You Do Electronic 4308883 269 5 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/05VENTOL.MP3 Come On You Slags! Aphex Twin I Care Because You Do Electronic 5514008 344 6 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/06COMEON.MP3 Start As You Mean To Go On Aphex Twin I Care Because You Do Electronic 5847408 365 7 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/07STARTA.MP3 Wet Tip Hen Ax Aphex Twin I Care Because You Do Electronic 5078783 317 8 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/08WETTIP.MP3 MOOKID Aphex Twin I Care Because You Do Electronic 3704094 231 9 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/09MOOKID.MP3 Alberto Balsalm Aphex Twin I Care Because You Do Electronic 4973029 310 10 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/10ALBERT.MP3 Cow Cud Is A Twin Aphex Twin I Care Because You Do Electronic 5338745 333 11 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/11COWCUD.MP3 Next Heap With Aphex Twin I Care Because You Do Electronic 4529573 283 12 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/ICAREBEC/12NEXTHE.MP3 4 Aphex Twin Richard D. James Album Electronic 3460439 216 1 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/014.MP3 Cornish Acid Aphex Twin Richard D. James Album Electronic 2160180 135 2 2002-02-26 01:18:13-08 2002-02-26 01:18:13-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/02CORNIS.MP3 PEEK 824545201 Aphex Twin Richard D. James Album Electronic 2961409 185 3 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/03PEEK82.MP3 Fingerbib Aphex Twin Richard D. James Album Electronic 3662043 228 4 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/04FINGER.MP3 Corn Mouth Aphex Twin Richard D. James Album Electronic 2454421 153 5 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/05CORNMO.MP3 To Cure A Weakling Child Aphex Twin Richard D. James Album Electronic 3901131 243 6 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/06TOCURE.MP3 Goon Gumpas Aphex Twin Richard D. James Album Electronic 1960812 122 7 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/07GOONGU.MP3 Yellow Calx Aphex Twin Richard D. James Album Electronic 2923790 182 8 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/08YELLOW.MP3 Girl/Boy Song Aphex Twin Richard D. James Album Electronic 4605241 287 9 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/09GIRLBO.MP3 Logon-Rock Witch Aphex Twin Richard D. James Album Electronic 3397066 212 10 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/10LOGONR.MP3 Milkman Aphex Twin Richard D. James Album Electronic 3987075 249 11 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/11MILKMA.MP3 INKEY$ Aphex Twin Richard D. James Album Electronic 1348917 84 12 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/12INKEY.MP3 Girl/Boy (18 Snare Rush Mix) Aphex Twin Richard D. James Album Electronic 1880306 117 13 2002-02-26 01:18:14-08 2002-02-26 01:18:14-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/13GIRLBO.MP3 Beetles Aphex Twin Richard D. James Album Electronic 1459259 91 14 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/14BEETLE.MP3 Girl/Boy (Redruth Mix) Aphex Twin Richard D. James Album Electronic 1561814 97 15 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/RICHARDD/15GIRLBO.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 4666748 291 1 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/01.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 8719154 544 2 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/02.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 3635090 227 3 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/03.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 1235671 77 4 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/04.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 5158404 322 5 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/05.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 5814329 363 6 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/06.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 4659656 291 7 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/07.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 7393927 462 8 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/08.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 4924452 307 9 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/09.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 5249294 328 10 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/10.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 6913112 432 0 2002-02-26 01:18:15-08 2002-02-26 01:18:15-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/12.MP3 N/A Aphex Twin Selected Ambient Works 85-92 Ambient 7277570 454 0 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/APHEXTWI/SELECTED/13.MP3 Online Information Electric Universe MDM Vol 14 Electronic 6272859 392 0 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/ELECTRIC/01.MP3 Out Electric Universe MDM Vol 14 Electronic 9392741 587 0 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/ELECTRIC/02.MP3 Whole Being Martin Dumais & Marc Leclair Les Incontournables Du Techno Quebecois Electronic 5440272 340 1 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/LESINCON/01WHOLEB.MP3 Bigger-Better-Darker-Deeper Sylvain Houde & Alexandre Lepage Les Incontournables Du Techno Quebecois Electronic 4464915 279 2 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/LESINCON/02BIGGER.MP3 Cascade Mateo Les Incontournables Du Techno Quebecois Electronic 5621639 351 3 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/LESINCON/03CASCAD.MP3 Angel Massive Attack Mezzanine Trip-Hop 6089788 380 1 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/01ANGEL.MP3 Risingson Massive Attack Mezzanine Trip-Hop 4782416 298 2 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/02RISING.MP3 Teardrop Massive Attack Mezzanine Trip-Hop 5292047 330 3 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/03TEARDR.MP3 Inertia Creeps Massive Attack Mezzanine Trip-Hop 5712380 357 4 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/04INERTI.MP3 Exchange Massive Attack Mezzanine Trip-Hop 4018944 251 5 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/05EXCHAN.MP3 Dissolved Girl Massive Attack Mezzanine Trip-Hop 5871621 366 6 2002-02-26 01:18:16-08 2002-02-26 01:18:16-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/06DISSOL.MP3 Man Next Door Massive Attack Mezzanine Trip-Hop 5702488 356 7 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/07MANNEX.MP3 Black Milk Massive Attack Mezzanine Trip-Hop 6104144 381 8 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/08BLACKM.MP3 Mezzanine Massive Attack Mezzanine Trip-Hop 5709449 356 9 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/09MEZZAN.MP3 Group Four Massive Attack Mezzanine Trip-Hop 7877406 492 10 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/10GROUPF.MP3 (Exchange) Massive Attack Mezzanine Trip-Hop 4007105 250 11 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/MEZZANIN/11EXCHAN.MP3 Protection Massive Attack N/A Trip-Hop 4679546 292 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/01.MP3 Karma Coma Massive Attack N/A Trip-Hop 5049041 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/02.MP3 Rising Sun Massive Attack N/A Trip-Hop 4789326 299 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/03.MP3 Protection Massive Attack N/A Trip-Hop 7538824 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/04.MP3 Safe From Harm Massive Attack N/A Trip-Hop 5104634 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/05.MP3 Unfinished Sympathy (Mix) Massive Attack N/A Trip-Hop 5138500 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/06.MP3 Unfinished Sympathy Massive Attack N/A Trip-Hop 5032750 0 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/07.MP3 Angel Massive Attack N/A Trip-Hop 6064096 379 0 2002-02-26 01:18:17-08 2002-02-26 01:18:17-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/08.MP3 Protection Massive Attack N/A Trip-Hop 4632059 289 0 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/09.MP3 Sly (7 Stones mix) Massive Attack Sly single Trip-Hop 7151734 0 0 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/10.MP3 Sly (Underdog mix) Massive Attack Sly single Trip-Hop 6337236 0 0 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 0 0 MPEG AUDIO FILE MP3004/MASSIVEA/UNKNOWN/11.MP3 17 Sato Yumiko elfish echo presents Electronic 5641741 352 1 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/0117.MP3 violette Sato Yumiko elfish echo presents Electronic 5088091 318 2 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/02VIOLET.MP3 star Sato Yumiko elfish echo presents Electronic 7844109 490 3 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/03STAR.MP3 is it Sato Yumiko elfish echo presents Electronic 4394276 274 4 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/04ISIT.MP3 up your stairs Sato Yumiko elfish echo presents Electronic 5009381 313 5 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/05UPYOUR.MP3 noctovision Sato Yumiko elfish echo presents Electronic 5884724 367 6 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/06NOCTOV.MP3 lost track Sato Yumiko elfish echo presents Electronic 5922200 370 7 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/07LOSTTR.MP3 strings Sato Yumiko elfish echo presents Electronic 7308983 456 8 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/08STRING.MP3 equation Sato Yumiko elfish echo presents Electronic 10838649 677 9 2002-02-26 01:18:18-08 2002-02-26 01:18:18-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/09EQUATI.MP3 absinthflut Sato Yumiko elfish echo presents Electronic 5465791 341 10 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/10ABSINT.MP3 obscured by meaning Sato Yumiko elfish echo presents Electronic 7533860 470 11 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SATOYUMI/ELFISHEC/11OBSCUR.MP3 Transition Seven Snomed Analeptik Electronic 2957328 184 1 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/01TRANSI.MP3 Analeptik Seven Snomed Analeptik Electronic 8907392 556 2 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/02ANALEP.MP3 Malfunction Seven Snomed Analeptik Electronic 6642334 415 3 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/03MALFUN.MP3 Aluminium Komp Seven Snomed Analeptik Electronic 6453837 403 4 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/04ALUMIN.MP3 Sand Glossy Seven Snomed Analeptik Electronic 5778970 361 5 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/05SANDGL.MP3 Adiptic Acid Seven Snomed Analeptik Electronic 7553207 472 6 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/06ADIPTI.MP3 Econopac Seven Snomed Analeptik Electronic 8099754 506 7 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/07ECONOP.MP3 Play = 303 Seven Snomed Analeptik Electronic 5147294 321 8 2002-02-26 01:18:19-08 2002-02-26 01:18:19-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/08PLAY30.MP3 Equivalence Seven Snomed Analeptik Electronic 7950546 496 9 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/09EQUIVA.MP3 Analeptik 2 Seven Snomed Analeptik Electronic 3935633 245 10 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/10ANALEP.MP3 Seven Snomed Analeptik Electronic 2607359 162 11 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SEVENSNO/ANALEPTI/11NOTITL.MP3 Expansion System 7 N/A Electronic 9109556 569 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/01.MP3 A Cool Place System 7 N/A Electronic 7995447 499 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/02.MP3 Alpha Waves System 7 N/A Electronic 9699382 606 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/03.MP3 desir Ghost mix System 7 N/A Electronic 7471162 466 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/04.MP3 FayDeauDeau System 7 N/A Electronic 7143478 446 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/05.MP3 On The Seventh Night System 7 N/A Electronic 7274559 454 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/06.MP3 Ship Of The Desert System 7 N/A Electronic 9371709 585 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/07.MP3 Sinbad System 7 N/A Electronic 7733297 483 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/08.MP3 Mektoub System 7 N/A Electronic 6881330 430 0 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/SYSTEM7/09.MP3 Halo Effect Guru Stefan Therapy Electronic 6257413 391 1 2002-02-26 01:18:20-08 2002-02-26 01:18:20-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/01HALOEF.MP3 Depersonalisation Guru Stefan Therapy Electronic 6344772 396 2 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/02DEPERS.MP3 Obsolete Perversion Guru Stefan Therapy Electronic 9721883 607 3 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/03OBSOLE.MP3 Aylek triko 3060 Guru Stefan Therapy Electronic 3913922 244 4 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/04AYLEKT.MP3 Negative space Guru Stefan Therapy Electronic 4919669 307 5 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/05NEGATI.MP3 Sponteneous Inhibition Guru Stefan Therapy Electronic 6464731 404 6 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/06SPONTE.MP3 Personnal Illumination Guru Stefan Therapy Electronic 5008980 313 7 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/07PERSON.MP3 Shape Shifters Guru Stefan Therapy Electronic 2825694 176 8 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/08SHAPES.MP3 Foam Culture Guru Stefan Therapy Electronic 5891003 368 9 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/09FOAMCU.MP3 Hyperdimentionnal Realty Guru Stefan Therapy Electronic 3370585 210 10 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/10HYPERD.MP3 Mind altering Bubble Guru Stefan Therapy Electronic 5240947 327 11 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/11MINDAL.MP3 Self Fulfilling Prophecies Guru Stefan Therapy Electronic 2201556 137 12 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/12SELFFU.MP3 Osmosis Guru Stefan Therapy Electronic 5330796 333 13 2002-02-26 01:18:21-08 2002-02-26 01:18:21-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/13OSMOSI.MP3 Reversed Atmospheric Organism Guru Stefan Therapy Electronic 4892797 305 14 2002-02-26 01:18:22-08 2002-02-26 01:18:22-08 128 44100 MPEG AUDIO FILE MP3004/THERAPY/GURUSTEF/14REVERS.MP3 train-trac [train-abuse] Fuse Train-tracs Electronic 7613649 475 1 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/01TRAINT.MP3 train-trac [kaboose] Fuse Train-tracs Electronic 13229760 826 2 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/02TRAINT.MP3 train-trac [drum-trac 2] Fuse Train-tracs Electronic 6017463 376 3 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/03TRAINT.MP3 train-trac [bajack] Fuse Train-tracs Electronic 7866927 491 4 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/04TRAINT.MP3 train-trac [the day after [mv's mix]] Fuse Train-tracs Electronic 3645977 227 5 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/05TRAINT.MP3 confusion Fuse Train-tracs Electronic 4811635 300 6 2002-02-26 01:18:30-08 2002-02-26 01:18:30-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/06CONFUS.MP3 approach & identify Fuse Train-tracs Electronic 5407656 337 7 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/FUSE/TRAINTRA/07APPROA.MP3 Salacious Gianelli Transmissions, volume 1 Electronic 3349423 209 1 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/01GIANEL.MP3 Relations Ian Pooley Transmissions, volume 1 Electronic 5481712 342 2 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/02IANPOO.MP3 Seven 2 Mix Seven Transmissions, volume 1 Electronic 4056256 253 3 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/03SEVEN.MP3 Vision 3 Mario J Transmissions, volume 1 Electronic 3426368 214 4 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/04MARIOJ.MP3 HardFunk HardTrax Transmissions, volume 1 Electronic 4318112 269 5 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/05HARDTR.MP3 Always Did, Always Will Tralopscinor Transmissions, volume 1 Electronic 3513281 219 6 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/06TRALOP.MP3 Manik Sax Chuck Pulasole Transmissions, volume 1 Electronic 5054234 315 7 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/07CHUCKP.MP3 Bang The Box Basement Trax Transmissions, volume 1 Electronic 3090785 193 8 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/08BASEME.MP3 The Son Sun Children Transmissions, volume 1 Electronic 3558463 222 9 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/09SUNCHI.MP3 Get House Calisto Transmissions, volume 1 Electronic 5687130 355 10 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/10CALIST.MP3 Gasoline Barada Transmissions, volume 1 Electronic 4740138 296 11 2002-02-26 01:18:31-08 2002-02-26 01:18:31-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/11BARADA.MP3 Rescue Omegaman Transmissions, volume 1 Electronic 4557700 284 12 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/12OMEGAM.MP3 Loop (Fuse Mix) LFO vs. Fuse Transmissions, volume 1 Electronic 6349275 396 13 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/13LFOVSF.MP3 Logan's Run L.A. Williams Transmissions, volume 1 Electronic 4210472 263 14 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/14LAWILL.MP3 Spaz Plastikman Transmissions, volume 1 Electronic 5215051 325 15 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/15PLASTI.MP3 A track for O.J. Simpson Terrence Parker Transmissions, volume 1 Electronic 3079890 192 16 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/16TERREN.MP3 Phreakin' DJ HMC Transmissions, volume 1 Electronic 3773093 235 17 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/JOHNACQU/TRANSMIS/17DJHMC.MP3 An Accident in Paradise Sven Vath Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 6344527 396 1 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/01ANACCI.MP3 Into the Nature Hardfloor Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 6028170 376 2 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/02INTOTH.MP3 Mikado Pulse Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 5550341 346 3 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/03MIKADO.MP3 Vernon's Wonderland (Chapter Two) Vernon Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 4701990 293 4 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/04VERNON.MP3 Cafe Del Mar Energy 52 Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 5234695 327 5 2002-02-26 01:18:32-08 2002-02-26 01:18:32-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/05CAFEDE.MP3 C3 Bells Moby Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 4116840 257 6 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/06C3BELL.MP3 Hypnotize Me House 2 House Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2297283 143 7 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/07HYPNOT.MP3 Your Touch 2001 Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 3653568 228 8 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/08YOURTO.MP3 Dee Drive Fiction Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2775141 173 9 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/09DEEDRI.MP3 Barbarella Barbarella Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 3008264 188 10 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/10BARBAR.MP3 Housewerk Airtight Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 3078860 192 11 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/11HOUSEW.MP3 The Music is Movin Fargetta Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2005570 125 12 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/12THEMUS.MP3 Go Moby Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 4035253 252 13 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/13GO.MP3 next is the E (intro mix) Moby Sven Vath & Moby - Mixmag Live Vol. 2 Electronic 2163124 135 14 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MIXMAGLI/14NEXTIS.MP3 Honey Moby Play Electronic 3339232 208 1 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/01HONEY.MP3 Find My Baby Moby Play Electronic 3830481 239 2 2002-02-26 01:18:33-08 2002-02-26 01:18:33-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/02FINDMY.MP3 Porcelain Moby Play Electronic 3858063 241 3 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/03PORCEL.MP3 Why Does My Heart Feel So Bad? Moby Play Electronic 4238705 264 4 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/04WHYDOE.MP3 South Side Moby Play Electronic 3676948 229 5 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/05SOUTHS.MP3 Rushing Moby Play Electronic 2883798 180 6 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/06RUSHIN.MP3 Bodyrock Moby Play Electronic 3462673 216 7 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/07BODYRO.MP3 Natural Blues Moby Play Electronic 4061473 253 8 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/08NATURA.MP3 Machete Moby Play Electronic 3484684 217 9 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/09MACHET.MP3 7 Moby Play Electronic 993644 62 10 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/107.MP3 Run On Moby Play Electronic 3603385 225 11 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/11RUNON.MP3 Down Slow Moby Play Electronic 1519025 94 12 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/12DOWNSL.MP3 If Things Were Perfect Moby Play Electronic 4139642 258 13 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/13IFTHIN.MP3 Everloving Moby Play Electronic 3290338 205 14 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/14EVERLO.MP3 Inside Moby Play Electronic 4618607 288 15 2002-02-26 01:18:34-08 2002-02-26 01:18:34-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/15INSIDE.MP3 Guitar Flute & String Moby Play Electronic 2068237 129 16 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/16GUITAR.MP3 The Sky Is Broken Moby Play Electronic 4136852 258 17 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/17THESKY.MP3 My Weakness Moby Play Electronic 3483854 217 18 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/MOBY/PLAY/18MYWEAK.MP3 korridor Plastikman Artifakts [bc] Electronic 5584869 349 1 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/01KORRID.MP3 psyk Plastikman Artifakts [bc] Electronic 8171613 510 2 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/02PSYK.MP3 pakard Plastikman Artifakts [bc] Electronic 11745164 734 3 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/03PAKARD.MP3 hypokondriak Plastikman Artifakts [bc] Electronic 10151911 634 4 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/04HYPOKO.MP3 rekall Plastikman Artifakts [bc] Electronic 10366736 647 5 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/05REKALL.MP3 skizofrenik Plastikman Artifakts [bc] Electronic 4799945 299 6 2002-02-26 01:18:35-08 2002-02-26 01:18:35-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/06SKIZOF.MP3 are friends elecktrk? + lodgiikal nonsense Plastikman Artifakts [bc] Electronic 19625817 1226 7 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/ARTIFAKT/07AREFRI.MP3 contain Plastikman Consumed Ambient 8146283 509 1 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/01CONTAI.MP3 consume Plastikman Consumed Ambient 10874998 679 2 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/02CONSUM.MP3 passage (in) Plastikman Consumed Ambient 863631 53 3 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/03PASSAG.MP3 cor ten Plastikman Consumed Ambient 6576707 411 4 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/04CORTEN.MP3 convulse (sic) Plastikman Consumed Ambient 1324642 82 5 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/05CONVUL.MP3 ekko Plastikman Consumed Ambient 3773453 235 6 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/06EKKO.MP3 converge Plastikman Consumed Ambient 4232794 264 7 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/07CONVER.MP3 locomotion Plastikman Consumed Ambient 8467697 529 8 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/08LOCOMO.MP3 in side Plastikman Consumed Ambient 12123859 757 9 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/09INSIDE.MP3 consumed Plastikman Consumed Ambient 11240297 702 10 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/10CONSUM.MP3 passage (out) Plastikman Consumed Ambient 3067950 191 11 2002-02-26 01:18:36-08 2002-02-26 01:18:36-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/CONSUMED/11PASSAG.MP3 konception Plastikman Musik Electronic 7865269 491 1 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/01KONCEP.MP3 plastique Plastikman Musik Electronic 12535264 783 2 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/02PLASTI.MP3 kriket Plastikman Musik Electronic 5425065 339 3 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/03KRIKET.MP3 fuk Plastikman Musik Electronic 4889394 305 4 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/04FUK.MP3 outbak Plastikman Musik Electronic 4969227 310 5 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/05OUTBAK.MP3 ethnik Plastikman Musik Electronic 8727514 545 6 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/06ETHNIK.MP3 plasmatik Plastikman Musik Electronic 5183643 323 7 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/07PLASMA.MP3 goo Plastikman Musik Electronic 1919935 119 8 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/08GOO.MP3 marbles Plastikman Musik Electronic 10684399 667 9 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/09MARBLE.MP3 lasttrak Plastikman Musik Electronic 8036632 502 10 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/MUSIK/10LASTTR.MP3 drp Plastikman Sheet One Electronic 1694105 105 1 2002-02-26 01:18:37-08 2002-02-26 01:18:37-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/01DRP.MP3 plasticity Plastikman Sheet One Electronic 10563760 660 2 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/02PLASTI.MP3 gak Plastikman Sheet One Electronic 5417284 338 3 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/03GAK.MP3 okx Plastikman Sheet One Electronic 554749 34 4 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/04OKX.MP3 helikopter Plastikman Sheet One Electronic 6249865 390 5 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/05HELIKO.MP3 glob Plastikman Sheet One Electronic 8002779 500 6 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/06GLOB.MP3 plasticine Plastikman Sheet One Electronic 10875975 679 7 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/07PLASTI.MP3 koma Plastikman Sheet One Electronic 4004166 250 8 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/08KOMA.MP3 vokx Plastikman Sheet One Electronic 2043938 127 9 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/09VOKX.MP3 smak Plastikman Sheet One Electronic 6438779 402 10 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/10SMAK.MP3 ovokx Plastikman Sheet One Electronic 2149824 134 11 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/PLASTIKM/SHEETONE/11OVOKX.MP3 November X Ray Mexico Richard Kirk Virtual State Ambient 8210179 513 1 2002-02-26 01:18:38-08 2002-02-26 01:18:38-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/01NOVEMB.MP3 Frequency Band Richard Kirk Virtual State Ambient 6182998 386 2 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/02FREQUE.MP3 Come Richard Kirk Virtual State Ambient 7714808 482 3 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/03COME.MP3 Freezone Richard Kirk Virtual State Ambient 6592732 412 4 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/04FREEZO.MP3 Clandestine Transmission Richard Kirk Virtual State Ambient 6349078 396 5 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/05CLANDE.MP3 The Feeling (of Warmth & Beauty) Richard Kirk Virtual State Ambient 5889240 368 6 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/06THEFEE.MP3 Velodrome Richard Kirk Virtual State Ambient 6672005 417 7 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/07VELODR.MP3 Soul Catcher Richard Kirk Virtual State Ambient 6853124 428 8 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/08SOULCA.MP3 Worldwar Three Richard Kirk Virtual State Ambient 5645503 352 9 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/09WORLDW.MP3 Lagoon West Richard Kirk Virtual State Ambient 11522423 720 10 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHARDK/VIRTUALS/10LAGOON.MP3 Early Blow Ratio Richie Hawtin: Decks, EFX & 909 Electronic 1968906 123 1 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/01RATIO.MP3 Dumped G. Flame & Mr. G Richie Hawtin: Decks, EFX & 909 Electronic 1012205 63 2 2002-02-26 01:18:39-08 2002-02-26 01:18:39-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/02GFLAME.MP3 User 02:B2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1137317 71 3 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/03RICHAR.MP3 User 04:A2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1033761 64 4 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/04RICHAR.MP3 User 02:A2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1353680 84 5 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/05RICHAR.MP3 User 01:B2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1228897 76 6 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/06RICHAR.MP3 001A:A2 Richard Harvey Richie Hawtin: Decks, EFX & 909 Electronic 1339721 83 7 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/07RICHAR.MP3 B2 Grain 1 Richie Hawtin: Decks, EFX & 909 Electronic 1111433 69 8 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/08GRAIN1.MP3 Road To Rio B2 Santos Rodriguez Richie Hawtin: Decks, EFX & 909 Electronic 586371 36 9 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/09SANTOS.MP3 B1 Grain 2 Richie Hawtin: Decks, EFX & 909 Electronic 1554103 97 10 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/10GRAIN2.MP3 Road To Rio A2 Santos Rodriguez Richie Hawtin: Decks, EFX & 909 Electronic 1416669 88 11 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/11SANTOS.MP3 A1 Grain 2 Richie Hawtin: Decks, EFX & 909 Electronic 763844 47 12 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/12GRAIN2.MP3 002A:B1 Richard Harvey Richie Hawtin: Decks, EFX & 909 Soundtrack 4173788 260 13 2002-02-26 01:18:40-08 2002-02-26 01:18:40-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/13RICHAR.MP3 Call of the Wild Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 1752168 109 14 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/14JEFFMI.MP3 L8 Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 639796 39 15 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/15JEFFMI.MP3 Scout Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 448427 28 16 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/16JEFFMI.MP3 L8 Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 222972 13 17 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/17JEFFMI.MP3 Orange/Minus 1 Orange Richie Hawtin: Decks, EFX & 909 Soundtrack 2104178 131 18 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/18RICHIE.MP3 Orange/Minus 2 Richie Hawtin Richie Hawtin: Decks, EFX & 909 Soundtrack 1221823 76 19 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/19RICHIE.MP3 Minus/Orange 2 Richie Hawtin Richie Hawtin: Decks, EFX & 909 Soundtrack 890334 55 20 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/20RICHIE.MP3 Let Your Body learn Nitzer Ebb Richie Hawtin: Decks, EFX & 909 Soundtrack 2098270 131 21 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/21NITZER.MP3 Minus/Orange 1 Richie Hawtin Richie Hawtin: Decks, EFX & 909 Soundtrack 946593 59 22 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/22RICHIE.MP3 What the Hell Was That? Intermission Richie Hawtin: Decks, EFX & 909 Soundtrack 155544 9 23 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/23INTERM.MP3 Killabyte 002:A1 Ben Sims Richie Hawtin: Decks, EFX & 909 Soundtrack 2102386 131 24 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/24BENSIM.MP3 Hardgroove 001:A1 Ben Sims Richie Hawtin: Decks, EFX & 909 Soundtrack 2821651 176 25 2002-02-26 01:18:41-08 2002-02-26 01:18:41-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/25BENSIM.MP3 Alarms Jeff Mills Richie Hawtin: Decks, EFX & 909 Soundtrack 1217201 76 26 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/26JEFFMI.MP3 Force & Form (Surgeon Remake 2) Surgeon Richie Hawtin: Decks, EFX & 909 Soundtrack 1901640 118 27 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/27SURGEO.MP3 Zen Pacou Richie Hawtin: Decks, EFX & 909 Soundtrack 2039998 127 28 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/28PACOU.MP3 Five Heiko Laux Richie Hawtin: Decks, EFX & 909 Soundtrack 1552760 97 29 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/29HEIKOL.MP3 Dead Eye Baby Ford & Eon Richie Hawtin: Decks, EFX & 909 Soundtrack 2293970 143 30 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/30BABYFO.MP3 Club Soda Savvas Ysatis Richie Hawtin: Decks, EFX & 909 Soundtrack 1282396 80 31 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/31SAVVAS.MP3 It's Process Not substance Stewart S. Walker Richie Hawtin: Decks, EFX & 909 Soundtrack 505255 31 32 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/32STEWAR.MP3 5 M Richie Hawtin: Decks, EFX & 909 Soundtrack 1296399 81 33 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/33M.MP3 Neo Vladislav Delay Richie Hawtin: Decks, EFX & 909 Soundtrack 2527319 157 34 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/34VLADIS.MP3 Aliens Don't Boogie Thor Richie Hawtin: Decks, EFX & 909 Soundtrack 2745593 171 35 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/35THOR.MP3 Questions 003:B2 Marco Carola Richie Hawtin: Decks, EFX & 909 Soundtrack 2865986 179 36 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/36MARCOC.MP3 Kykeon Quadrant Richie Hawtin: Decks, EFX & 909 Soundtrack 2159219 134 37 2002-02-26 01:18:42-08 2002-02-26 01:18:42-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/37QUADRA.MP3 Never Tell You (Version) Rhythm & Sound Richie Hawtin: Decks, EFX & 909 Soundtrack 2589183 161 38 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/RICHIEHA/DECKSEFX/38RHYTHM.MP3 Block Rockin' Beats (original) Chemical Bros Electronica - Disk 1 Misc 4783742 298 1 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/01BLOCKR.MP3 Born Slippy (Nuxx edit) Underworld Electronica - Disk 2 Misc 4056895 253 3 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/03BORNSL.MP3 Take California (Short one) Propellerheads Electronica - Disk 1 Misc 3713765 232 3 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/03TAKECA.MP3 Breathe (Edit) Prodigy Electronica - Disk 2 Misc 3797330 237 4 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/04BREATH.MP3 Absurd (Whitewash edit) Fluke Electronica - Disk 1 Misc 3479277 217 6 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/06ABSURD.MP3 Satan (live @ the irvine plaza) Orbital Electronica - Disk 1 Misc 6150187 384 11 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/11SATANL.MP3 Going Out Of My Head (radio version) Fatboy Slim Electronica - Disk 1 Misc 4842261 302 12 2002-02-26 01:18:43-08 2002-02-26 01:18:43-08 128 44100 MPEG AUDIO FILE MP3005/VARIOUSA/12GOINGO.MP3 Beautiful When You're Mad Flu Ready For Radio Pop 3647478 227 6 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Beautiful When You're Mad.mp3 Bonecracker ShoCore Ready For Radio Pop 2789816 174 4 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Bonecracker.mp3 Brenda Mars The Dragonflies Ready For Radio Pop 3683003 230 5 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Brenda Mars.mp3 By The Stereo Ashley Park Ready For Radio Pop 2347204 146 10 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/By The Stereo.mp3 Detox No.9 Paul Jarret Ready For Radio Pop 3409236 213 12 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Detox No.9.mp3 Everything's Fine Fifth Season Ready For Radio Pop 3400465 212 3 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Everything's Fine.mp3 Five Years Rut superGARAGE Ready For Radio Pop 2920227 182 17 2002-02-26 01:23:45-08 2002-02-26 01:23:45-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Five Years Rut.mp3 Gonna Be Alright Marytez Ready For Radio Pop 2678644 167 1 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Gonna Be Alright.mp3 Insect Girl Adrienne Pierce Ready For Radio Pop 4173688 260 11 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Insect Girl.mp3 Jobsite Zubot + Dawson Ready For Radio Pop 3873588 242 15 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Jobsite.mp3 Lester Bang Nasty On Ready For Radio Pop 2065077 129 16 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Lester Bang.mp3 Lost In The park Radiogram Ready For Radio Pop 3387924 211 14 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Lost In The park.mp3 Out Of Space Rich Hope Ready For Radio Pop 3309342 206 9 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Out Of Space.mp3 Outlook Episode Ready For Radio Pop 3538378 221 18 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Outlook.mp3 Over It Kristy Thirsk Ready For Radio Pop 4355075 272 2 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Over It.mp3 RDS Drumatic Ready For Radio Pop 5566313 347 19 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/RDS.mp3 Tears To The Skies Booti Dharma Ready For Radio Pop 2783560 173 13 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Tears To The Skies.mp3 The Flying Song Siobhan DuVall Ready For Radio Pop 3171424 198 7 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/The Flying Song.mp3 Thumbling Down Spygirl Ready For Radio Pop 3003396 187 8 2002-02-26 01:23:46-08 2002-02-26 01:23:46-08 128 44100 MPEG AUDIO FILE MP3037/New Music West 2001/Ready For Radio/Thumbling Down.mp3 Angoisse (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 2535424 158 1 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 01.mp3 Du Jazz Dans Le Ravin Serge Gainsbourg Du Jazz Dans Le Ravin Other 2103296 131 2 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 02.mp3 Requiem Pour Un Twisteur Serge Gainsbourg Du Jazz Dans Le Ravin Other 2545664 159 3 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 03.mp3 Chez Les Ye-Ye Serge Gainsbourg Du Jazz Dans Le Ravin Other 3207168 200 4 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 04.mp3 Black March (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 1556480 97 5 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 05.mp3 Black Trombone Serge Gainsbourg Du Jazz Dans Le Ravin Other 2506752 156 6 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 06.mp3 Ce Mortel Ennui Serge Gainsbourg Du Jazz Dans Le Ravin Other 2822144 176 7 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 07.mp3 Generique Serge Gainsbourg Du Jazz Dans Le Ravin Other 1425408 89 8 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 08.mp3 Coco And Co Serge Gainsbourg Du Jazz Dans Le Ravin Other 2912256 182 9 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 09.mp3 Intoxicated Man Serge Gainsbourg Du Jazz Dans Le Ravin Other 2521088 157 10 2002-02-26 01:23:47-08 2002-02-26 01:23:47-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 10.mp3 Elaeudanla Teiteia Serge Gainsbourg Du Jazz Dans Le Ravin Other 1558528 97 11 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 11.mp3 Le Talkie Walkie Serge Gainsbourg Du Jazz Dans Le Ravin Other 1955840 122 12 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 12.mp3 Some Small Chance (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 1904640 119 13 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 13.mp3 Quand Tu T'y Mets Serge Gainsbourg Du Jazz Dans Le Ravin Other 1712128 107 14 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 14.mp3 La Fille Au Rasoir Serge Gainsbourg Du Jazz Dans Le Ravin Other 2185216 136 15 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 15.mp3 Quand Mon 6'35 Me Fait Les Yeux Doux Serge Gainsbourg Du Jazz Dans Le Ravin Other 1814528 113 16 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 16.mp3 Fugee (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 1069056 66 17 2002-02-26 01:23:48-08 2002-02-26 01:23:48-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 17.mp3 Machins Choses Serge Gainsbourg Du Jazz Dans Le Ravin Other 3162145 197 18 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 18.mp3 Negative Blues Serge Gainsbourg Du Jazz Dans Le Ravin Other 1462272 91 19 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 19.mp3 Wake Me At Five (Instrumental) Serge Gainsbourg Du Jazz Dans Le Ravin Other 2639872 164 20 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Du Jazz Dans Le Ravin/Track 20.mp3 Le poinonneur des lilas (enregistrement public) Serge Gainsbourg Le Poinconneur Des Lilas Other 3313664 207 1 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 01.mp3 Le poinonneur des lilas Serge Gainsbourg Le Poinconneur Des Lilas Other 2596864 162 2 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 02.mp3 La recette de l'amour fou Serge Gainsbourg Le Poinconneur Des Lilas Other 1859584 116 3 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 03.mp3 Douze belle dans la peau Serge Gainsbourg Le Poinconneur Des Lilas Other 1822720 113 4 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 04.mp3 Ce mortel ennui Serge Gainsbourg Le Poinconneur Des Lilas Other 2793472 174 5 2002-02-26 01:23:49-08 2002-02-26 01:23:49-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 05.mp3 Ronsard 58 Serge Gainsbourg Le Poinconneur Des Lilas Other 1787904 111 6 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 06.mp3 La femme des uns sous le corp des autres Serge Gainsbourg Le Poinconneur Des Lilas Other 2861056 178 7 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 07.mp3 L'alcool Serge Gainsbourg Le Poinconneur Des Lilas Other 3784704 236 8 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 08.mp3 Du jazz dans le ravin Serge Gainsbourg Le Poinconneur Des Lilas Other 2084864 130 9 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 09.mp3 Charleston des demenageurs de pianos Serge Gainsbourg Le Poinconneur Des Lilas Other 2299984 143 10 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 10.mp3 La jambes de bois de Friedland Serge Gainsbourg Le Poinconneur Des Lilas Other 2453504 153 11 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 11.mp3 Le claqueur de doigts Serge Gainsbourg Le Poinconneur Des Lilas Other 2971648 185 12 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 12.mp3 La nuit d'Octobre Serge Gainsbourg Le Poinconneur Des Lilas Other 2973696 185 13 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 13.mp3 Adieu creature Serge Gainsbourg Le Poinconneur Des Lilas Other 2074624 129 14 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 14.mp3 L'anthracite Serge Gainsbourg Le Poinconneur Des Lilas Other 2426880 151 15 2002-02-26 01:23:50-08 2002-02-26 01:23:50-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 15.mp3 Mambo miam miam Serge Gainsbourg Le Poinconneur Des Lilas Other 2455552 153 16 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 16.mp3 Indifferente Serge Gainsbourg Le Poinconneur Des Lilas Other 2152448 134 17 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 17.mp3 Jeunes femmes et vieux messieurs Serge Gainsbourg Le Poinconneur Des Lilas Other 1970176 123 18 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 18.mp3 L'amour a la papa Serge Gainsbourg Le Poinconneur Des Lilas Other 2695168 168 19 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 19.mp3 Cha cha cha du loup Serge Gainsbourg Le Poinconneur Des Lilas Other 1841152 115 20 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 20.mp3 Sois belle et tais toi Serge Gainsbourg Le Poinconneur Des Lilas Other 1902592 118 21 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 21.mp3 Laissez-moi tranquille Serge Gainsbourg Le Poinconneur Des Lilas Other 1845248 115 22 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 22.mp3 Judith Serge Gainsbourg Le Poinconneur Des Lilas Other 2420736 151 23 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 23.mp3 L'eau a la bouche Serge Gainsbourg Le Poinconneur Des Lilas Other 2367488 147 24 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 01 - Le Poinconneur Des Lilas - 1959-1960/Track 24.mp3 La chanson de Prevert Serge Gainsbourg La Javanaise Other 2891776 180 1 2002-02-26 01:23:51-08 2002-02-26 01:23:51-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 01.mp3 En relisant ta lettre Serge Gainsbourg La Javanaise Other 1935360 120 2 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 02.mp3 Le rock de Nerval Serge Gainsbourg La Javanaise Other 1779712 111 3 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 03.mp3 Les oubliettes Serge Gainsbourg La Javanaise Other 2359301 147 4 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 04.mp3 Chanson de Maglia Serge Gainsbourg La Javanaise Other 2000896 125 5 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 05.mp3 Viva Villa Serge Gainsbourg La Javanaise Other 3229696 201 6 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 06.mp3 Les Amours Perdues Serge Gainsbourg La Javanaise Other 2838528 177 7 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 07.mp3 Les femmes c'est du Chinois Serge Gainsbourg La Javanaise Other 2437120 152 8 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 08.mp3 Personne Serge Gainsbourg La Javanaise Other 2637824 164 9 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 09.mp3 Le sonnet D'Arvers Serge Gainsbourg La Javanaise Other 1835008 114 10 2002-02-26 01:23:52-08 2002-02-26 01:23:52-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 10.mp3 Les Goemons Serge Gainsbourg La Javanaise Other 2539520 158 11 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 11.mp3 Black trombones Serge Gainsbourg La Javanaise Other 2512896 157 12 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 12.mp3 Baudelaire Serge Gainsbourg La Javanaise Other 2359296 147 13 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 13.mp3 Intoxicated man Serge Gainsbourg La Javanaise Other 2523141 157 14 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 14.mp3 Quand tu t'y mets Serge Gainsbourg La Javanaise Other 1765376 110 15 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 15.mp3 Les Cigarillos Serge Gainsbourg La Javanaise Other 1701888 106 16 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 16.mp3 Requiem pour un Twister Serge Gainsbourg La Javanaise Other 2543616 158 17 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 17.mp3 Ce grand mechant Vous Serge Gainsbourg La Javanaise Other 2275328 142 18 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 18.mp3 L'appareil a sous Serge Gainsbourg La Javanaise Other 1505280 94 19 2002-02-26 01:23:53-08 2002-02-26 01:23:53-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 19.mp3 Vilaines filles, mauvais garons Serge Gainsbourg La Javanaise Other 1843200 115 20 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 20.mp3 Un violon, un jambon Serge Gainsbourg La Javanaise Other 2285568 142 21 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 21.mp3 La Javanaise Serge Gainsbourg La Javanaise Other 2375680 148 22 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 02 - La Javanaise/Track 22.mp3 Chez les ye-ye Serge Gainsbourg Couleur Cafe Other 2383872 148 1 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 01.mp3 Sait-on jamais ou va une femme quand elle vous quitte Serge Gainsbourg Couleur Cafe Other 1949738 121 2 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 02.mp3 Le talkie-walkie Serge Gainsbourg Couleur Cafe Other 1980416 123 3 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 03.mp3 La fille au rasoir Serge Gainsbourg Couleur Cafe Other 1681408 105 4 2002-02-26 01:23:54-08 2002-02-26 01:23:54-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 04.mp3 la saison des pluies Serge Gainsbourg Couleur Cafe Other 3340288 208 5 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 05.mp3 Elaeudanla teiteia Serge Gainsbourg Couleur Cafe Other 1589248 99 6 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 06.mp3 Scenic railway Serge Gainsbourg Couleur Cafe Other 2488320 155 7 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 07.mp3 Le temps des yoyos Serge Gainsbourg Couleur Cafe Other 2525232 157 8 2002-02-26 01:23:55-08 2002-02-26 01:23:55-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 08.mp3 Amour sans amour Serge Gainsbourg Couleur Cafe Other 1988608 124 9 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 09.mp3 No no thank's no Serge Gainsbourg Couleur Cafe Other 2445312 152 10 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 10.mp3 Maxim's Serge Gainsbourg Couleur Cafe Other 1773568 110 11 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 11.mp3 Negative blues Serge Gainsbourg Couleur Cafe Other 1505408 94 12 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 12.mp3 Joanna Serge Gainsbourg Couleur Cafe Other 1986560 124 13 2002-02-26 01:23:56-08 2002-02-26 01:23:56-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 13.mp3 La-bas c'est naturel Serge Gainsbourg Couleur Cafe Other 2459648 153 14 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 14.mp3 Pauvre Lola Serge Gainsbourg Couleur Cafe Other 2428928 151 15 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 15.mp3 Quand mon 6'35 me fait les yeux doux Serge Gainsbourg Couleur Cafe Other 1849344 115 16 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 16.mp3 Machin choses Serge Gainsbourg Couleur Cafe Other 3209216 200 17 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 17.mp3 Les sambassadeurs Serge Gainsbourg Couleur Cafe Other 1990656 124 18 2002-02-26 01:23:57-08 2002-02-26 01:23:57-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 18.mp3 New-York USA Serge Gainsbourg Couleur Cafe Other 2232320 139 19 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 19.mp3 Couleur Cafe Serge Gainsbourg Couleur Cafe Other 2158592 134 20 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 20.mp3 Marabout Serge Gainsbourg Couleur Cafe Other 2127872 132 21 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 21.mp3 Ces petits riens Serge Gainsbourg Couleur Cafe Other 2007040 125 22 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 22.mp3 Tatoue Jeremie Serge Gainsbourg Couleur Cafe Other 1710080 106 23 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 23.mp3 Coco and co Serge Gainsbourg Couleur Cafe Other 2951168 184 24 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 24.mp3 Comment trouvez-vous ma soeur? Serge Gainsbourg Couleur Cafe Other 2007040 125 25 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 03 - Couleur Cafe - 1963-1964/Track 25.mp3 Chanson du forat Serge Gainsbourg Initials B. B. Other 2596864 162 1 2002-02-26 01:23:58-08 2002-02-26 01:23:58-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 01.mp3 Chanson du forat II Serge Gainsbourg Initials B. B. Other 1112115 69 2 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 02.mp3 Manon Serge Gainsbourg Initials B. B. Other 2607144 162 3 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 03.mp3 Requie pour un con Serge Gainsbourg Initials B. B. Other 2719744 169 4 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 04.mp3 L'herbe tendre Serge Gainsbourg Initials B. B. Other 1716224 107 5 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 05.mp3 Initials B. B. Serge Gainsbourg Initials B. B. Other 3471360 216 6 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 06.mp3 Comic strip Serge Gainsbourg Initials B. B. Other 2136064 133 7 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 07.mp3 Bloody Jack Serge Gainsbourg Initials B. B. Other 2041856 127 8 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 08.mp3 Docteur Jekyll et monsieur Hyde Serge Gainsbourg Initials B. B. Other 1914880 119 9 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 09.mp3 Torrey canyon Serge Gainsbourg Initials B. B. Other 2656256 166 10 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 10.mp3 Shu ba du ba loo la Serge Gainsbourg Initials B. B. Other 2060288 128 11 2002-02-26 01:23:59-08 2002-02-26 01:23:59-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 11.mp3 Ford Mustang Serge Gainsbourg Initials B. B. Other 2609152 163 12 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 12.mp3 Bonnie and Clyde Serge Gainsbourg Initials B. B. Other 4120576 257 13 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 13.mp3 Black and White Serge Gainsbourg Initials B. B. Other 2105344 131 14 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 14.mp3 Qui est "in" Qui est "out" Serge Gainsbourg Initials B. B. Other 2181120 136 15 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 15.mp3 Hold up Serge Gainsbourg Initials B. B. Other 2547712 159 16 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 16.mp3 Marilu Serge Gainsbourg Initials B. B. Other 2512896 157 17 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 17.mp3 Bonnie and Clyde (english) Serge Gainsbourg Initials B. B. Other 3624960 226 18 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 18.mp3 Comic strip (english) Serge Gainsbourg Initials B. B. Other 2181120 136 19 2002-02-26 01:24:00-08 2002-02-26 01:24:00-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 19.mp3 Chatterton Serge Gainsbourg Initials B. B. Other 2062336 128 20 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 20.mp3 Je t'aime... Moi non plus (avec Brigitte Bardot) Serge Gainsbourg Initials B. B. Other 4307025 269 21 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 04 - Initials B. B. - 1967-1968/Track 21.mp3 Je T'Aime... Moi Non Plus Serge Gainsbourg Je T'Aime... Moi Non Plus Other 4237312 264 1 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 01.mp3 L'anamour Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2224128 139 2 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 02.mp3 Sous le soleil exactement Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2750464 171 3 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 03.mp3 69 annee erotique Serge Gainsbourg Je T'Aime... Moi Non Plus Other 3213312 200 4 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 04.mp3 Elisa Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2404352 150 5 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 05.mp3 Les sucettes Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2514944 157 6 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 06.mp3 La chanson de Slogan Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2744320 171 7 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 07.mp3 Cannabis Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2392064 149 8 2002-02-26 01:24:01-08 2002-02-26 01:24:01-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 08.mp3 Charlie Brown "A Boy named Charlie Brown" Serge Gainsbourg Je T'Aime... Moi Non Plus Other 2611200 163 9 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 09.mp3 Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 7315456 457 10 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 10.mp3 Ballade de Melody Nelson Serge Gainsbourg Je T'Aime... Moi Non Plus Other 1935360 120 11 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 11.mp3 Valse de Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 1474560 92 12 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 12.mp3 Ah! Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 1736704 108 13 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 13.mp3 L'hotel particulier Serge Gainsbourg Je T'Aime... Moi Non Plus Other 3944448 246 14 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 14.mp3 En Melody Serge Gainsbourg Je T'Aime... Moi Non Plus Other 3295232 205 15 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 15.mp3 Cargo culte Serge Gainsbourg Je T'Aime... Moi Non Plus Other 7342080 458 16 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 05 - Je T'Aime... Moi Non Plus - 1970-1971/Track 16.mp3 La decadanse Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 5046272 315 1 2002-02-26 01:24:02-08 2002-02-26 01:24:02-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 01.mp3 Sex shop Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2863104 178 2 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 02.mp3 Je Suis Venu Te Dire Que Je M'En Vais Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3268608 204 3 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 03.mp3 Vu de l'exterieur Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3538944 221 4 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 04.mp3 Panpan culcul Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2637824 164 5 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 05.mp3 Par hasard et par rase Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2404352 150 6 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 06.mp3 Des Vents Des Pets Des Poums Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2820096 176 7 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 07.mp3 Titicaca Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2881536 180 8 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 08.mp3 Pamela Popo Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2326528 145 9 2002-02-26 01:24:03-08 2002-02-26 01:24:03-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 09.mp3 La Poupe qui fait Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2926592 182 10 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 10.mp3 L'hippodame Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 1691648 105 11 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 11.mp3 Sensuelle et sans suite Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2985984 186 12 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 12.mp3 Nazi rock Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3041280 190 13 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 13.mp3 Tata teutonne Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2693120 168 14 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 14.mp3 J'entends des voix off Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2002944 125 15 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 15.mp3 Eva Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3096576 193 16 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 16.mp3 Smoke gets in your eyes Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3334144 208 17 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 17.mp3 Zig zag avec toi Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3508224 219 18 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 18.mp3 Est-ce est-ce si bon? Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3141632 196 19 2002-02-26 01:24:04-08 2002-02-26 01:24:04-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 19.mp3 Yellow star Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 1605632 100 20 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 20.mp3 Rock around the bunker Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 3289088 205 21 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 21.mp3 S.S. in Uruguay Serge Gainsbourg Je Suis Venu Te Dire Que Je M'En Vais Other 2170880 135 22 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 06 - Je Suis Venu Te Dire Que Je M'En Vais - 1973-1975/Track 22.mp3 L'homme a la tete de chou Serge Gainsbourg L'Homme A Tete De Chou Other 2881536 180 1 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 01.mp3 Chez Max coiffeur pour homme Serge Gainsbourg L'Homme A Tete De Chou Other 1918976 119 2 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 02.mp3 Marilou reggae Serge Gainsbourg L'Homme A Tete De Chou Other 2113536 132 3 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 03.mp3 Transit a Marilou Serge Gainsbourg L'Homme A Tete De Chou Other 1488896 93 4 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 04.mp3 Flash forward Serge Gainsbourg L'Homme A Tete De Chou Other 2523136 157 5 2002-02-26 01:24:05-08 2002-02-26 01:24:05-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 05.mp3 Aeroplanes Serge Gainsbourg L'Homme A Tete De Chou Other 2510848 156 6 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 06.mp3 Premiers symptomes Serge Gainsbourg L'Homme A Tete De Chou Other 1191936 74 7 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 07.mp3 Malou Marilou Serge Gainsbourg L'Homme A Tete De Chou Other 2596864 162 8 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 08.mp3 Variations sur Marilou Serge Gainsbourg L'Homme A Tete De Chou Other 7370752 460 9 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 09.mp3 Meurtre a l'extincteur Serge Gainsbourg L'Homme A Tete De Chou Other 761856 47 10 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 10.mp3 Marilou sous la neige Serge Gainsbourg L'Homme A Tete De Chou Other 2295808 143 11 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 11.mp3 Lunatic asylum Serge Gainsbourg L'Homme A Tete De Chou Other 3254272 203 12 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 12.mp3 L'ami Caouette Serge Gainsbourg L'Homme A Tete De Chou Other 3039232 189 13 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 13.mp3 Le cadavre exquis Serge Gainsbourg L'Homme A Tete De Chou Other 2813952 175 14 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 14.mp3 My Lady Heroine Serge Gainsbourg L'Homme A Tete De Chou Other 3067904 191 15 2002-02-26 01:24:06-08 2002-02-26 01:24:06-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 15.mp3 Trois millions de Jocondes Serge Gainsbourg L'Homme A Tete De Chou Other 2955264 184 16 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 16.mp3 Good-Bye Emmanuelle Serge Gainsbourg L'Homme A Tete De Chou Other 3211264 200 17 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 17.mp3 Sea, Sex and Sun Serge Gainsbourg L'Homme A Tete De Chou Other 3538944 221 18 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 18.mp3 Mister Iceberg Serge Gainsbourg L'Homme A Tete De Chou Other 3436544 214 19 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 19.mp3 Sea, Sex and Sun (english) Serge Gainsbourg L'Homme A Tete De Chou Other 3577856 223 20 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 20.mp3 Mister Iceberg (english) Serge Gainsbourg L'Homme A Tete De Chou Other 3323904 207 21 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 21.mp3 Ces petit riens Serge Gainsbourg L'Homme A Tete De Chou Other 2510848 156 22 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 22.mp3 Souviens-toi de m'oublier Serge Gainsbourg L'Homme A Tete De Chou Other 4820992 301 23 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 07 - L'Homme A Tete De Chou - 1976-1981/Track 23.mp3 Sous le soleil exactement (orchestre) Serge Gainsbourg Anna Other 2015232 125 1 2002-02-26 01:24:07-08 2002-02-26 01:24:07-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 01.mp3 Sous le soleil exactement Serge Gainsbourg Anna Other 3387392 211 2 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 02.mp3 C'est la cristallisation comme dit Stendhal Serge Gainsbourg Anna Other 2041856 127 3 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 03.mp3 pas mal pas mal du tout Serge Gainsbourg Anna Other 1814528 113 4 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 04.mp3 J'etais fait pour les sympathies Serge Gainsbourg Anna Other 3301376 206 5 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 05.mp3 Photographes et religieuses Serge Gainsbourg Anna Other 1550336 96 6 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 06.mp3 Rien rien j'disais a comme a Serge Gainsbourg Anna Other 1212426 75 7 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 07.mp3 Un jour comme un autre Serge Gainsbourg Anna Other 1232898 77 8 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 08.mp3 Boomerang Serge Gainsbourg Anna Other 2850816 178 9 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 09.mp3 Un poison violent, c'est ca l'amour Serge Gainsbourg Anna Other 2492416 155 10 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 10.mp3 De plus en plus, de moins en moins Serge Gainsbourg Anna Other 2326528 145 11 2002-02-26 01:24:08-08 2002-02-26 01:24:08-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 11.mp3 Roller girl Serge Gainsbourg Anna Other 2338816 146 12 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 12.mp3 Ne dis rien Serge Gainsbourg Anna Other 3217408 201 13 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 13.mp3 Pistolet Jo Serge Gainsbourg Anna Other 2037760 127 14 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 14.mp3 G.I. Jo Serge Gainsbourg Anna Other 2074624 129 15 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 15.mp3 Je n'avais qu'un seul mot a lui dire Serge Gainsbourg Anna Other 2934784 183 16 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 16.mp3 Ballade de Johny Jane Serge Gainsbourg Anna Other 3078188 192 17 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 17.mp3 Le camion jaune Serge Gainsbourg Anna Other 878592 54 18 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 18.mp3 Banco au bord du Styx Serge Gainsbourg Anna Other 1966080 122 19 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 19.mp3 Rock'n roll autour de Johny Serge Gainsbourg Anna Other 1497088 93 20 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 20.mp3 L'abominable strip-tease Serge Gainsbourg Anna Other 1785856 111 21 2002-02-26 01:24:09-08 2002-02-26 01:24:09-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 21.mp3 Joe Banjo Serge Gainsbourg Anna Other 3366912 210 22 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 22.mp3 Je t'aime... Moi non plus Serge Gainsbourg Anna Other 3227648 201 23 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 23.mp3 Je t'aime... Moi non plus au motel Serge Gainsbourg Anna Other 2439168 152 24 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 24.mp3 Je pense queue Serge Gainsbourg Anna Other 3289088 205 25 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 25.mp3 Je vous salue Marie Serge Gainsbourg Anna Other 2598912 162 26 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 26.mp3 La fautive Serge Gainsbourg Anna Other 2951168 184 27 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 27.mp3 Dieu est un fumeur de Havanes Serge Gainsbourg Anna Other 3721216 232 28 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 09 - Anna - 1967-1980/Track 28.mp3 Love On The Beat Serge Gainsbourg Love On The Beat Other 7761920 485 1 2002-02-26 01:24:10-08 2002-02-26 01:24:10-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 01.mp3 Sorry Angel Serge Gainsbourg Love On The Beat Other 3809280 238 2 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 02.mp3 Hmm hmm hmm Serge Gainsbourg Love On The Beat Other 2725888 170 3 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 03.mp3 Kiss me hardy Serge Gainsbourg Love On The Beat Other 4261888 266 4 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 04.mp3 No comment Serge Gainsbourg Love On The Beat Other 4954112 309 5 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 05.mp3 I'm the boy Serge Gainsbourg Love On The Beat Other 4304896 269 6 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 06.mp3 Harley David son of a bitch Serge Gainsbourg Love On The Beat Other 2906112 181 7 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 07.mp3 Lemon incest Serge Gainsbourg Love On The Beat Other 5013504 313 1 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/Vol. 10 - Love On The Beat/Track 08.mp3 You're Under Arrest Serge Gainsbourg You're Under Arrest Other 4059136 253 1 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 01.mp3 Five easy pisseuse Serge Gainsbourg You're Under Arrest Other 3336192 208 2 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 02.mp3 Baille baille Samantha Serge Gainsbourg You're Under Arrest Other 3278848 204 3 2002-02-26 01:24:11-08 2002-02-26 01:24:11-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 03.mp3 Suck baby suck Serge Gainsbourg You're Under Arrest Other 3633152 227 4 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 04.mp3 Gloomy sunday Serge Gainsbourg You're Under Arrest Other 3594240 224 5 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 05.mp3 Au enfants de la chance Serge Gainsbourg You're Under Arrest Other 3960832 247 6 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 06.mp3 Shotgun Serge Gainsbourg You're Under Arrest Other 3868672 241 7 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 07.mp3 Glass securit Serge Gainsbourg You're Under Arrest Other 3500032 218 8 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 08.mp3 Dispatch box Serge Gainsbourg You're Under Arrest Other 2777088 173 9 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 09.mp3 Mon legionnaire Serge Gainsbourg You're Under Arrest Other 5380096 336 10 2002-02-26 01:24:12-08 2002-02-26 01:24:12-08 128 44100 MPEG AUDIO FILE MP3037/Serge Gainsbourg/You're Under Arrest/Track 10.mp3 I'm Not In Love 10cc The One & Only Love Album Rock 5761982 360 3 2002-02-26 01:24:14-08 2002-02-26 01:24:14-08 128 44100 MPEG AUDIO FILE MP3017/10CC/THEONEON/IMNOTINL.MP3 Good Morning Judge 10cc The Very Best Of 10cc Rock 2750997 171 0 2002-02-26 01:24:14-08 2002-02-26 01:24:14-08 128 44100 MPEG AUDIO FILE MP3017/10CC/THEVERYB/GOODMORN.MP3 Kryptonite 3 Doors Down The Better Life Rock 3742389 233 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/3DOORSDO/THEBETTE/KRYPTONI.MP3 Who's On First Abbott And Costello N/A Comedy 5896110 368 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ABBOTTAN/UNKNOWNA/WHOSONFI.MP3 All Screwed Up AC/DC Stiff Upper Lip Metal 4417808 276 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/ALLSCREW.MP3 Can't Stand Still AC/DC Stiff Upper Lip Metal 3498301 218 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/CANTSTAN.MP3 Can't Stop Rock n Roll AC/DC Stiff Upper Lip Metal 3856079 241 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/CANTSTOP.MP3 Come And Get It AC/DC Stiff Upper Lip Metal 3871955 241 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/COMEANDG.MP3 Damned AC/DC Stiff Upper Lip Metal 3699747 231 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/DAMNED.MP3 Give It Up AC/DC Stiff Upper Lip Metal 3726222 232 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/GIVEITUP.MP3 Hold Me Back AC/DC Stiff Upper Lip Metal 3808004 238 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/HOLDMEBA.MP3 House Of Jazz AC/DC Stiff Upper Lip Metal 3777494 236 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/HOUSEOFJ.MP3 Meltdown AC/DC Stiff Upper Lip Metal 3535073 220 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/MELTDOWN.MP3 Safe In New York City AC/DC Stiff Upper Lip Metal 3796450 237 0 2002-02-26 01:24:15-08 2002-02-26 01:24:15-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/SAFEINNE.MP3 Satellite Blues AC/DC Stiff Upper Lip Metal 3610312 225 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/SATELLIT.MP3 Stiff Upper Lip AC/DC Stiff Upper Lip Metal 3430172 214 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ACDC/STIFFUPP/STIFFUPP.MP3 Stanger On The Shore Acker Bilk Stranger On The Shore Jazz 2774956 173 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ACKERBIL/STRANGER/STANGERO.MP3 Halo Of Flies Alice Cooper N/A Metal 7995658 499 1 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ALICECOO/UNKNOWNA/HALOOFFL.MP3 Time To Say Goodbye/Con Te Par Andrea Bocelli Romanza Classical 3952646 247 15 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANDREABO/ROMANZA/TIMETOSA.MP3 Flute Concerto in G minor, 3rd Antonio Vivaldi N/A Classical 1320876 82 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECO1.MP3 Flute Concerto in G minor, 4th Antonio Vivaldi N/A Classical 919913 57 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECO2.MP3 Flute Concerto in G minor, 1st Antonio Vivaldi N/A Classical 2247909 140 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECO3.MP3 Flute Concerto in G minor, 2nd Antonio Vivaldi N/A Classical 833536 52 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/ANTONIOV/UNKNOWNA/FLUTECON.MP3 The Jobbie Weecha !!! Billy Connolly Classic Connolly Comedy 7788335 973 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 64 22050 MPEG AUDIO FILE MP3017/BILLYCON/CLASSICC/THEJOBBI.MP3 The Short Haired Police Cadet Billy Connolly Classic Connolly Comedy 1522705 190 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 64 22050 MPEG AUDIO FILE MP3017/BILLYCON/CLASSICC/THESHORT.MP3 Rebel Yell Billy Idol N/A Rock 4601271 287 0 2002-02-26 01:24:16-08 2002-02-26 01:24:16-08 128 44100 MPEG AUDIO FILE MP3017/BILLYIDO/UNKNOWNA/REBELYEL.MP3 White Christmas Bing Crosby White christmas Other 2975857 185 0 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/BINGCROS/WHITECHR/WHITECHR.MP3 The Man In Me Bob Dylan New Morning Folk 2991313 186 0 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/BOBDYLAN/NEWMORNI/THEMANIN.MP3 Virginia Plain Bryan Ferry Street Life - 20 Great Hits Rock 2849781 178 1 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/BRYANFER/STREETLI/VIRGINIA.MP3 Africa Bamba Carlos Santana Supernatural Latin 4525228 282 4 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/AFRICABA.MP3 Corazon Espinado (featuring Mana) Carlos Santana Supernatural Latin 4417833 276 8 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/CORAZONE.MP3 Da Le Valeo Carlos Santana Supernatural Latin 5655806 353 1 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/DALEVALE.MP3 Do You Like The Way (featuring Lauryn Hill & Cee-Lo) Carlos Santana Supernatural Latin 5678416 354 6 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/DOYOULIK.MP3 El Farol Carlos Santana Supernatural Latin 4658552 291 10 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/ELFAROL.MP3 Love Of My Life (Featuring Dave Matthew) Carlos Santana Supernatural Latin 5565138 347 2 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/LOVEOFMY.MP3 Maria Maria Carlos Santana Supernatural Latin 4202144 262 7 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/MARIAMAR.MP3 Primavera Carlos Santana Supernatural Latin 6056349 378 11 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/PRIMAVER.MP3 Put Your Lights On (Featuring Everlast) Carlos Santana Supernatural Latin 4562871 285 3 2002-02-26 01:24:17-08 2002-02-26 01:24:17-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/PUTYOURL.MP3 Smooth (Featuring Rob Thomas) Carlos Santana Supernatural Latin 4770585 298 5 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/SMOOTHFE.MP3 The Calling (Featuring Eric Clapton) Carlos Santana Supernatural Latin 11961997 747 12 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/THECALLI.MP3 Wishing It Was (featuring Egle-Eye Cherry) Carlos Santana Supernatural Latin 4683804 292 9 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/SUPERNAT/WISHINGI.MP3 Oye Como Va Carlos Santana N/A Latin 3678906 229 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLOSSA/UNKNOWNA/OYECOMOV.MP3 Blue Suede Shoes Carl Perkin Only Rock 'N Roll 1955-1959 Rock 2154569 134 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CARLPERK/ONLYROCK/BLUESUED.MP3 Maybellene Chuck Berry Only Rock 'N Roll 1955-1959 Oldies 2216003 138 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CHUCKBER/ONLYROCK/MAYBELLE.MP3 Blackstairs Clannad Macalla New Age 4078556 254 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/BLACKSTA.MP3 Buachaill On Eirne Clannad Macalla New Age 3046901 190 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/BUACHAIL.MP3 Caislean Oir Clannad Macalla New Age 2057168 128 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/CAISLEAN.MP3 Closer to Your Heart Clannad Macalla New Age 3385031 211 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/CLOSERTO.MP3 Indoor Clannad Macalla New Age 3799215 237 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/INDOOR.MP3 Journey's End Clannad Macalla New Age 2576692 161 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/JOURNEYS.MP3 Most Seems (Too Late to Turn) Clannad Macalla New Age 4677788 292 0 2002-02-26 01:24:18-08 2002-02-26 01:24:18-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/MOSTSEEM.MP3 Northern Skyline Clannad Macalla New Age 4850530 303 0 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/NORTHERN.MP3 The Wild Cry Clannad Macalla New Age 4548203 284 0 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CLANNAD/MACALLA/THEWILDC.MP3 Androgynous Crash Test Dummies Ladies and Gentlemen, would you please welcome the ... (Live) Rock 2508338 156 0 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CRASHTES/LADIESAN/ANDROGYN.MP3 Are You Ready Creed Human Clay Rock 4594181 287 1 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/AREYOURE.MP3 Beautiful Creed Human Clay Rock 4187921 261 3 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/BEAUTIFU.MP3 Faceless Man Creed Human Clay Rock 5777004 361 6 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/FACELESS.MP3 Higher Creed Human Clay Rock 5101716 318 9 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/HIGHER.MP3 Inside Us All Creed Human Clay Rock 5610380 350 11 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/INSIDEUS.MP3 Never Die Creed Human Clay Rock 4694209 293 7 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/NEVERDIE.MP3 Say I Creed Human Clay Rock 5082071 317 4 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/SAYI.MP3 Wash Away Those Years Creed Human Clay Rock 5861024 366 10 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WASHAWAY.MP3 What If Creed Human Clay Rock 5123729 320 2 2002-02-26 01:24:19-08 2002-02-26 01:24:19-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WHATIF.MP3 With Arms Wide Open Creed Human Clay Rock 4428257 276 8 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WITHARMS.MP3 Wrong Way Creed Human Clay Rock 4183323 261 5 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/CREED/HUMANCLA/WRONGWAY.MP3 All Lovers Are Deranged David Gilmour About Face Rock 3125118 195 6 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/ALLLOVER.MP3 Blue Light David Gilmour About Face Rock 4421196 276 4 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/BLUELIGH.MP3 Cruise David Gilmour About Face Rock 4477616 279 8 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/CRUISE.MP3 Let's Get Metaphysical David Gilmour About Face Rock 3987366 249 9 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/LETSGETM.MP3 Love On The Air David Gilmour About Face Rock 4155101 259 3 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/LOVEONTH.MP3 Murder David Gilmour About Face Rock 4784956 299 2 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/MURDER.MP3 Near The End David Gilmour About Face Rock 5360353 335 10 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/NEARTHEE.MP3 Out Of The Blue David Gilmour About Face Rock 3475778 217 5 2002-02-26 01:24:20-08 2002-02-26 01:24:20-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/OUTOFTHE.MP3 Until We Sleep David Gilmour About Face Rock 4996033 312 1 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/UNTILWES.MP3 You Know I'm Right David Gilmour About Face Rock 4855045 303 7 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DAVIDGIL/ABOUTFAC/YOUKNOWI.MP3 A Teenager In Love Dion Rock-N-Roll's Greatest Hits Of Oldies 2388764 149 0 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DION/ROCKNROL/ATEENAGE.MP3 Sultans Of Swing Dire Straits Tunnel of Love Rock 5361139 335 0 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/DIRESTRA/TUNNELOF/SULTANSO.MP3 Between Mind and heart Enigma The Screen Behind The Mirror New Age 3995845 249 10 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/BETWEENM.MP3 Camera Obscura Enigma The Screen Behind The Mirror New Age 1407263 87 9 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/CAMERAOB.MP3 Endless Quest Enigma The Screen Behind The Mirror New Age 2980460 186 8 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/ENDLESSQ.MP3 Gravity Love Enigma The Screen Behind The Mirror New Age 3821811 238 3 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/GRAVITYL.MP3 Modern Crusaders Enigma The Screen Behind The Mirror New Age 3689461 230 5 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/MODERNCR.MP3 Push The Limits Enigma The Screen Behind The Mirror New Age 6192059 387 2 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/PUSHTHEL.MP3 Slence Must Be Heard Enigma The Screen Behind The Mirror New Age 5110805 319 11 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/SLENCEMU.MP3 Smell of Desire Enigma The Screen Behind The Mirror New Age 4757346 297 4 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/SMELLOFD.MP3 The Gate Enigma The Screen Behind The Mirror New Age 1990450 124 1 2002-02-26 01:24:21-08 2002-02-26 01:24:21-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/THEGATE.MP3 The Screen Behind The Mirror Enigma The Screen Behind The Mirror New Age 3821827 238 7 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/THESCREE.MP3 Traces (Light and Weight) Enigma The Screen Behind The Mirror New Age 4026345 251 6 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/THESCREE/TRACESLI.MP3 TR655E~1 Enigma N/A New Age 5529541 345 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR655E1.MP3 TR7C78~1 Enigma N/A New Age 4683174 292 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR7C781.MP3 TR97BF~1 Enigma N/A New Age 3149265 196 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR97BF1.MP3 TR9E81~1 Enigma N/A New Age 7007584 437 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TR9E811.MP3 TRACK0~1 Enigma N/A New Age 4548731 284 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK01.MP3 TRACK0~2 Enigma N/A New Age 4494675 280 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK02.MP3 TRACK0~3 Enigma N/A New Age 4623964 288 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK03.MP3 TRACK0~4 Enigma N/A New Age 7836397 489 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK04.MP3 TRACK1~1 Enigma N/A New Age 11483785 717 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK11.MP3 TRACK1~2 Enigma N/A New Age 5144741 321 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRACK12.MP3 TRE55D~1 Enigma N/A New Age 3133800 195 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/ENIGMA/UNKNOWNA/TRE55D1.MP3 Twenty Four Hours From Tulsa Gene Pitney Anthology Rock 2838773 177 0 2002-02-26 01:24:22-08 2002-02-26 01:24:22-08 128 44100 MPEG AUDIO FILE MP3017/GENEPITN/ANTHOLOG/TWENTYFO.MP3 Abacab Genesis Abacab Pop 6778426 423 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/ABACAB.MP3 a. Dodo - b. Lurker Genesis Abacab Pop 7224819 451 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/ADODOBLU.MP3 Another Record Genesis Abacab Pop 4293249 268 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/ANOTHERR.MP3 Keep it dark Genesis Abacab Pop 4364718 272 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/KEEPITDA.MP3 Like it or not Genesis Abacab Pop 4778640 298 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/LIKEITOR.MP3 Man on the Corner Genesis Abacab Pop 4282803 267 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/MANONTHE.MP3 Me and Sarah Jane Genesis Abacab Pop 5798879 362 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/MEANDSAR.MP3 No Reply at all Genesis Abacab Pop 4495541 280 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/NOREPLYA.MP3 Who dunnit Genesis Abacab Pop 3269804 204 0 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ABACAB/WHODUNNI.MP3 09 Watcher Of The Skies Genesis Archive 1967-75 (Disc 3) Rock 3553208 222 9 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/ARCHIVE1/09WATCHE.MP3 Get 'em Out By Friday Genesis Live Rock 8960782 560 2 2002-02-26 01:24:23-08 2002-02-26 01:24:23-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/GETEMOUT.MP3 The Knife Genesis Live Rock 9412401 588 5 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/THEKNIFE.MP3 The Musical Box Genesis Live Rock 10546470 659 4 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/THEMUSIC.MP3 The Return Of The Giant Hogweed Genesis Live Rock 7970883 498 3 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/THERETUR.MP3 Watcher Of The Skies Genesis Live Rock 8245053 515 1 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/LIVE/WATCHERO.MP3 For absent Friends Genesis Nursery Cryme Rock 1712359 107 2 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/FORABSEN.MP3 Harlequin Genesis Nursery Cryme Rock 2829138 176 6 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/HARLEQUI.MP3 Harold the Barrel Genesis Nursery Cryme Rock 2896019 181 5 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/HAROLDTH.MP3 Seven Stones Genesis Nursery Cryme Rock 4987481 311 4 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/SEVENSTO.MP3 The Fountain of Salmacis Genesis Nursery Cryme Rock 7595139 474 7 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/THEFOUNT.MP3 The Musical Box Genesis Nursery Cryme Rock 10062482 628 1 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/THEMUSIC.MP3 The Return of the Giant Hogweed Genesis Nursery Cryme Rock 7880194 492 3 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENESIS/NURSERYC/THERETUR.MP3 Be-Bop-A-Lula Gene Vincent And His Blue Caps Rock-N-Roll's Greatest Hits Of Oldies 2472237 154 0 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GENEVINC/ROCKNROL/BEBOPALU.MP3 As Wise As A Serpent Gerry Rafferty The Best of Gerry Rafferty Pop 3984837 249 8 2002-02-26 01:24:24-08 2002-02-26 01:24:24-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/ASWISEAS.MP3 Baker Street Gerry Rafferty The Best of Gerry Rafferty Pop 6234284 389 1 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/BAKERSTR.MP3 Bring It All Home Gerry Rafferty The Best of Gerry Rafferty Pop 5039763 314 11 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/BRINGITA.MP3 Can I Have My Money Back? Gerry Rafferty The Best of Gerry Rafferty Pop 3250489 203 15 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/CANIHAVE.MP3 Days Gone Down Gerry Rafferty The Best of Gerry Rafferty Pop 6371934 398 2 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/DAYSGONE.MP3 Get It Right Next Time Gerry Rafferty The Best of Gerry Rafferty Pop 4270724 266 10 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/GETITRIG.MP3 Night Owl Gerry Rafferty The Best of Gerry Rafferty Pop 4958252 309 6 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/NIGHTOWL.MP3 On The Way Gerry Rafferty The Best of Gerry Rafferty Pop 5263782 328 12 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/ONTHEWAY.MP3 Right Down The Light Gerry Rafferty The Best of Gerry Rafferty Pop 4513695 282 5 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/RIGHTDOW.MP3 Sleepwalking Gerry Rafferty The Best of Gerry Rafferty Pop 4316270 269 4 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/SLEEPWAL.MP3 Take The Money and Run Gerry Rafferty The Best of Gerry Rafferty Pop 5038514 314 14 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/TAKETHEM.MP3 The Ark Gerry Rafferty The Best of Gerry Rafferty Pop 3734466 233 9 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/THEARK.MP3 The Royal Mile Gerry Rafferty The Best of Gerry Rafferty Pop 4382728 273 3 2002-02-26 01:24:25-08 2002-02-26 01:24:25-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/THEROYAL.MP3 Wastin' Away Gerry Rafferty The Best of Gerry Rafferty Pop 3997507 249 7 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/WASTINAW.MP3 Whatever's Written In Your Hea Gerry Rafferty The Best of Gerry Rafferty Pop 5724115 357 13 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3017/GERRYRAF/THEBESTO/WHATEVER.MP3 Policeman's Lot Grimms Rockin' Duck Other 3219241 201 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3017/GRIMMS/ROCKINDU/POLICEMA.MP3 01ALLE~1 Franz Schubert N/A Classical 6139073 383 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/01ALLE1.MP3 02ANDA~1 Franz Schubert N/A Classical 7450907 465 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/02ANDA1.MP3 03MENU~1 Franz Schubert N/A Classical 5151714 321 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/03MENU1.MP3 04ALLE~1 Franz Schubert N/A Classical 7402005 462 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/FRANZSCH/UNKNOWNA/04ALLE1.MP3 N/A Gershwin N/A Classical 15521266 970 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/GERSHWIN/UNKNOWNA/NA.MP3 N/A Gershwin N/A Classical 16847450 1052 0 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/GERSHWIN/UNKNOWNA/NA2.MP3 Assault & Battery Hawkwind 25 Years On 1973-1977 Rock 5529310 345 3 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/ASSAULTB.MP3 brainsrorm Hawkwind 25 Years On 1973-1977 Rock 11083055 692 4 2002-02-26 01:24:26-08 2002-02-26 01:24:26-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/BRAINSRO.MP3 lord of light Hawkwind 25 Years On 1973-1977 Rock 6732888 420 6 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/LORDOFLI.MP3 Magnu Hawkwind 25 Years On 1973-1977 Rock 7890626 493 5 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/MAGNU.MP3 master of the universe Hawkwind 25 Years On 1973-1977 Rock 6023203 376 9 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/MASTEROF.MP3 Orgone Accumulator (Live) Hawkwind 25 Years On 1973-1977 Rock 9498117 593 1 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/ORGONEAC.MP3 Psychedelic Warlords Hawkwind 25 Years On 1973-1977 Rock 7007076 437 6 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/PSYCHEDE.MP3 Quark, Strangeness And Charm Hawkwind 25 Years On 1973-1977 Rock 3568954 223 12 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/QUARKSTR.MP3 silver machine Hawkwind 25 Years On 1973-1977 Rock 4469363 279 3 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/SILVERMA.MP3 Sonic Attack (Live) Hawkwind 25 Years On 1973-1977 Rock 2626865 164 2 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/SONICATT.MP3 space is deep Hawkwind 25 Years On 1973-1977 Rock 6090207 380 5 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/SPACEISD.MP3 The Golden Void Hawkwind 25 Years On 1973-1977 Rock 4198805 262 4 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/THEGOLDE.MP3 Wind of Change Hawkwind 25 Years On 1973-1977 Rock 4388975 274 7 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/HAWKWIND/25YEARSO/WINDOFCH.MP3 All Awake I Mother Earth Blue Green Orange Rock 5971368 373 0 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/ALLAWAKE.MP3 Autumn on Drugs I Mother Earth Blue Green Orange Rock 6419566 401 0 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/AUTUMNON.MP3 Cloud Pump I Mother Earth Blue Green Orange Rock 5492806 343 0 2002-02-26 01:24:27-08 2002-02-26 01:24:27-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/CLOUDPUM.MP3 Gargantua I Mother Earth Blue Green Orange Rock 4429935 276 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/GARGANTU.MP3 Good for Sule I Mother Earth Blue Green Orange Rock 5368675 335 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/GOODFORS.MP3 Infinity Machine I Mother Earth Blue Green Orange Rock 5225736 326 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/INFINITY.MP3 Love Your Starfish I Mother Earth Blue Green Orange Rock 5720601 357 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/LOVEYOUR.MP3 Summertime in the Void I Mother Earth Blue Green Orange Rock 6832934 427 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/SUMMERTI.MP3 When did you get Back from Mar I Mother Earth Blue Green Orange Rock 4855856 303 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/BLUEGREE/WHENDIDY.MP3 And The Experience I Mother Earth Dig Rock 5672522 354 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/ANDTHEEX.MP3 Basketball I Mother Earth Dig Rock 4995420 312 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/BASKETBA.MP3 Levitate I Mother Earth Dig Rock 4757322 297 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/LEVITATE.MP3 Lost My America I Mother Earth Dig Rock 6235092 389 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/LOSTMYAM.MP3 No One I Mother Earth Dig Rock 6660565 416 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/NOONE.MP3 Not Quite Sonic I Mother Earth Dig Rock 5679206 354 0 2002-02-26 01:24:28-08 2002-02-26 01:24:28-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/NOTQUITE.MP3 Production I Mother Earth Dig Rock 3836002 239 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/PRODUCTI.MP3 Rain Will Fall I Mother Earth Dig Rock 5094481 318 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/RAINWILL.MP3 So Gently We Go I Mother Earth Dig Rock 6793207 424 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/SOGENTLY.MP3 The Mothers I Mother Earth Dig Rock 2467605 154 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/THEMOTHE.MP3 The Universe in You I Mother Earth Dig Rock 7955973 497 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/THEUNIVE.MP3 Undone I Mother Earth Dig Rock 4904441 306 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/DIG/UNDONE.MP3 Another Sunday I Mother Earth Scenery & Fish Rock 3917659 244 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/ANOTHERS.MP3 Earth, Sky & C. I Mother Earth Scenery & Fish Rock 6822753 426 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/EARTHSKY.MP3 Like A Girl I Mother Earth Scenery & Fish Rock 4477163 279 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/LIKEAGIR.MP3 One More Astronaut I Mother Earth Scenery & Fish Rock 5189094 324 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/ONEMOREA.MP3 Pisser I Mother Earth Scenery & Fish Rock 4799405 299 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/PISSER.MP3 Raspberry I Mother Earth Scenery & Fish Rock 5513700 344 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/RASPBERR.MP3 Sense of Henry I Mother Earth Scenery & Fish Rock 5064817 316 0 2002-02-26 01:24:29-08 2002-02-26 01:24:29-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/SENSEOFH.MP3 Shortcut to Moncton I Mother Earth Scenery & Fish Rock 7621477 476 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/SHORTCUT.MP3 Songburst & Delerium I Mother Earth Scenery & Fish Rock 5695105 355 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/SONGBURS.MP3 Three Days Old I Mother Earth Scenery & Fish Rock 5558008 347 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/THREEDAY.MP3 Used to be Alright I Mother Earth Scenery & Fish Rock 5244125 327 0 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/IMOTHERE/SCENERYF/USEDTOBE.MP3 Equinoxe Part 2 Jean-Michel Jarre Equinoxe New Age 4805715 300 2 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX1.MP3 Equinoxe Part 3 Jean-Michel Jarre Equinoxe New Age 4959070 309 3 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX2.MP3 Equinoxe Part 4 Jean-Michel Jarre Equinoxe New Age 6704189 419 4 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX3.MP3 Equinoxe Part 5 Jean-Michel Jarre Equinoxe New Age 3760297 235 5 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX4.MP3 Equinoxe Part 6 Jean-Michel Jarre Equinoxe New Age 3340037 208 6 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX5.MP3 Equinoxe Part 7 Jean-Michel Jarre Equinoxe New Age 6816898 426 7 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX6.MP3 Equinoxe Part 8 Jean-Michel Jarre Equinoxe New Age 4753434 297 8 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOX7.MP3 Equinoxe Part 1 Jean-Michel Jarre Equinoxe New Age 2333870 145 1 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/EQUINOXE/EQUINOXE.MP3 Oxygene Part II Jean-Michel Jarre Oxygene New Age 10480307 655 2 2002-02-26 01:24:30-08 2002-02-26 01:24:30-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE1.MP3 Oxygene Part III Jean-Michel Jarre Oxygene New Age 3420981 213 3 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE2.MP3 Oxygene Part IV Jean-Michel Jarre Oxygene New Age 3800487 237 4 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE3.MP3 Oxygene Part V Jean-Michel Jarre Oxygene New Age 7375429 460 5 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE4.MP3 Oxygene Part VI Jean-Michel Jarre Oxygene New Age 5800003 362 6 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENE5.MP3 Oxygene Part I Jean-Michel Jarre Oxygene New Age 2786099 174 1 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE/OXYGENEP.MP3 Oxygene 10 Jean-Michel Jarre Oxygene 7-13 New Age 4099885 256 4 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE1.MP3 Oxygene 11 Jean-Michel Jarre Oxygene 7-13 New Age 291443 18 5 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE2.MP3 Oxygene 13 Jean-Michel Jarre Oxygene 7-13 New Age 4503912 281 7 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE3.MP3 Oxygene 7 Jean-Michel Jarre Oxygene 7-13 New Age 7359823 459 1 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE7.MP3 Oxygene 8 Jean-Michel Jarre Oxygene 7-13 New Age 7756468 484 2 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE8.MP3 Oxygene 9 Jean-Michel Jarre Oxygene 7-13 New Age 2846285 177 3 2002-02-26 01:24:31-08 2002-02-26 01:24:31-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/OXYGENE7/OXYGENE9.MP3 Blah Blah Cafe Jean-Michel Jarre Zoolook New Age 3213671 200 6 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/BLAHBLAH.MP3 Diva Jean-Michel Jarre Zoolook New Age 7246687 452 2 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/DIVA.MP3 Ethnicolor Jean-Michel Jarre Zoolook New Age 11202952 700 1 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ETHNICO1.MP3 Ethnicolor II Jean-Michel Jarre Zoolook New Age 3716057 232 7 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ETHNICOL.MP3 Woolloomooloo Jean-Michel Jarre Zoolook New Age 3172292 198 4 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/WOOLLOOM.MP3 Zoolookologie Jean-Michel Jarre Zoolook New Age 3563084 222 3 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ZOOLOOKO.MP3 Zoolook (Remix) Jean-Michel Jarre Zoolook New Age 3691121 230 5 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JEANMICH/ZOOLOOK/ZOOLOOKR.MP3 Great Balls Of Fire Jerry Lee Lewis Only Rock 'N Roll 1955-1959 Oldies 1774373 110 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JERRYLEE/ONLYROCK/GREATBAL.MP3 Concerto for Oboe..., 2nd Johann Sebastian Bach BWV 1053 Classical 4075938 254 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1053/CONCERT1.MP3 Concerto for Oboe..., 3rd Johann Sebastian Bach BWV 1053 Classical 6111655 381 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1053/CONCERT2.MP3 Concerto for Oboe..., 1st Johann Sebastian Bach BWV 1053 Classical 7588883 474 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1053/CONCERTO.MP3 Concerto for Oboe..., 2nd Johann Sebastian Bach BWV 1055 Classical 5025262 314 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1055/CONCERT1.MP3 Concerto for Oboe..., 3rd Johann Sebastian Bach BWV 1055 Classical 4309159 269 0 2002-02-26 01:24:32-08 2002-02-26 01:24:32-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1055/CONCERT2.MP3 Concerto for Oboe..., 1st Johann Sebastian Bach BWV 1055 Classical 4183771 261 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1055/CONCERTO.MP3 Concerto for Oboe in Gmin 2nd Johann Sebastian Bach BWV 1056 Classical 2689572 168 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1056/CONCERT1.MP3 Concerto for Oboe in Gmin 3rd Johann Sebastian Bach BWV 1056 Classical 3321944 207 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1056/CONCERT2.MP3 Concerto for Oboe in Gmin 1st Johann Sebastian Bach BWV 1056 Classical 3035642 189 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1056/CONCERTO.MP3 Concerto for Oboe in Dmin 2nd Johann Sebastian Bach BWV 1059 Classical 4005725 250 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1059/CONCERT1.MP3 Concerto for Oboe in Dmin 3rd Johann Sebastian Bach BWV 1059 Classical 3154900 197 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1059/CONCERT2.MP3 Concerto for Oboe in Dmin 1st Johann Sebastian Bach BWV 1059 Classical 5626152 351 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHANNSE/BWV1059/CONCERTO.MP3 Willie And The Hand Jive Johnny Otis Show Rock-N-Roll's Greatest Hits Of Oldies 2472234 154 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/JOHNNYOT/ROCKNROL/WILLIEAN.MP3 Stranger in a Familiar Land Laurie Z. Roots Other 5000032 312 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/LAURIEZ/ROOTS/STRANGER.MP3 Take a Look Around (theme from MI2) Limp Bizkit MI2 Soundtrack Soundtrack 5082378 317 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/LIMPBIZK/MI2SOUND/TAKEALOO.MP3 Does Your Chewing Gum Lose Its Lonnie Donegan And His Skiffle The Greatest Novelty CD Of All Comedy 2401630 150 0 2002-02-26 01:24:33-08 2002-02-26 01:24:33-08 128 44100 MPEG AUDIO FILE MP3018/LONNIEDO/THEGREAT/DOESYOUR.MP3 Going Home (Theme Of the Local Hero) Mark Knopfler Local Hero Soundtrack 4772400 298 14 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MARKKNOP/LOCALHER/GOINGHOM.MP3 A Boy And His Machine Gun Matthew Good Band Beautiful Midnight Rock 4834957 302 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/ABOYANDH.MP3 Born To Kill Matthew Good Band Beautiful Midnight Rock 5477765 342 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/BORNTOKI.MP3 Failing The Rorschach Test Matthew Good Band Beautiful Midnight Rock 4569972 285 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/FAILINGT.MP3 Going All The Way Matthew Good Band Beautiful Midnight Rock 4125673 257 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/GOINGALL.MP3 I Miss New Wave Matthew Good Band Beautiful Midnight Rock 4872981 304 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/IMISSNEW.MP3 Jenni's Song Matthew Good Band Beautiful Midnight Rock 3841178 240 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/JENNISSO.MP3 Let's Get It On Matthew Good Band Beautiful Midnight Rock 4106445 256 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/LETSGETI.MP3 Running For Home Matthew Good Band Beautiful Midnight Rock 4450008 278 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/RUNNINGF.MP3 Suburbia Matthew Good Band Beautiful Midnight Rock 5219462 326 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/SUBURBIA.MP3 The Future Is X-Rated Matthew Good Band Beautiful Midnight Rock 3640008 227 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/BEAUTIFU/THEFUTUR.MP3 Symbolistic White Walls Matthew Good Band Last of The Ghetto Astronauts Rock 4330061 270 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/LASTOFTH/SYMBOLIS.MP3 Enjoy The Silence Matthew Good Band Lo-Fi B-Side Rock 3020572 188 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/LOFIBSID/ENJOYTHE.MP3 Apparitions Matthew Good Band Underdogs Rock 3644612 227 0 2002-02-26 01:24:34-08 2002-02-26 01:24:34-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/UNDERDOG/APPARITI.MP3 Indestructable Matthew Good Band Underdogs Rock 3270943 204 1 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MATTHEWG/UNDERDOG/INDESTRU.MP3 It's A Miracle Men At Work N/A Pop 4375996 273 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MENATWOR/UNKNOWNA/ITSAMIRA.MP3 Moonlight shadow Mike Oldfield Acoustic Moods Folk 3434917 214 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/ACOUSTIC/MOONLIGH.MP3 Amber Light Mike Oldfield The Millennium Bell New Age 3559747 222 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/AMBERLIG.MP3 Broad Sunlit Uplands Mike Oldfield The Millennium Bell New Age 3889108 243 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/BROADSUN.MP3 Lake Constance Mike Oldfield The Millennium Bell New Age 5070254 316 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/LAKECONS.MP3 Liberation Mike Oldfield The Millennium Bell New Age 2537837 158 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/LIBERATI.MP3 Mastermind Mike Oldfield The Millennium Bell New Age 2942421 183 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/MASTERMI.MP3 Pacha Mama Mike Oldfield The Millennium Bell New Age 3933820 245 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/PACHAMAM.MP3 Peace on Earth Mike Oldfield The Millennium Bell New Age 4007802 250 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/PEACEONE.MP3 Santa Maria Mike Oldfield The Millennium Bell New Age 2632714 164 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/SANTAMAR.MP3 Sunlight Shining through Cloud Mike Oldfield The Millennium Bell New Age 4373121 273 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/SUNLIGHT.MP3 The Doge's Palace Mike Oldfield The Millennium Bell New Age 2995091 187 0 2002-02-26 01:24:35-08 2002-02-26 01:24:35-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/THEDOGES.MP3 The Millennium Bell Mike Oldfield The Millennium Bell New Age 7323058 457 0 2002-02-26 01:24:36-08 2002-02-26 01:24:36-08 128 44100 MPEG AUDIO FILE MP3018/MIKEOLDF/THEMILLE/THEMILLE.MP3 Black Mountain Rag Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2577331 161 8 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/BLACKMOU.MP3 Cannonball Rag Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 1214643 75 19 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/CANNONBA.MP3 Earl's Breakdown Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2505721 156 23 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/EARLSBRE.MP3 Flint Hill Special Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2114095 132 21 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/FLINTHIL.MP3 Lonesome Fiddle Blues Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2613559 163 18 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/LONESOME.MP3 Nashville Blues Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 3152719 197 3 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/NASHVILL.MP3 Orange Blossom Special Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2124130 132 24 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/ORANGEBL.MP3 Togary Mountain Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 2377406 148 22 2002-02-26 01:24:38-08 2002-02-26 01:24:38-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/TOGARYMO.MP3 Wabash Cannonball Nitty Gritty Dirt Band Will the Circle Be Unbroken Country 1970316 123 25 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/NITTYGRI/WILLTHEC/WABASHCA.MP3 No More Tears Ozzy Osbourne No More Tears Metal 7111567 444 5 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/NOMORETE/NOMORETE.MP3 Denial Ozzy Osbourne Ozzmosis Metal 5005869 312 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/DENIAL.MP3 Ghost Behind My Eyes Ozzy Osbourne Ozzmosis Metal 4989583 311 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/GHOSTBEH.MP3 I Just Want You Ozzy Osbourne Ozzmosis Metal 4742564 296 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/IJUSTWAN.MP3 My Jekyll Doesn't Hide Ozzy Osbourne Ozzmosis Metal 6317441 394 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/MYJEKYLL.MP3 My Little Man Ozzy Osbourne Ozzmosis Metal 4677779 292 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/MYLITTLE.MP3 Old L.A. Tonight Ozzy Osbourne Ozzmosis Metal 4616062 288 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/OLDLATON.MP3 Perry Mason Ozzy Osbourne Ozzmosis Metal 5663742 353 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/PERRYMAS.MP3 See You On The Other Side Ozzy Osbourne Ozzmosis Metal 5932225 370 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/SEEYOUON.MP3 Thunder Underground Ozzy Osbourne Ozzmosis Metal 6240255 390 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/THUNDERU.MP3 Tomorrow Ozzy Osbourne Ozzmosis Metal 6353789 397 0 2002-02-26 01:24:39-08 2002-02-26 01:24:39-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/OZZMOSIS/TOMORROW.MP3 No More Tears Ozzy Osbourne N/A Metal 7101218 443 0 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/OZZYOSBO/UNKNOWNA/NOMORETE.MP3 Aye Davanita Pearl Jam Vitalogy Grunge 2848785 178 12 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/AYEDAVAN.MP3 Better Man Pearl Jam Vitalogy Grunge 4289488 268 11 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/BETTERMA.MP3 Bugs Pearl Jam Vitalogy Grunge 2632413 164 9 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/BUGS.MP3 Corduroy Pearl Jam Vitalogy Grunge 4435770 277 8 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/CORDUROY.MP3 Hey Foxymophandlemama, That's Me Pearl Jam Vitalogy Grunge 7409980 463 0 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/HEYFOXYM.MP3 Immortality Pearl Jam Vitalogy Grunge 5086954 317 13 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/IMMORTAL.MP3 Last Exit Pearl Jam Vitalogy Grunge 2784833 174 1 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/LASTEXIT.MP3 Not For You Pearl Jam Vitalogy Grunge 5635316 352 3 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/NOTFORYO.MP3 Nothingman Pearl Jam Vitalogy Grunge 4404983 275 5 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/NOTHINGM.MP3 Pry, To Pearl Jam Vitalogy Grunge 1018537 63 7 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/PRYTO.MP3 Satan's Bed Pearl Jam Vitalogy Grunge 3291403 205 10 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/SATANSBE.MP3 Spin The Black Circle Pearl Jam Vitalogy Grunge 2682027 167 2 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/SPINTHEB.MP3 Tremor Christ Pearl Jam Vitalogy Grunge 4034535 252 4 2002-02-26 01:24:40-08 2002-02-26 01:24:40-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/TREMORCH.MP3 Whipping Pearl Jam Vitalogy Grunge 2460636 153 6 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PEARLJAM/VITALOGY/WHIPPING.MP3 A Pillow of Winds Pink Floyd Meddle New Age 4949451 309 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/APILLOWO.MP3 Echoes Pink Floyd Meddle New Age 22471117 1404 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/ECHOES.MP3 Fearless Pink Floyd Meddle New Age 5853069 365 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/FEARLESS.MP3 One of These Days Pink Floyd Meddle New Age 5374655 335 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/ONEOFTHE.MP3 San Tropez Pink Floyd Meddle New Age 3532563 220 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/SANTROPE.MP3 Seamus Pink Floyd Meddle New Age 2119161 132 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/MEDDLE/SEAMUS.MP3 Bring The Boys Back Home Pink Floyd The Wall (disc 2) New Age 1389841 86 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/BRINGTHE.MP3 Comfortably Numb Pink Floyd The Wall (disc 2) New Age 6151918 384 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/COMFORTA.MP3 Hey You Pink Floyd The Wall (disc 2) New Age 4498185 281 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/HEYYOU.MP3 In The Flesh Pink Floyd The Wall (disc 2) New Age 4055850 253 0 2002-02-26 01:24:41-08 2002-02-26 01:24:41-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/INTHEFLE.MP3 Is There Anybody Out There? Pink Floyd The Wall (disc 2) New Age 2844201 177 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/ISTHEREA.MP3 Nobody Home Pink Floyd The Wall (disc 2) New Age 3072113 192 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/NOBODYHO.MP3 Outside The Wall Pink Floyd The Wall (disc 2) New Age 1682682 105 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/OUTSIDET.MP3 Run Like Hell Pink Floyd The Wall (disc 2) New Age 4179147 261 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/RUNLIKEH.MP3 Stop Pink Floyd The Wall (disc 2) New Age 481178 30 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/STOP.MP3 The Show Must Go On Pink Floyd The Wall (disc 2) New Age 1571926 98 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/THESHOWM.MP3 The Trial Pink Floyd The Wall (disc 2) New Age 5108685 319 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/THETRIAL.MP3 Vera Pink Floyd The Wall (disc 2) New Age 1419078 88 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/VERA.MP3 Waiting For The Worms Pink Floyd The Wall (disc 2) New Age 3887421 242 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALL(/WAITINGF.MP3 Another Brick In The Wall (Part II) Pink Floyd The Wall (disc 1) New Age 3869881 241 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ANOTHER1.MP3 Another Brick In The Wall (Part I) Pink Floyd The Wall (disc 1) New Age 3054024 190 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ANOTHER2.MP3 Another Brick In The Wall (Part III) Pink Floyd The Wall (disc 1) New Age 1196198 74 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ANOTHERB.MP3 Don't Leave Me Now Pink Floyd The Wall (disc 1) New Age 4105593 256 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/DONTLEAV.MP3 Empty Spaces Pink Floyd The Wall (disc 1) New Age 2048532 128 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/EMPTYSPA.MP3 Goodbye Blue Sky Pink Floyd The Wall (disc 1) New Age 2710862 169 0 2002-02-26 01:24:42-08 2002-02-26 01:24:42-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/GOODBYEB.MP3 Goodbye Cruel World Pink Floyd The Wall (disc 1) New Age 1238813 77 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/GOODBYEC.MP3 In the Flesh? Pink Floyd The Wall (disc 1) New Age 3189422 199 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/INTHEFLE.MP3 Mother Pink Floyd The Wall (disc 1) New Age 5351099 334 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/MOTHER.MP3 One Of My Turns Pink Floyd The Wall (disc 1) New Age 3445772 215 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/ONEOFMYT.MP3 The Happiest Days Of Our Lives Pink Floyd The Wall (disc 1) New Age 1759816 109 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/THEHAPPI.MP3 The Thin Ice Pink Floyd The Wall (disc 1) New Age 2397946 149 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/THETHINI.MP3 Young Lust Pink Floyd The Wall (disc 1) New Age 3387671 211 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/THEWALLD/YOUNGLUS.MP3 David Gilmour - The Narrow Way Pink Floyd Ummagumma - Studio Album New Age 5717830 357 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/DAVIDGI1.MP3 David Gilmour - The Narrow Way Pink Floyd Ummagumma - Studio Album New Age 3321950 207 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/DAVIDGI2.MP3 David Gilmour - The Narrow Way Pink Floyd Ummagumma - Studio Album New Age 2773309 173 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/DAVIDGIL.MP3 Nick Mason - The Grand Vizier Pink Floyd Ummagumma - Studio Album New Age 621514 38 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/NICKMAS1.MP3 Nick Mason - The Grand Vizier Pink Floyd Ummagumma - Studio Album New Age 961038 60 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/NICKMAS2.MP3 Nick Mason - The Grand Vizier Pink Floyd Ummagumma - Studio Album New Age 6821519 426 0 2002-02-26 01:24:43-08 2002-02-26 01:24:43-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/NICKMASO.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 3362074 210 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARD1.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 1759619 109 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARD2.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 6712155 419 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARD3.MP3 Richard Wright - Sysyphus Part Pink Floyd Ummagumma - Studio Album New Age 1097990 68 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/RICHARDW.MP3 Roger Waters - Grantchester Me Pink Floyd Ummagumma - Studio Album New Age 7143349 446 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/ROGERWAT.MP3 Several Species Of Small Furry Pink Floyd Ummagumma - Studio Album New Age 4799017 299 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/PINKFLOY/UMMAGUMM/SEVERALS.MP3 Disturbance At The Heron House R.E.M. Document Rock 3426837 214 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/DISTURBA.MP3 Exhuming McCarthy R.E.M. Document Rock 3225090 201 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/EXHUMING.MP3 Finest Worksong R.E.M. Document Rock 3685539 230 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/FINESTWO.MP3 Fireplace R.E.M. Document Rock 3271057 204 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/FIREPLAC.MP3 It's The End Of The World As W R.E.M. Document Rock 3951516 246 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/ITSTHEEN.MP3 King Of Birds R.E.M. Document Rock 4006947 250 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/KINGOFBI.MP3 Oddfellows Local 151 R.E.M. Document Rock 5135584 320 0 2002-02-26 01:24:44-08 2002-02-26 01:24:44-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/ODDFELLO.MP3 Strange R.E.M. Document Rock 2453388 153 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/STRANGE.MP3 The One I Love R.E.M. Document Rock 3168105 198 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/THEONEIL.MP3 Welcome To The Occupation R.E.M. Document Rock 2701673 168 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/REM/DOCUMENT/WELCOMET.MP3 Adia Sarah McLachlan Mirrorball Rock 3819426 238 5 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/ADIA.MP3 Building A Mystery Sarah McLachlan Mirrorball Rock 3947613 246 1 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/BUILDING.MP3 Do What You Have To Do Sarah McLachlan Mirrorball Rock 4010729 250 7 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/DOWHATYO.MP3 Fear Sarah McLachlan Mirrorball Rock 4831581 301 9 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/FEAR.MP3 Good Enough Sarah McLachlan Mirrorball Rock 4983866 311 3 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/GOODENOU.MP3 Hold On Sarah McLachlan Mirrorball Rock 5096988 318 3 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/HOLDON.MP3 I Love You Sarah McLachlan Mirrorball Rock 4320563 270 6 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/ILOVEYOU.MP3 I Will Remember You Sarah McLachlan Mirrorball Rock 3575213 223 4 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/IWILLREM.MP3 Possession Sarah McLachlan Mirrorball Rock 5025940 314 10 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/POSSESSI.MP3 The Path Of Thorns (Terms) Sarah McLachlan Mirrorball Rock 5822167 363 8 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/MIRRORBA/THEPATHO.MP3 Fumbling Towards Ecstasy Sarah McLachlan N/A Rock 5568994 348 0 2002-02-26 01:24:45-08 2002-02-26 01:24:45-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/FUMBLING.MP3 Ice Cream Sarah McLachlan N/A Rock 2926920 182 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/ICECREAM.MP3 n/a Sarah McLachlan N/A Rock 4658101 291 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/NA.MP3 n/a Sarah McLachlan N/A Rock 3907446 244 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/NA2.MP3 n/a Sarah McLachlan N/A Rock 4212974 263 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/NA3.MP3 Sweet Surrender Sarah McLachlan N/A Rock 3827628 239 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/SARAHMCL/UNKNOWNA/SWEETSUR.MP3 Artycraft Stanley Unwin Rotatey Diskers With Unwin Comedy 3182464 198 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/ARTYCRAF.MP3 Classicold Musee Stanley Unwin Rotatey Diskers With Unwin Comedy 3363724 210 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/CLASSICO.MP3 Goldyloppers And The Three Bearloaders Stanley Unwin Rotatey Diskers With Unwin Comedy 3604074 225 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/GOLDYLOP.MP3 Hi-De-Fido Stanley Unwin Rotatey Diskers With Unwin Comedy 6688165 418 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/HIDEFIDO.MP3 Olympicold B.C. Stanley Unwin Rotatey Diskers With Unwin Comedy 4562013 285 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/OLYMPICO.MP3 Professor Unwin Meetit The Press And Chattery On The Populode Of The Musicolly Stanley Unwin Rotatey Diskers With Unwin Comedy 6918529 432 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/PROFESS1.MP3 Professor Unwin Answery Most Questions On Manifold Subjy Stanley Unwin Rotatey Diskers With Unwin Comedy 12914548 807 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/PROFESSO.MP3 The Pidey Pipeload of Hamling Stanley Unwin Rotatey Diskers With Unwin Comedy 5270885 329 0 2002-02-26 01:24:46-08 2002-02-26 01:24:46-08 128 44100 MPEG AUDIO FILE MP3019/STANLEYU/ROTATEYD/THEPIDEY.MP3 Roll Over Lay Down (Live 1975) Status Quo Live & Heavy (Import) Rock 5751682 359 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STATUSQU/LIVEHEAV/ROLLOVER.MP3 Babylon Sisters Steely Dan N/A Rock 5612030 350 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/BABYLONS.MP3 Deacon Blues Steely Dan N/A Rock 7306433 456 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/DEACONBL.MP3 Everyone`s Gone To The Movies (Demo) Steely Dan N/A Rock 3794625 237 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/EVERYONE.MP3 F M Steely Dan N/A Rock 4893546 305 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/FM.MP3 Gaucho Steely Dan N/A Rock 5324743 332 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/GAUCHO.MP3 Glamour Profession Steely Dan N/A Rock 7193172 449 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/GLAMOURP.MP3 Hey Nineteen Steely Dan N/A Rock 4918493 307 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/HEYNINET.MP3 Home At Last Steely Dan N/A Rock 5370307 335 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/HOMEATLA.MP3 I Got The News Steely Dan N/A Rock 4911946 306 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/IGOTTHEN.MP3 Josie Steely Dan N/A Rock 4337245 271 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/JOSIE.MP3 My Rival Steely Dan N/A Rock 4350065 271 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/MYRIVAL.MP3 Third World Man Steely Dan N/A Rock 5030509 314 0 2002-02-26 01:24:47-08 2002-02-26 01:24:47-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/THIRDWOR.MP3 Time Out Of Mind Steely Dan N/A Rock 4052626 253 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/STEELYDA/UNKNOWNA/TIMEOUTO.MP3 The Mist Stephen King The Mist Vocal 69052735 4315 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/STEPHENK/THEMIST/THEMIST.MP3 Tom Dooley The Kingston Trio Rock-N-Roll's Greatest Hits Of Oldies 2912332 182 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEKINGS/ROCKNROL/TOMDOOLE.MP3 I'm A Believer The Monkees I'm A Believer Rock 2677839 167 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEMONKE/IMABELIE/IMABELIE.MP3 Last Train To Clarksville The Monkees I'm A Believer Rock 2655698 165 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEMONKE/IMABELIE/LASTTRAI.MP3 The Simpson Spin-off Showcase The Simpsons Go Simpsonic Comedy 3696837 231 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THESIMPS/GOSIMPSO/THESIMPS.MP3 Ava Adore The Smashing Pumpkins Adore Alternative 4175390 260 2 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THESMASH/ADORE/AVAADORE.MP3 Pinball Wizard The Who N/A Rock 2918140 182 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEWHO/UNKNOWNA/PINBALLW.MP3 Baba O'Riley The Who Who's Better, Who's Best Folk 4763191 297 0 2002-02-26 01:24:48-08 2002-02-26 01:24:48-08 128 44100 MPEG AUDIO FILE MP3019/THEWHO/WHOSBETT/BABAORIL.MP3 Beastie Boys Beastie Boys Anthology Disc 1 Hip-Hop 903829 56 1 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/01BEASTI.MP3 Slow And Low Beastie Boys Anthology Disc 1 Hip-Hop 3489323 218 2 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/02SLOWAN.MP3 Shake Your Rump Beastie Boys Anthology Disc 1 Hip-Hop 3183938 198 3 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/03SHAKEY.MP3 Gratitude Beastie Boys Anthology Disc 1 Hip-Hop 2647133 165 4 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/04GRATIT.MP3 Skills To Pay The Bills Beastie Boys Anthology Disc 1 Hip-Hop 3097289 193 5 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/05SKILLS.MP3 Root Down Beastie Boys Anthology Disc 1 Hip-Hop 3404057 212 6 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/06ROOTDO.MP3 Believe Me Beastie Boys Anthology Disc 1 Hip-Hop 1269541 79 7 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/07BELIEV.MP3 Sure Shot Beastie Boys Anthology Disc 1 Hip-Hop 3202322 200 8 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/08SURESH.MP3 Body Movin (Fatbot Slim Remix) Beastie Boys Anthology Disc 1 Hip-Hop 5301333 331 9 2002-02-26 01:24:50-08 2002-02-26 01:24:50-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/09BODYMO.MP3 Boomin' Granny Beastie Boys Anthology Disc 1 Hip-Hop 2212043 138 10 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/10BOOMIN.MP3 Fight For Your Right Beastie Boys Anthology Disc 1 Hip-Hop 3320896 207 11 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/11FIGHTF.MP3 Country Mike's Theme Beastie Boys Anthology Disc 1 Hip-Hop 568776 35 12 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/12COUNTR.MP3 Pass the Mic Beastie Boys Anthology Disc 1 Hip-Hop 4120861 257 13 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/13PASSTH.MP3 Something's Got To Give Beastie Boys Anthology Disc 1 Hip-Hop 3342215 208 14 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/14SOMETH.MP3 Bodhisattva Vow Beastie Boys Anthology Disc 1 Hip-Hop 3077639 192 15 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/15BODHIS.MP3 Sabrosa Beastie Boys Anthology Disc 1 Hip-Hop 3386502 211 16 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/16SABROS.MP3 Song For The Man Beastie Boys Anthology Disc 1 Hip-Hop 3067191 191 17 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/17SONGFO.MP3 Soba Violence Beastie Boys Anthology Disc 1 Hip-Hop 1183168 73 18 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/18SOBAVI.MP3 Alive Beastie Boys Anthology Disc 1 Hip-Hop 3663189 228 19 2002-02-26 01:24:51-08 2002-02-26 01:24:51-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/19ALIVE.MP3 Jimmy James (Original Version) Beastie Boys Anthology Disc 1 Hip-Hop 2969820 185 20 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/20JIMMYJ.MP3 3 MC's and 1 DJ (Live Video Version) Beastie Boys Anthology Disc 1 Hip-Hop 2211370 138 21 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLO1/213MCSAN.MP3 The Biz vs. the Nuge Beastie Boys Anthology Disc 2 Hip-Hop 543606 33 1 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/01THEBIZ.MP3 Sabotage Beastie Boys Anthology Disc 2 Hip-Hop 2875755 179 2 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/02SABOTA.MP3 Shadrach Beastie Boys Anthology Disc 2 Hip-Hop 4000901 250 3 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/03SHADRA.MP3 Brass Monkey Beastie Boys Anthology Disc 2 Hip-Hop 2527182 157 4 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/04BRASSM.MP3 Time For Livin' Beastie Boys Anthology Disc 2 Hip-Hop 1741422 108 5 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/05TIMEFO.MP3 Dub The Mic Beastie Boys Anthology Disc 2 Hip-Hop 2902508 181 6 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/06DUBTHE.MP3 Benny and the Jets Beastie Boys Anthology Disc 2 Hip-Hop 3951379 246 7 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/07BENNYA.MP3 The Negotiation Limerick File Beastie Boys Anthology Disc 2 Hip-Hop 2754568 172 8 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/08THENEG.MP3 I Want Some Beastie Boys Anthology Disc 2 Hip-Hop 1925320 120 9 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/09IWANTS.MP3 She's On It Beastie Boys Anthology Disc 2 Hip-Hop 4133957 258 10 2002-02-26 01:24:52-08 2002-02-26 01:24:52-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/10SHESON.MP3 Son Of Neckbone Beastie Boys Anthology Disc 2 Hip-Hop 3195921 199 11 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/11SONOFN.MP3 Get It Together Beastie Boys Anthology Disc 2 Hip-Hop 3939888 246 12 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/12GETITT.MP3 Twenty Questions Beastie Boys Anthology Disc 2 Hip-Hop 2371707 148 13 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/13TWENTY.MP3 Remote Control Beastie Boys Anthology Disc 2 Hip-Hop 2873256 179 14 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/14REMOTE.MP3 Railroad Blues Beastie Boys Anthology Disc 2 Hip-Hop 2530947 158 15 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/15RAILRO.MP3 Live Wire Beastie Boys Anthology Disc 2 Hip-Hop 2982338 186 16 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/16LIVEWI.MP3 So What'cha Want Beastie Boys Anthology Disc 2 Hip-Hop 3474283 217 17 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/17SOWHAT.MP3 Netty's Girl Beastie Boys Anthology Disc 2 Hip-Hop 2882867 180 18 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/18NETTYS.MP3 Egg Raid On Mojo Beastie Boys Anthology Disc 2 Hip-Hop 1288357 80 19 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/19EGGRAI.MP3 Hey Ladies Beastie Boys Anthology Disc 2 Hip-Hop 3661522 228 20 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/20HEYLAD.MP3 Intergalactic Beastie Boys Anthology Disc 2 Hip-Hop 3368536 210 21 2002-02-26 01:24:53-08 2002-02-26 01:24:53-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ANTHOLOG/21INTERG.MP3 Super Disco Breakin' Beastie Boys Hello Nasty Hip-Hop 2038599 127 1 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/01SUPERD.MP3 The Move Beastie Boys Hello Nasty Hip-Hop 3454632 215 2 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/02THEMOV.MP3 Remote Control Beastie Boys Hello Nasty Hip-Hop 2861972 178 3 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/03REMOTE.MP3 Song for the Man Beastie Boys Hello Nasty Hip-Hop 3094359 193 4 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/04SONGFO.MP3 Just a Test Beastie Boys Hello Nasty Hip-Hop 2121763 132 5 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/05JUSTAT.MP3 Body Movin' Beastie Boys Hello Nasty Hip-Hop 2941381 183 6 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/06BODYMO.MP3 Intergalactic Beastie Boys Hello Nasty Hip-Hop 3704576 231 7 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/07INTERG.MP3 Sneakin' Out the Hospital Beastie Boys Hello Nasty Hip-Hop 2645062 165 8 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/08SNEAKI.MP3 Putting Shame in Your Game Beastie Boys Hello Nasty Hip-Hop 3474712 217 9 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/09PUTTIN.MP3 Flowin' Prose Beastie Boys Hello Nasty Hip-Hop 2554773 159 10 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/10FLOWIN.MP3 And Me Beastie Boys Hello Nasty Hip-Hop 2753296 172 11 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/11ANDME.MP3 Three MC's and One DJ Beastie Boys Hello Nasty Hip-Hop 2726562 170 12 2002-02-26 01:24:54-08 2002-02-26 01:24:54-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/12THREEM.MP3 Can't, Won't, Don't Stop Beastie Boys Hello Nasty Hip-Hop 2901272 181 13 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/13CANTWO.MP3 Song for Junior Beastie Boys Hello Nasty Hip-Hop 3675881 229 14 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/14SONGFO.MP3 I Don't Know Beastie Boys Hello Nasty Hip-Hop 2886213 180 15 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/15IDONTK.MP3 The Negotiation Limerick File Beastie Boys Hello Nasty Hip-Hop 2660531 166 16 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/16THENEG.MP3 Electrify Beastie Boys Hello Nasty Hip-Hop 2280310 142 17 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/17ELECTR.MP3 Picture This Beastie Boys Hello Nasty Hip-Hop 2322944 145 18 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/18PICTUR.MP3 Unite Beastie Boys Hello Nasty Hip-Hop 3389011 211 19 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/19UNITE.MP3 Dedication Beastie Boys Hello Nasty Hip-Hop 2446517 152 20 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/20DEDICA.MP3 Dr. Lee, PhD Beastie Boys Hello Nasty Hip-Hop 4655852 290 21 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/21DRLEEP.MP3 Instant Death Beastie Boys Hello Nasty Hip-Hop 3169591 198 22 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/HELLONAS/22INSTAN.MP3 Sure Shot Beastie Boys Ill Communication Hip-Hop 3195678 199 1 2002-02-26 01:24:55-08 2002-02-26 01:24:55-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/01SURESH.MP3 Tough Guy Beastie Boys Ill Communication Hip-Hop 923884 57 2 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/02TOUGHG.MP3 B-boys Makin With The Freak Freak Beastie Boys Ill Communication Hip-Hop 3470198 216 3 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/03BBOYSM.MP3 Bobo On The Corner Beastie Boys Ill Communication Hip-Hop 1173197 73 4 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/04BOBOON.MP3 Root Down Beastie Boys Ill Communication Hip-Hop 3394857 212 5 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/05ROOTDO.MP3 Sabotage Beastie Boys Ill Communication Hip-Hop 2854660 178 6 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/06SABOTA.MP3 Get It Together Beastie Boys Ill Communication Hip-Hop 3931105 245 7 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/07GETITT.MP3 Sabrosa Beastie Boys Ill Communication Hip-Hop 3352362 209 8 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/08SABROS.MP3 The Update Beastie Boys Ill Communication Hip-Hop 3129453 195 9 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/09THEUPD.MP3 Futterman's Rule Beastie Boys Ill Communication Hip-Hop 3558010 222 10 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/10FUTTER.MP3 Alright Hear This Beastie Boys Ill Communication Hip-Hop 2990841 186 11 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/11ALRIGH.MP3 Eugene's Lament Beastie Boys Ill Communication Hip-Hop 2120507 132 12 2002-02-26 01:24:56-08 2002-02-26 01:24:56-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/12EUGENE.MP3 Flute Loop Beastie Boys Ill Communication Hip-Hop 1836356 114 13 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/13FLUTEL.MP3 Do It Beastie Boys Ill Communication Hip-Hop 3143244 196 14 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/14DOIT.MP3 Ricky's Theme Beastie Boys Ill Communication Hip-Hop 3577651 223 15 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/15RICKYS.MP3 Heart Attack Man Beastie Boys Ill Communication Hip-Hop 2160437 135 16 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/16HEARTA.MP3 The Scoop Beastie Boys Ill Communication Hip-Hop 3459251 216 17 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/17THESCO.MP3 Shambala Beastie Boys Ill Communication Hip-Hop 3535293 220 18 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/18SHAMBA.MP3 Bodhisattva Vow Beastie Boys Ill Communication Hip-Hop 3014523 188 19 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/19BODHIS.MP3 Transitions Beastie Boys Ill Communication Hip-Hop 2431048 151 20 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BEASTIEB/ILLCOMMU/20TRANSI.MP3 No Woman No Cry (Live At The Roxy) Bob Marley Songs of Freedom Three Reggae 5159914 322 1 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/01NOWOMA.MP3 Who The Cap Fit Bob Marley Songs of Freedom Three Reggae 4512895 282 2 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/02WHOTHE.MP3 Jah Live Bob Marley Songs of Freedom Three Reggae 4085038 255 3 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/03JAHLIV.MP3 Crazy Baldheads Bob Marley Songs of Freedom Three Reggae 3043351 190 4 2002-02-26 01:24:57-08 2002-02-26 01:24:57-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/04CRAZYB.MP3 War Bob Marley Songs of Freedom Three Reggae 3471329 216 5 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/05WAR.MP3 Johnny Was Bob Marley Songs of Freedom Three Reggae 3625285 226 6 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/06JOHNNY.MP3 Rat Race Bob Marley Songs of Freedom Three Reggae 2709117 169 7 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/07RATRAC.MP3 Jammin' (12" Mix) Bob Marley Songs of Freedom Three Reggae 5529791 345 8 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/08JAMMIN.MP3 Waiting in Vain (Advert Mix) Bob Marley Songs of Freedom Three Reggae 3831217 239 9 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/09WAITIN.MP3 Exodus (12" Mix) Bob Marley Songs of Freedom Three Reggae 7122216 445 10 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/10EXODUS.MP3 Natural Mystic Bob Marley Songs of Freedom Three Reggae 3330490 208 11 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/11NATURA.MP3 Three Little Birds (Alternate Mix) Bob Marley Songs of Freedom Three Reggae 2831049 176 12 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/12THREEL.MP3 Running Away Bob Marley Songs of Freedom Three Reggae 4066932 254 13 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/13RUNNIN.MP3 Keep On Moving (London Version) Bob Marley Songs of Freedom Three Reggae 5513507 344 14 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/14KEEPON.MP3 Easy Skanking Bob Marley Songs of Freedom Three Reggae 2814867 175 15 2002-02-26 01:24:58-08 2002-02-26 01:24:58-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/15EASYSK.MP3 Is This Love (Horns Mix) Bob Marley Songs of Freedom Three Reggae 3845007 240 16 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/16ISTHIS.MP3 Smile Jamacia Bob Marley Songs of Freedom Three Reggae 3097268 193 17 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/17SMILEJ.MP3 Time Will tell Bob Marley Songs of Freedom Three Reggae 3402797 212 18 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF1/18TIMEWI.MP3 Africa Unite Bob Marley Songs Of Freedom Four Reggae 2790900 174 1 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/01AFRICA.MP3 Survival Bob Marley Songs Of Freedom Four Reggae 3715839 232 2 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/02SURVIV.MP3 One Drop Bob Marley Songs Of Freedom Four Reggae 3710406 231 3 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/03ONEDRO.MP3 One Dub Bob Marley Songs Of Freedom Four Reggae 3736318 233 4 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/04ONEDUB.MP3 Zimbabwe Bob Marley Songs Of Freedom Four Reggae 3643672 227 5 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/05ZIMBAB.MP3 So Much Trouble In The World Bob Marley Songs Of Freedom Four Reggae 3800287 237 6 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/06SOMUCH.MP3 Ride Natty Ride (12" Mix) Bob Marley Songs Of Freedom Four Reggae 6123718 382 7 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/07RIDENA.MP3 Babylon System Bob Marley Songs Of Freedom Four Reggae 4137984 258 8 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/08BABYLO.MP3 Coming In The Cold (12" Mix) Bob Marley Songs Of Freedom Four Reggae 5830314 364 9 2002-02-26 01:24:59-08 2002-02-26 01:24:59-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/09COMING.MP3 Real Situation Bob Marley Songs Of Freedom Four Reggae 3023707 188 10 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/10REALSI.MP3 Bad Card Bob Marley Songs Of Freedom Four Reggae 2695325 168 11 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/11BADCAR.MP3 Could You Be Loved (12" Mix) Bob Marley Songs Of Freedom Four Reggae 5228037 326 12 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/12COULDY.MP3 Forever Loving Jah Bob Marley Songs Of Freedom Four Reggae 3712925 232 13 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/13FOREVE.MP3 Rastaman Live Up Bob Marley Songs Of Freedom Four Reggae 5138163 321 14 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/14RASTAM.MP3 Give Thanks And Praise Bob Marley Songs Of Freedom Four Reggae 3105217 194 15 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/15GIVETH.MP3 One Love/People Get Ready (12" Mix) Bob Marley Songs Of Freedom Four Reggae 6861845 428 16 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/16ONELOV.MP3 Why Should I Bob Marley Songs Of Freedom Four Reggae 3415750 213 17 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/17WHYSHO.MP3 Redemption Song (Live In Pittsburgh) Bob Marley Songs Of Freedom Four Reggae 3982945 248 18 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF2/18REDEMP.MP3 Judge Not Bob Marley Songs of Freedom One Reggae 2344695 146 1 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/01JUDGEN.MP3 One Cup Of Coffee Bob Marley Songs of Freedom One Reggae 2465492 154 2 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/02ONECUP.MP3 Simmer Down Bob Marley Songs of Freedom One Reggae 2720025 170 3 2002-02-26 01:25:00-08 2002-02-26 01:25:00-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/03SIMMER.MP3 I'm Still Waiting Bob Marley Songs of Freedom One Reggae 2990868 186 4 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/04IMSTIL.MP3 One Love/People Get Ready (Original) Bob Marley Songs of Freedom One Reggae 3223550 201 5 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/05ONELOV.MP3 Put It On Bob Marley Songs of Freedom One Reggae 3009946 188 6 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/06PUTITO.MP3 Bus Dem Shut (Pyaka) Bob Marley Songs of Freedom One Reggae 2673082 167 7 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/07BUSDEM.MP3 Mellow Mood (Original) Bob Marley Songs of Freedom One Reggae 3384033 211 8 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/08MELLOW.MP3 Bend Down Low Bob Marley Songs of Freedom One Reggae 2413105 150 9 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/09BENDDO.MP3 Hypocrites Bob Marley Songs of Freedom One Reggae 2490148 155 10 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/10HYPOCR.MP3 Stir It Up (Original) Bob Marley Songs of Freedom One Reggae 3082267 192 11 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/11STIRIT.MP3 Nice Time Bob Marley Songs of Freedom One Reggae 2647160 165 12 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/12NICETI.MP3 Thank You Lord (Original) Bob Marley Songs of Freedom One Reggae 3535061 220 13 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/13THANKY.MP3 Hammer Bob Marley Songs of Freedom One Reggae 2826461 176 14 2002-02-26 01:25:01-08 2002-02-26 01:25:01-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/14HAMMER.MP3 Caution Bob Marley Songs of Freedom One Reggae 2637545 164 15 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/15CAUTIO.MP3 Back Out Bob Marley Songs of Freedom One Reggae 2217915 138 16 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/16BACKOU.MP3 Soul Shake Down Party Bob Marley Songs of Freedom One Reggae 2971230 185 17 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/17SOULSH.MP3 Do It Twice Bob Marley Songs of Freedom One Reggae 2699407 168 18 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/18DOITTW.MP3 Soul Rebel Bob Marley Songs of Freedom One Reggae 3180475 198 19 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/19SOULRE.MP3 Sun Is Shining Bob Marley Songs of Freedom One Reggae 2098385 131 20 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/20SUNISS.MP3 Don't Rock The Boat Bob Marley Songs of Freedom One Reggae 4350353 271 21 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/21DONTRO.MP3 Small Axe Bob Marley Songs of Freedom One Reggae 3789860 236 22 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/22SMALLA.MP3 Duppy Conqueror Bob Marley Songs of Freedom One Reggae 3514013 219 23 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/23DUPPYC.MP3 Mr. Brown Bob Marley Songs of Freedom One Reggae 3405755 212 24 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOF3/24MRBROW.MP3 Screw Face Bob Marley Songs of Freedom Two Reggae 2290182 143 1 2002-02-26 01:25:02-08 2002-02-26 01:25:02-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/01SCREWF.MP3 Lick Samba Bob Marley Songs of Freedom Two Reggae 2452350 153 2 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/02LICKSA.MP3 Trenchtown Rock (Alternate Mix) Bob Marley Songs of Freedom Two Reggae 3337608 208 3 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/03TRENCH.MP3 Craven Choke Puppy Bob Marley Songs of Freedom Two Reggae 2754542 172 4 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/04CRAVEN.MP3 Guava Jelly Bob Marley Songs of Freedom Two Reggae 2205755 137 5 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/05GUAVAJ.MP3 Acoustic Medley Bob Marley Songs of Freedom Two Reggae 11666261 729 6 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/06ACOUST.MP3 I'm Hurting Inside (Alternate Mix) Bob Marley Songs of Freedom Two Reggae 3342627 208 7 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/07IMHURT.MP3 High Tide Or Low Tide Bob Marley Songs of Freedom Two Reggae 3992540 249 8 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/08HIGHTI.MP3 Slave Driver Bob Marley Songs of Freedom Two Reggae 2741580 171 9 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/09SLAVED.MP3 No More Trouble Bob Marley Songs of Freedom Two Reggae 3827860 239 10 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/10NOMORE.MP3 Concrete Jungle Bob Marley Songs of Freedom Two Reggae 4011484 250 11 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/11CONCRE.MP3 Get Up Stand Up Bob Marley Songs of Freedom Two Reggae 3116076 194 12 2002-02-26 01:25:03-08 2002-02-26 01:25:03-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/12GETUPS.MP3 Rastaman Chant Bob Marley Songs of Freedom Two Reggae 3692580 230 13 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/13RASTAM.MP3 Burnin' And Lootin" Bob Marley Songs of Freedom Two Reggae 4050636 253 14 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/14BURNIN.MP3 Iron Lion Zion Bob Marley Songs of Freedom Two Reggae 2812637 175 15 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/15IRONLI.MP3 Livley Up Yourself Bob Marley Songs of Freedom Two Reggae 4970981 310 16 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/16LIVLEY.MP3 Natty Dread Bob Marley Songs of Freedom Two Reggae 3433303 214 17 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/17NATTYD.MP3 I Shot The Sheriff (Live) Bob Marley Songs of Freedom Two Reggae 5218002 326 18 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/BOBMARLE/SONGSOFF/18ISHOTT.MP3 Virtual Insanity Jamiroquai Travelling Without Moving Funk 5459966 341 1 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/01VIRTUA.MP3 Cosmic Girl Jamiroquai Travelling Without Moving Funk 3904316 244 2 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/02COSMIC.MP3 Use The Force Jamiroquai Travelling Without Moving Funk 3850821 240 3 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/03USETHE.MP3 Everyday Jamiroquai Travelling Without Moving Funk 4298450 268 4 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/04EVERYD.MP3 Alright Jamiroquai Travelling Without Moving Funk 4246622 265 5 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/05ALRIGH.MP3 High Times Jamiroquai Travelling Without Moving Funk 5739296 358 6 2002-02-26 01:25:04-08 2002-02-26 01:25:04-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/06HIGHTI.MP3 Drifting Along Jamiroquai Travelling Without Moving Funk 3942495 246 7 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/07DRIFTI.MP3 Didjerama Jamiroquai Travelling Without Moving Funk 3686141 230 8 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/08DIDJER.MP3 Didgital Vibrations Jamiroquai Travelling Without Moving Funk 5589536 349 9 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/09DIDGIT.MP3 Travelling Without Moving Jamiroquai Travelling Without Moving Funk 3521205 220 10 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/10TRAVEL.MP3 You Are My Love Jamiroquai Travelling Without Moving Funk 3773084 235 11 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/11YOUARE.MP3 Spend A Lifetime Jamiroquai Travelling Without Moving Funk 4069558 254 12 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/12SPENDA.MP3 Bonus 1 Jamiroquai Travelling Without Moving Funk 4833020 302 13 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/13BONUS1.MP3 Bonus 2 Jamiroquai Travelling Without Moving Funk 4417072 276 14 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/JAMIROQU/TRAVELLI/14BONUS2.MP3 Steal My Sunshine Len You Can't Stop The Bum Rush Hip-Hop 4247977 265 1 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/01STEALM.MP3 Crytptik Souls Crew Len You Can't Stop The Bum Rush Hip-Hop 4229061 264 2 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/02CRYTPT.MP3 Man Of The Year Len You Can't Stop The Bum Rush Hip-Hop 4916181 307 3 2002-02-26 01:25:05-08 2002-02-26 01:25:05-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/03MANOFT.MP3 Beautiful Day Len You Can't Stop The Bum Rush Hip-Hop 2660453 166 4 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/04BEAUTI.MP3 The Hard Disk Approach Len You Can't Stop The Bum Rush Hip-Hop 2946765 184 5 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/05THEHAR.MP3 Hot Rod Monster Jam Len You Can't Stop The Bum Rush Hip-Hop 3947078 246 6 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/06HOTROD.MP3 Cold Chillin' Len You Can't Stop The Bum Rush Hip-Hop 3300490 206 7 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/07COLDCH.MP3 Feelin' Alright Len You Can't Stop The Bum Rush Hip-Hop 3824194 239 8 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/08FEELIN.MP3 Cheekybugger Len You Can't Stop The Bum Rush Hip-Hop 1670727 104 9 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/09CHEEKY.MP3 Big Meanie Len You Can't Stop The Bum Rush Hip-Hop 3952923 247 10 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/10BIGMEA.MP3 Junebug Len You Can't Stop The Bum Rush Hip-Hop 3835333 239 11 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/11JUNEBU.MP3 Crazy 'Cause I Believe (Early Morning Sunshine) Len You Can't Stop The Bum Rush Hip-Hop 2885074 180 12 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/LEN/YOUCANTS/12CRAZYC.MP3 Black Helicopters The Grassy Knoll Positive Avantgarde 3827820 239 1 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/01BLACKH.MP3 Driving Nowhere The Grassy Knoll Positive Avantgarde 5022485 313 2 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/02DRIVIN.MP3 Slow Steady Starvation The Grassy Knoll Positive Avantgarde 3906401 244 3 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/03SLOWST.MP3 1961 The Grassy Knoll Positive Avantgarde 6073083 379 4 2002-02-26 01:25:06-08 2002-02-26 01:25:06-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/041961.MP3 The Americans The Grassy Knoll Positive Avantgarde 3540818 221 5 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/05THEAME.MP3 Roswell Crash The Grassy Knoll Positive Avantgarde 3768466 235 6 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/06ROSWEL.MP3 The Common Ground The Grassy Knoll Positive Avantgarde 3256470 203 7 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/07THECOM.MP3 Another Theory The Grassy Knoll Positive Avantgarde 1404491 87 8 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/08ANOTHE.MP3 Wailing And Gnashing Of Teeth The Grassy Knoll Positive Avantgarde 2262992 141 9 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/09WAILIN.MP3 Fall Of The American Empire The Grassy Knoll Positive Avantgarde 4321024 270 10 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/10FALLOF.MP3 All Things Considered The Grassy Knoll Positive Avantgarde 4335646 270 11 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/11ALLTHI.MP3 Corrosion Of The Masses The Grassy Knoll Positive Avantgarde 3897767 243 12 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/12CORROS.MP3 End Of It All The Grassy Knoll Positive Avantgarde 1653317 103 13 2002-02-26 01:25:07-08 2002-02-26 01:25:07-08 128 44100 MPEG AUDIO FILE MP3006/THEGRASS/POSITIVE/13ENDOFI.MP3 01 - Maria Green Day International Superhits Rock 2675485 167 1 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/01 - Maria.mp3 02 - Poprocks And Coke Green Day International Superhits Rock 2532961 158 2 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/02 - Poprocks And Coke.mp3 03 - Longview Green Day International Superhits Rock 3744624 234 3 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/03 - Longview.mp3 04 - Welcome To Paradise Green Day International Superhits Rock 3586636 224 4 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/04 - Welcome To Paradise.mp3 05 - Basket Case Green Day International Superhits Rock 2905362 181 5 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/05 - Basket Case.mp3 06 - When I Come Around Green Day International Superhits Rock 2853117 178 6 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/06 - When I Come Around.mp3 07 - She Green Day International Superhits Rock 2145930 134 7 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/07 - She.mp3 08 - Jason Andrew Relva Green Day International Superhits Rock 2735253 170 8 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/08 - Jason Andrew Relva.mp3 09 - Geek Stink Breath Green Day International Superhits Rock 2173516 135 9 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/09 - Geek Stink Breath.mp3 10 - Brain Stew Green Day International Superhits Rock 3089682 193 10 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/10 - Brain Stew.mp3 11 - Jaded Green Day International Superhits Rock 1444595 90 11 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/11 - Jaded.mp3 12 - Walking Contradiction Green Day International Superhits Rock 2418022 151 12 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/12 - Walking Contradiction.mp3 13 - Stuck With Me Green Day International Superhits Rock 2167664 135 13 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/13 - Stuck With Me.mp3 14 - Hitchin A Ride Green Day International Superhits Rock 2744030 171 14 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/14 - Hitchin A Ride.mp3 15 - Good Riddance (Time Of Yo Green Day International Superhits Rock 2456892 153 15 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/15 - Good Riddance (Time Of Your Life).mp3 16 - Redundant Green Day International Superhits Rock 3169930 198 16 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/16 - Redundant.mp3 17 - Nice Guys Finish Last Green Day International Superhits Rock 2722296 170 17 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/17 - Nice Guys Finish Last.mp3 18 - Minority Green Day International Superhits Rock 2700144 168 18 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/18 - Minority.mp3 19 - Warning Green Day International Superhits Rock 3549855 221 19 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/19 - Warning.mp3 20 - Waiting Green Day International Superhits Rock 3083413 192 20 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/20 - Waiting.mp3 21 - Macys Day Parade Green Day International Superhits Rock 3414019 213 21 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Green Day/International Superhits/21 - Macys Day Parade.mp3 Verandi Bjork Vespertine Avantgarde 4261212 266 0 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 128 44100 MPEG AUDIO FILE MP3038/Bjork/Vespertine/Verandi.mp3 Who's On First? Abbott & Costello (Direct from video) Comedy 3053132 381 0 2002-02-26 01:25:08-08 2002-02-26 01:25:08-08 64 22050 MPEG AUDIO FILE MP3020/ABBOTTCO/DIRECTFR/WHOSONFI.MP3 Take On Me A-ha N/A Pop 3690102 230 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/AHA/UNKNOWNA/TAKEONME.MP3 Can't Get Enough of Your Love Barry White N/A Pop 3765920 235 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/BARRYWHI/UNKNOWNA/CANTGETE.MP3 We Didn't Start the Fire Billy Joel N/A Rock 4653937 290 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/BILLYJOE/UNKNOWNA/WEDIDNTS.MP3 Johnny B. Goode Chuck Berry 1958-Rock & Roll Era Rock 2587713 161 1 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/CHUCKBER/1958ROCK/JOHNNYBG.MP3 Spike Jones - All I Want for C Dr. Demento Dr. Demento Presents The Great Comedy 3029811 189 2 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DR_DE/DR_DE/SPIKEJON.MP3 Cocktails for Two - Spike Jone Dr. Demento N/A Comedy 2851726 178 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DR_DE/NA/COCKTAIL.MP3 Spike Jones & His City Slicker Dr. Demento N/A Comedy 2545362 159 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DR_DE/NA/SPIKEJON.MP3 Forty Miles Of Bad Road Duane Eddy 1959 - The Rock 'n' Roll Era Rock 2043825 127 8 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DUANEEDD/1959THER/FORTYMIL.MP3 Peter Gunn Duane Eddy Great Guitar Hits Rock 4583881 286 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/DUANEEDD/GREATGUI/PETERGUN.MP3 Summertime Blues Eddie Cochran 1958-Rock & Roll Era Rock 1920515 120 2 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/EDDIECOC/1958ROCK/SUMMERTI.MP3 C'mon Everybody Eddie Cochran The Rock 'n' Roll Era- 1959 - Still Rockin' Rock 1907162 119 7 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/EDDIECOC/THEROCKN/CMONEVER.MP3 Are You Ready Eddy Emerson,Lake,and Palmer Tarkus Rock 2094794 130 0 2002-02-26 01:25:09-08 2002-02-26 01:25:09-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/AREYOURE.MP3 A Time And A Place Emerson,Lake,and Palmer Tarkus Rock 2908978 181 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/ATIMEAND.MP3 Bitches Crystal Emerson,Lake,and Palmer Tarkus Rock 3811349 238 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/BITCHESC.MP3 Infinite Space Emerson,Lake,and Palmer Tarkus Rock 3213666 200 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/INFINITE.MP3 Jeremy Bender Emerson,Lake,and Palmer Tarkus Rock 1765855 110 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/JEREMYBE.MP3 Tarkus Emerson,Lake,and Palmer Tarkus Rock 19888690 1243 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/TARKUS.MP3 The Only Way Emerson,Lake,and Palmer Tarkus Rock 3658981 228 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/EMERSONL/TARKUS/THEONLYW.MP3 First and Second Law Flanders & Swan At The Drop of Another Hat Comedy 2816356 176 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/FLANDERS/ATTHEDRO/FIRSTAND.MP3 Sounding Brass Flanders & Swan At The Drop of Another Hat Comedy 2772741 173 0 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/FLANDERS/ATTHEDRO/SOUNDING.MP3 Asylum Supertramp Crime Of The Century Rock 6432368 402 4 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/ASYLUM.MP3 Bloody Well Right Supertramp Crime Of The Century Rock 4350109 271 2 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/BLOODYWE.MP3 Crime Of The Century Supertramp Crime Of The Century Rock 5370350 335 8 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/CRIMEOFT.MP3 Dreamer Supertramp Crime Of The Century Rock 3408019 213 5 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/DREAMER.MP3 Hide In Your Shell Supertramp Crime Of The Century Rock 6534781 408 3 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/HIDEINYO.MP3 If Everyone Was Listening Supertramp Crime Of The Century Rock 3920037 245 7 2002-02-26 01:25:10-08 2002-02-26 01:25:10-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/IFEVERYO.MP3 Rudy Supertramp Crime Of The Century Rock 7019600 438 6 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/RUDY.MP3 School Supertramp Crime Of The Century Rock 5340661 333 1 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRIMEOFT/SCHOOL.MP3 Ain't Nobody But Me Supertramp Crisis? What Crisis? Rock 4979561 311 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/AINTNOBO.MP3 Another Man's Woman Supertramp Crisis? What Crisis? Rock 6031704 376 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/ANOTHERM.MP3 A Soapbox Opera Supertramp Crisis? What Crisis? Rock 4799974 299 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/ASOAPBOX.MP3 Easy Does It Supertramp Crisis? What Crisis? Rock 2188842 136 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/EASYDOES.MP3 Just A Normal Day Supertramp Crisis? What Crisis? Rock 3882556 242 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/JUSTANOR.MP3 Lady Supertramp Crisis? What Crisis? Rock 5209145 325 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/LADY.MP3 Poor Boy Supertramp Crisis? What Crisis? Rock 4926051 307 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/POORBOY.MP3 Sister Moonshine Supertramp Crisis? What Crisis? Rock 5031525 314 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/SISTERMO.MP3 The Meaning Supertramp Crisis? What Crisis? Rock 5194384 324 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/THEMEANI.MP3 Two Of Us Supertramp Crisis? What Crisis? Rock 3314819 207 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/SUPERTRA/CRISISWH/TWOOFUS.MP3 My Pink Half Of The Drain Pipe The Bonzo Dog Band Doughnuts In Granny's Shop Other 3427703 214 0 2002-02-26 01:25:11-08 2002-02-26 01:25:11-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/DOUGHNUT/MYPINKHA.MP3 Death Cab For Cutie The Bonzo Dog Band Gorilla Other 2821633 176 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/GORILLA/DEATHCAB.MP3 I Want To Be With You The Bonzo Dog Band Keynham Other 2194000 137 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/KEYNHAM/IWANTTOB.MP3 Don't Get Me Wrong The Bonzo Dog Band Lets Make Up And Be Friendly Other 4702190 293 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/LETSMAKE/DONTGETM.MP3 Canyons Of Your Mind The Bonzo Dog Band Tadpoles Other 2944097 184 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/TADPOLES/CANYONSO.MP3 Hunting Tigers Out In 'INDIAH' The Bonzo Dog Band Tadpoles Other 2981305 186 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEBONZO/TADPOLES/HUNTINGT.MP3 Bad Habit The Offspring Smash Rock 3572828 223 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/BADHABIT.MP3 Come Out And Play The Offspring Smash Rock 3163514 197 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/COMEOUTA.MP3 Genocide The Offspring Smash Rock 3383780 211 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/GENOCIDE.MP3 Gotta Get Away The Offspring Smash Rock 3707276 231 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/GOTTAGET.MP3 It'll Be A Long Time The Offspring Smash Rock 2608886 163 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/ITLLBEAL.MP3 Killboy Powerhead The Offspring Smash Rock 1964808 122 0 2002-02-26 01:25:12-08 2002-02-26 01:25:12-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/KILLBOYP.MP3 Nitro (Youth Energy) The Offspring Smash Rock 2341114 146 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/NITROYOU.MP3 Self Esteem The Offspring Smash Rock 4123142 257 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/SELFESTE.MP3 So Alone The Offspring Smash Rock 1231837 76 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/SOALONE.MP3 Something To Believe In The Offspring Smash Rock 3158087 197 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/SOMETHIN.MP3 Time To Relax The Offspring Smash Rock 407487 25 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/TIMETORE.MP3 What Happened To You- The Offspring Smash Rock 2108310 131 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/THEOFFSP/SMASH/WHATHAPP.MP3 We Don't Need Another Hero Tina Turner Mad Max Beyond Thunderdome Soundtrack 4071349 254 0 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TINATURN/MADMAXBE/WEDONTNE.MP3 All Or Nothin' Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3961990 247 6 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/ALLORNOT.MP3 All The Wrong Reasons Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3619548 226 7 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/ALLTHEWR.MP3 Built To Last Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3807345 237 12 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/BUILTTOL.MP3 Into The Great Wide Open Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3574552 223 3 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/INTOTHEG.MP3 Kings Highway Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3011828 188 2 2002-02-26 01:25:13-08 2002-02-26 01:25:13-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/KINGSHIG.MP3 Learning To Fly Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3882578 242 1 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/LEARNING.MP3 Makin' Some Noise Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3316525 207 11 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/MAKINSOM.MP3 Out In The Cold Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3539742 221 9 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/OUTINTHE.MP3 The Dark Of The Sun Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3261913 203 5 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/THEDARKO.MP3 Too Good To Be True Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3832704 239 8 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/TOOGOODT.MP3 Two Gunslingers Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3035654 189 4 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/TWOGUNSL.MP3 You and I Will Meet Again Tom Petty And The Heartbreakers Into The Great Wide Open Folk 3557835 222 10 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/INTOTHEG/YOUANDIW.MP3 Anything That's Rock 'N' Roll Tom Petty And The Heartbreakers The Big Jangle Folk 2307155 144 4 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/ANYTHING.MP3 A Thing About You Tom Petty And The Heartbreakers The Big Jangle Folk 3402197 212 19 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/ATHINGAB.MP3 A Woman In Love Tom Petty And The Heartbreakers The Big Jangle Folk 4227664 264 17 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/AWOMANIN.MP3 Baby's A Rock 'N' Roller Tom Petty And The Heartbreakers The Big Jangle Folk 2761473 172 10 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/BABYSARO.MP3 Breakdown Tom Petty And The Heartbreakers The Big Jangle Folk 2604862 162 1 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/BREAKDOW.MP3 Don't Do Me Like That Tom Petty And The Heartbreakers The Big Jangle Folk 2604317 162 15 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/DONTDOME.MP3 Even The Losers Tom Petty And The Heartbreakers The Big Jangle Folk 3828653 239 13 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/EVENTHEL.MP3 Here Comes My Girl Tom Petty And The Heartbreakers The Big Jangle Folk 4255252 265 12 2002-02-26 01:25:14-08 2002-02-26 01:25:14-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/HERECOME.MP3 Hometown Blues Tom Petty And The Heartbreakers The Big Jangle Folk 2124910 132 3 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/HOMETOWN.MP3 I Need To Know Tom Petty And The Heartbreakers The Big Jangle Folk 2308952 144 5 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/INEEDTOK.MP3 Insider Tom Petty And The Heartbreakers The Big Jangle Folk 4211913 263 20 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/INSIDER.MP3 Listen To Her Heart Tom Petty And The Heartbreakers The Big Jangle Folk 2938821 183 6 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/LISTENTO.MP3 No Second Thoughts Tom Petty And The Heartbreakers The Big Jangle Folk 2555412 159 9 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/NOSECOND.MP3 Refugee Tom Petty And The Heartbreakers The Big Jangle Folk 3250468 203 11 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/REFUGEE.MP3 Shadow Of A Doubt (A Complex Kid) Tom Petty And The Heartbreakers The Big Jangle Folk 4254431 265 14 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/SHADOWOF.MP3 Something Big Tom Petty And The Heartbreakers The Big Jangle Folk 4555342 284 18 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/SOMETHIN.MP3 The Waiting Tom Petty And The Heartbreakers The Big Jangle Folk 3838958 239 16 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/THEWAITI.MP3 Too Much Ain't Enough Tom Petty And The Heartbreakers The Big Jangle Folk 2835029 177 8 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/TOOMUCHA.MP3 When The Time Comes Tom Petty And The Heartbreakers The Big Jangle Folk 2653215 165 7 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/WHENTHET.MP3 You Can Still Change Your Mind Tom Petty And The Heartbreakers The Big Jangle Folk 4101037 256 21 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/TOMPETTY/THEBIGJA/YOUCANST.MP3 All I Want Is You U2 The Best Of 1980-1990 Rock 9469265 591 14 2002-02-26 01:25:15-08 2002-02-26 01:25:15-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/ALLIWANT.MP3 Angel Of Harlem U2 The Best Of 1980-1990 Rock 3680948 230 13 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/ANGELOFH.MP3 Bad U2 The Best Of 1980-1990 Rock 5618315 351 6 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/BAD.MP3 Desire U2 The Best Of 1980-1990 Rock 2876368 179 11 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/DESIRE.MP3 I Still Haven't Found What I'm Looking For U2 The Best Of 1980-1990 Rock 4495575 280 4 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/ISTILLHA.MP3 I Will Follow U2 The Best Of 1980-1990 Rock 3480883 217 8 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/IWILLFOL.MP3 New Year's Day U2 The Best Of 1980-1990 Rock 4141955 258 2 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/NEWYEARS.MP3 Pride (In The Name Of Love) U2 The Best Of 1980-1990 Rock 3673994 229 1 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/PRIDEINT.MP3 Sunday Bloody Sunday U2 The Best Of 1980-1990 Rock 4509069 281 5 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/SUNDAYBL.MP3 Sweetest Thing (the single mix) U2 The Best Of 1980-1990 Rock 2930728 183 10 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/SWEETEST.MP3 The Unforgettable Fire U2 The Best Of 1980-1990 Rock 4728778 295 9 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/THEUNFOR.MP3 When Love Comes To Town U2 The Best Of 1980-1990 Rock 4129844 258 12 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/WHENLOVE.MP3 Where The Streets Have No Name U2 The Best Of 1980-1990 Rock 4427019 276 7 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/U2/THEBESTO/WHERETHE.MP3 My Boomerang Won't Come Back: N/A Crazy Tunes Comedy 3526290 220 0 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/CRAZYTUN/MYBOOMER.MP3 Chantilly Lace N/A Only Rock 'N Roll 1955-1959 Rock 2276175 142 0 2002-02-26 01:25:16-08 2002-02-26 01:25:16-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/ONLYROCK/CHANTILL.MP3 Pumpkin And Honey Bunny Dick Dale & His Del-Tones Pulp Fiction - Music From The Motion Picture Soundtrack 2367592 147 1 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/PULPFICT/PUMPKINA.MP3 Benny Hill Theme N/A N/A Comedy 1036477 64 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/BENNYHIL.MP3 Bottle N/A N/A Comedy 3475558 217 1 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 22050 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/BOTTLE.MP3 Friggin in the Rigg N/A N/A Comedy 3357406 209 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/FRIGGINI.MP3 Ivor Big N/A N/A Comedy 1615549 201 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 64 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/IVORBIG.MP3 n/a N/A N/A Comedy 2687542 167 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA.MP3 n/a N/A N/A Comedy 1628305 101 7 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA10.MP3 n/a N/A N/A Comedy 1920458 120 8 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA11.MP3 n/a N/A N/A Comedy 2273773 142 9 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA12.MP3 n/a N/A N/A Comedy 3519988 219 10 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA13.MP3 n/a N/A N/A Comedy 3803781 237 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA2.MP3 n/a N/A N/A Comedy 5014180 313 0 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA3.MP3 n/a N/A N/A Comedy 5311359 331 1 2002-02-26 01:25:17-08 2002-02-26 01:25:17-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA4.MP3 n/a N/A N/A Comedy 9950286 621 2 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA5.MP3 n/a N/A N/A Comedy 2324624 145 3 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA6.MP3 n/a N/A N/A Comedy 6728798 420 4 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA7.MP3 n/a N/A N/A Comedy 1562825 97 5 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA8.MP3 n/a N/A N/A Comedy 2788699 174 6 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/NA9.MP3 Three Little Pigs N/A N/A Rock 5663702 353 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/VARIOUSA/UNKNOWNA/THREELIT.MP3 Blowin' Free Wishbone Ash Argus Rock 5182668 323 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/BLOWINFR.MP3 Leaf And Stream Wishbone Ash Argus Rock 3781660 236 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/LEAFANDS.MP3 The King Will Come Wishbone Ash Argus Rock 6853674 428 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/THEKINGW.MP3 Time Was Wishbone Ash Argus Rock 9364344 585 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/TIMEWAS.MP3 Warrior Wishbone Ash Argus Rock 5704694 356 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WISHBONE/ARGUS/WARRIOR.MP3 2. Andante. Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 4231002 264 0 2002-02-26 01:25:18-08 2002-02-26 01:25:18-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/2ANDANTE.MP3 2. Menuetto I -- Trio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 4001553 250 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/2MENUETT.MP3 3. Adagio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 5793331 362 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/3ADAGIO.MP3 3. Menuetto in canone -- Trio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 4048094 253 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/3MENUETT.MP3 4. Allegro. Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 6607517 412 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/4ALLEGRO.MP3 4. Menuetto II - Trio Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 2777351 173 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/4MENUETT.MP3 5. Finale. Allegro Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 3281407 205 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/5FINALEA.MP3 Serenade in E-flat Maj., K. 37 Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 7393299 462 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/SERENAD1.MP3 Serenade in C min., K. 388(384 Wolfgang Amadeus Mozart Blaserseranaden, KV 37 Classical 7762915 485 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/BLASERSE/SERENADE.MP3 Symphony No.21, 2nd Wolfgang Amadeus Mozart (in A major, K.134) Classical 5117916 319 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHON1.MP3 Symphony No.21, 3rd Wolfgang Amadeus Mozart (in A major, K.134) Classical 2917836 182 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHON2.MP3 Symphony No.21, 4th Wolfgang Amadeus Mozart (in A major, K.134) Classical 4116487 257 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHON3.MP3 Symphony No.21, 1st Wolfgang Amadeus Mozart (in A major, K.134) Classical 5111647 319 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/INAMAJOR/SYMPHONY.MP3 Symphony No.40 in G Minor, 3rd Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 3945559 246 0 2002-02-26 01:25:19-08 2002-02-26 01:25:19-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHON1.MP3 Symphony No.40 in G Minor, 4th Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 6330111 395 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHON2.MP3 Symphony No.40 in G Minor, 1st Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 6679507 417 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHON3.MP3 Symphony No.40 in G Minor, 2nd Wolfgang Amadeus Mozart Symphony No. 40 in G Minor Classical 11103625 693 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/SYMPHONY/SYMPHONY.MP3 1st Movement Wolfgang Amadeus Mozart N/A Classical 12988876 811 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/UNKNOWNA/1STMOVEM.MP3 2nd Movement Wolfgang Amadeus Mozart N/A Classical 8911268 556 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/UNKNOWNA/2NDMOVEM.MP3 3rd Movement Wolfgang Amadeus Mozart N/A Classical 7044385 440 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3020/WOLFGANG/UNKNOWNA/3RDMOVEM.MP3 SemiCharmed Life 3rd Eye Blind N/A Rock 4255199 265 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/3RDEYEBL/UNKNOWNA/SEMICHAR.MP3 Dream on Aerosmith N/A Metal 4263685 266 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/AEROSMIT/UNKNOWNA/DREAMON.MP3 Rooster Alice in Chains Dirt Grunge 6002271 375 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ALICEINC/DIRT/ROOSTER.MP3 Caruso Andrea Bocceli Romanza Classical 5112589 319 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANDREABO/ROMANZA/CARUSO.MP3 El Silencio de la Espera Andrea Bocceli Romanza Classical 4511860 281 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANDREABO/ROMANZA/ELSILENC.MP3 Macchine de Guerra Andrea Bocceli Romanza Classical 4006959 250 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANDREABO/ROMANZA/MACCHINE.MP3 Batonga Angelique Kidjo Logozo Other 4387849 274 0 2002-02-26 01:25:20-08 2002-02-26 01:25:20-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/BATONGA.MP3 Ekolya Angelique Kidjo Logozo Other 4037877 252 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/EKOLYA.MP3 EldjirEAngelique Kidjo Logozo Other 3691390 230 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/ELDJIR.MP3 Ewa ka djo Angelique Kidjo Logozo Other 4134429 258 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/EWAKADJO.MP3 Kalta Angelique Kidjo Logozo Other 4434937 277 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/KALTA.MP3 Logozo Angelique Kidjo Logozo Other 3703509 231 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/LOGOZO.MP3 Malaika Angelique Kidjo Logozo Other 4085107 255 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/MALAIKA.MP3 SniEAngelique Kidjo Logozo Other 1824922 114 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/SNI.MP3 TchEtchEAngelique Kidjo Logozo Other 4441210 277 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/TCHTCH.MP3 WEwEAngelique Kidjo Logozo Other 4271654 266 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/ANGELIQU/LOGOZO/WW.MP3 Symphony #6 mvt 3, 4 & 5 Beethoven Hanover Band (Nimbus) 1988 Classical 17327473 1082 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/BEETHOVE/HANOVERB/SYMPHON1.MP3 Symphony #6 1st mvt Beethoven Hanover Band (Nimbus) 1988 Classical 10320245 645 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/BEETHOVE/HANOVERB/SYMPHONY.MP3 Storytime with Bobcat Bobcat Goldthwait How The Juice Stole Christmas Comedy 2662736 166 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 16000 MPEG AUDIO FILE MP3021/BOBCATGO/HOWTHEJU/STORYTIM.MP3 Tunnel of love Bruce Springsteen Bloomington Night Rock 7251573 453 0 2002-02-26 01:25:21-08 2002-02-26 01:25:21-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BLOOMING/TUNNELOF.MP3 Atlantic City Bruce Springsteen Brixton Nights Rock 5643681 352 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/ATLANTIC.MP3 Darkness on the edge of town. Bruce Springsteen Brixton Nights Rock 3373344 210 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/DARKNESS.MP3 Highway 29 Bruce Springsteen Brixton Nights Rock 4118545 257 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/HIGHWAY2.MP3 Intro Bruce Springsteen Brixton Nights Rock 1219159 76 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/INTRO.MP3 Mansion on the hill Bruce Springsteen Brixton Nights Rock 6017760 376 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/MANSIONO.MP3 Sinaloa Cowboys Bruce Springsteen Brixton Nights Rock 5080414 317 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/SINALOAC.MP3 State trooper Bruce Springsteen Brixton Nights Rock 4050003 253 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/STATETRO.MP3 Straight Time Bruce Springsteen Brixton Nights Rock 5584749 349 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/STRAIGHT.MP3 The ghost of tom joad Bruce Springsteen Brixton Nights Rock 6266866 391 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/BRUCESPR/BRIXTONN/THEGHOST.MP3 Enjoy The Silence Depeche Mode Live Cologne Oct. 5th, 1998 Alternative 6483465 405 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/DEPECHEM/LIVECOLO/ENJOYTHE.MP3 Brothers In Arms Dire Straits Brothers In Arms Rock 6622235 413 0 2002-02-26 01:25:22-08 2002-02-26 01:25:22-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/BROTHERS.MP3 Money For Nothing Dire Straits Brothers In Arms Rock 7987189 499 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/MONEYFOR.MP3 One World Dire Straits Brothers In Arms Rock 3473642 217 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/ONEWORLD.MP3 Ride Across The River Dire Straits Brothers In Arms Rock 6599151 412 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/RIDEACRO.MP3 So Far Away Dire Straits Brothers In Arms Rock 4934410 308 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/SOFARAWA.MP3 The Man's Too Strong Dire Straits Brothers In Arms Rock 4421724 276 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/THEMANST.MP3 Walk Of Life Dire Straits Brothers In Arms Rock 3979375 248 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/WALKOFLI.MP3 Why Worry Dire Straits Brothers In Arms Rock 8120928 507 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/WHYWORRY.MP3 Your Latest Trick Dire Straits Brothers In Arms Rock 6238588 389 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/BROTHERS/YOURLATE.MP3 Angel of Mercy Dire Straits CommuniquERock 4297578 268 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/ANGELOFM.MP3 CommuniquEDire Straits CommuniquERock 5483323 342 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/COMMUNIQ.MP3 Lady Writer Dire Straits CommuniquERock 3503731 218 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/LADYWRIT.MP3 News Dire Straits CommuniquERock 4027984 251 0 2002-02-26 01:25:23-08 2002-02-26 01:25:23-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/NEWS.MP3 Once Upon a Time in the West Dire Straits CommuniquERock 5034732 314 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/ONCEUPON.MP3 Portobello Belle Dire Straits CommuniquERock 4180829 261 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/PORTOBEL.MP3 Where Do You Think You're Goin Dire Straits CommuniquERock 3573549 223 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/DIRESTRA/COMMUNIQ/WHEREDOY.MP3 Knife Edge Encores, Legends & Paradox A Tribute to E.L.P. Rock 5128081 320 0 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENCORESL/ATRIBUTE/KNIFEEDG.MP3 Almost Full Moon Enigma Le Roi Est Mort, Vive Le Roi! New Age 3299782 206 9 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/ALMOSTFU.MP3 Beyond The Invisible Enigma Le Roi Est Mort, Vive Le Roi! New Age 4800753 300 4 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/BEYONDTH.MP3 Le Roi Est Mort, Vive Le Roi! Enigma Le Roi Est Mort, Vive Le Roi! New Age 1886397 117 1 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/LEROIEST.MP3 Morphing Thru Time Enigma Le Roi Est Mort, Vive Le Roi! New Age 5565540 347 2 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/MORPHING.MP3 Odyssey Of The Mind Enigma Le Roi Est Mort, Vive Le Roi! New Age 1611649 100 12 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/ODYSSEYO.MP3 Shadows In Silence Enigma Le Roi Est Mort, Vive Le Roi! New Age 4178055 261 6 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/SHADOWSI.MP3 The Child In Us Enigma Le Roi Est Mort, Vive Le Roi! New Age 4897260 306 7 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/THECHILD.MP3 The Roundabout Enigma Le Roi Est Mort, Vive Le Roi! New Age 3494688 218 10 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/THEROUND.MP3 Third Of Its Kind Enigma Le Roi Est Mort, Vive Le Roi! New Age 305246 19 3 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/THIRDOFI.MP3 T.N.T. For The Brain Enigma Le Roi Est Mort, Vive Le Roi! New Age 4257376 266 8 2002-02-26 01:25:24-08 2002-02-26 01:25:24-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/TNTFORTH.MP3 Why! ... Enigma Le Roi Est Mort, Vive Le Roi! New Age 4790304 299 5 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/ENIGMA/LEROIEST/WHY.MP3 Walking After You Foo Fighters The X-Files: The Album Soundtrack 3965315 247 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/FOOFIGHT/THEXFILE/WALKINGA.MP3 The I-95 Song Fred (August) Campbell N/A Comedy 3104286 194 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/FREDAUGU/UNKNOWNA/THEI95SO.MP3 Baker Street Gerry Rafferty Clowns To The Left, Jokers To Pop 5892806 368 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GERRYRAF/CLOWNSTO/BAKERSTR.MP3 Music for Royal Fireworks, 3rd G.F. Handel N/A N/A 3647499 227 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO1.MP3 Music for Royal Fireworks, 4th G.F. Handel N/A N/A 3768707 235 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO2.MP3 Music for Royal Fireworks, 5th G.F. Handel N/A N/A 3450362 215 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO3.MP3 Music for Royal Fireworks, 1st G.F. Handel N/A N/A 7927817 495 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFO4.MP3 Music for Royal Fireworks, 2nd G.F. Handel N/A N/A 1515072 94 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GF_HA/UNKNOWNA/MUSICFOR.MP3 Bad To The Bone G Thorogood And The Destroyers The Baddest of GT and The D's Rock 4756395 297 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GTHOROGO/THEBADDE/BADTOTHE.MP3 Who Do You Love G Thorogood And The Destroyers The Baddest of GT and The D's Rock 4163729 260 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GTHOROGO/THEBADDE/WHODOYOU.MP3 You talk Too Much G Thorogood And The Destroyers The Baddest of GT and The D's Rock 4411581 275 0 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/GTHOROGO/THEBADDE/YOUTALKT.MP3 My Dead Dog Rover Hank , Stewart, Dave, Hank Dr. Demento : 25th Anniversary Collection Comedy 2251209 140 12 2002-02-26 01:25:25-08 2002-02-26 01:25:25-08 128 44100 MPEG AUDIO FILE MP3021/HANKSTEW/DR_DE/MYDEADDO.MP3 Clampetts Go To Maui Jeff Foxworthy Games Rednecks Play Comedy 6583413 411 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/CLAMPETT.MP3 Don't Drink And Drive Jeff Foxworthy Games Rednecks Play Comedy 5083219 317 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/DONTDRIN.MP3 Games Rednecks Play Jeff Foxworthy Games Rednecks Play Comedy 3765392 235 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/GAMESRED.MP3 I Love Being A Parent Jeff Foxworthy Games Rednecks Play Comedy 8426055 526 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/ILOVEBEI.MP3 Introduction Jeff Foxworthy Games Rednecks Play Comedy 1693284 105 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/INTRODUC.MP3 More You Might Be A Redneck If Jeff Foxworthy Games Rednecks Play Comedy 3338389 208 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/MOREYOUM.MP3 NASA & Alabama & Fishing Shows Jeff Foxworthy Games Rednecks Play Comedy 3209100 200 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/NASAALAB.MP3 Out Of The Gene Pool Jeff Foxworthy Games Rednecks Play Comedy 3360391 210 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/OUTOFTHE.MP3 Party All Night Jeff Foxworthy Games Rednecks Play Comedy 2967504 185 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/PARTYALL.MP3 Seek And Destroy Jeff Foxworthy Games Rednecks Play Comedy 3851489 240 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/SEEKANDD.MP3 Southern Accent Jeff Foxworthy Games Rednecks Play Comedy 2308801 144 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/SOUTHERN.MP3 Victoria's Secret Jeff Foxworthy Games Rednecks Play Comedy 3892450 243 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JEFFFOXW/GAMESRED/VICTORIA.MP3 Bathroom Jerry Seinfeld N/A Comedy 2032904 127 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/BATHROOM.MP3 Intro - Phones Jerry Seinfeld N/A Comedy 2026641 126 0 2002-02-26 01:25:26-08 2002-02-26 01:25:26-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/INTROPHO.MP3 n/a Jerry Seinfeld N/A Comedy 3264206 204 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA.MP3 n/a Jerry Seinfeld N/A Comedy 513362 32 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA10.MP3 n/a Jerry Seinfeld N/A Comedy 6493356 405 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA11.MP3 n/a Jerry Seinfeld N/A Comedy 7245684 452 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA12.MP3 n/a Jerry Seinfeld N/A Comedy 2211089 138 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA13.MP3 n/a Jerry Seinfeld N/A Comedy 1198470 74 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA14.MP3 n/a Jerry Seinfeld N/A Comedy 2517453 157 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA15.MP3 n/a Jerry Seinfeld N/A Comedy 6700665 418 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA16.MP3 n/a Jerry Seinfeld N/A Comedy 711731 44 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA2.MP3 n/a Jerry Seinfeld N/A Comedy 3537969 221 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA3.MP3 n/a Jerry Seinfeld N/A Comedy 1619120 101 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA4.MP3 n/a Jerry Seinfeld N/A Comedy 6414921 400 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA5.MP3 n/a Jerry Seinfeld N/A Comedy 9364040 585 0 2002-02-26 01:25:27-08 2002-02-26 01:25:27-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA6.MP3 n/a Jerry Seinfeld N/A Comedy 3573914 223 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA7.MP3 n/a Jerry Seinfeld N/A Comedy 3711422 231 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA8.MP3 n/a Jerry Seinfeld N/A Comedy 1550714 96 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/NA9.MP3 Scuba Diving Jerry Seinfeld N/A Comedy 1094323 68 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/SCUBADIV.MP3 Sky Diving/The Helmet Jerry Seinfeld N/A Comedy 1288125 80 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/JERRYSEI/UNKNOWNA/SKYDIVIN.MP3 Autobahn Kraftwerk TransEuropeExpress - Autobahn Electronic 21792365 1362 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/KRAFTWER/TRANSEUR/AUTOBAHN.MP3 Ballade No 2 Chopin Leslie Bridges Leslie Bridges Classical 5111633 319 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADE1.MP3 Ballade No 3 Chopin Leslie Bridges Leslie Bridges Classical 4718334 294 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADE2.MP3 Ballade No 4 Chopin Leslie Bridges Leslie Bridges Classical 7873506 492 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADE3.MP3 Ballade No 1 Chopin Leslie Bridges Leslie Bridges Classical 5966359 372 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/BALLADEN.MP3 Fur Elise Beethoven Leslie Bridges Leslie Bridges Classical 2237051 139 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LESLIEBR/LESLIEBR/FURELISE.MP3 Macarena Los Del Rio & Bayside Boys N/A Latin 3694410 230 0 2002-02-26 01:25:28-08 2002-02-26 01:25:28-08 128 44100 MPEG AUDIO FILE MP3021/LOSDELRI/UNKNOWNA/MACARENA.MP3 Bob & Juanita Maclean & Maclean The Dirty Thirty Comedy 1868259 116 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/BOBJUANI.MP3 Cocaine Hoe Down Maclean & Maclean The Dirty Thirty Comedy 822529 51 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/COCAINEH.MP3 Diary Of A Jealous Boyfriend Maclean & Maclean The Dirty Thirty Comedy 2792382 174 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DIARYOFA.MP3 Doggies Maclean & Maclean The Dirty Thirty Comedy 753557 47 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DOGGIES.MP3 Doggie Vom Maclean & Maclean The Dirty Thirty Comedy 1175698 73 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DOGGIEVO.MP3 Dolly Parton's Tits Maclean & Maclean The Dirty Thirty Comedy 1858234 116 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/DOLLYPAR.MP3 Flipper Maclean & Maclean The Dirty Thirty Comedy 640847 40 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/FLIPPER.MP3 Flipper #2 Maclean & Maclean The Dirty Thirty Comedy 486484 30 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/FLIPPER2.MP3 Frankie Fontaine Maclean & Maclean The Dirty Thirty Comedy 2525016 157 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/FRANKIEF.MP3 I Married the Wrong Di Maclean & Maclean The Dirty Thirty Comedy 2078920 129 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/IMARRIED.MP3 I'm Just A Cunt About You Maclean & Maclean The Dirty Thirty Comedy 1868271 116 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/IMJUSTAC.MP3 Ken & Barbie Maclean & Maclean The Dirty Thirty Comedy 711070 44 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/KENBARBI.MP3 Long Distance Daddy Maclean & Maclean The Dirty Thirty Comedy 3568244 223 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/LONGDIST.MP3 Nosers Eh! Maclean & Maclean The Dirty Thirty Comedy 1508392 94 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/NOSERSEH.MP3 Oh Canada Maclean & Maclean The Dirty Thirty Comedy 1056161 66 0 2002-02-26 01:25:29-08 2002-02-26 01:25:29-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/OHCANADA.MP3 Ralph's Homo-Hatin' Half Ton Motors Maclean & Maclean The Dirty Thirty Comedy 1246776 77 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/RALPHSHO.MP3 Shit Maclean & Maclean The Dirty Thirty Comedy 4032582 252 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/SHIT.MP3 Shit-Face Beer Maclean & Maclean The Dirty Thirty Comedy 1529435 95 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/SHITFACE.MP3 Star Trek Maclean & Maclean The Dirty Thirty Comedy 1522603 95 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/STARTREK.MP3 The Arsehole Maclean & Maclean The Dirty Thirty Comedy 1238394 77 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEARSEH.MP3 The Audience Maclean & Maclean The Dirty Thirty Comedy 1227945 76 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEAUDIE.MP3 The Bing Buff Show Maclean & Maclean The Dirty Thirty Comedy 2629784 164 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEBINGB.MP3 The Champ Maclean & Maclean The Dirty Thirty Comedy 1716954 107 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THECHAMP.MP3 The Fox Maclean & Maclean The Dirty Thirty Comedy 1346222 84 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THEFOX.MP3 The Little Red Hen Maclean & Maclean The Dirty Thirty Comedy 1055334 65 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THELITTL.MP3 The Lottery Maclean & Maclean The Dirty Thirty Comedy 1303595 81 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/THELOTTE.MP3 Whoreofasorethroat Maclean & Maclean The Dirty Thirty Comedy 3637207 227 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/WHOREOFA.MP3 Willie & Wendy Maclean & Maclean The Dirty Thirty Comedy 2045615 127 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/WILLIEWE.MP3 You Set My Dick On Fire Maclean & Maclean The Dirty Thirty Comedy 3137751 196 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MACLEANM/THEDIRTY/YOUSETMY.MP3 3 AM Matchbox 20 Yourself or Someone Like You Rock 3632472 227 0 2002-02-26 01:25:30-08 2002-02-26 01:25:30-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/3AM.MP3 Argue Matchbox 20 Yourself or Someone Like You Rock 2842531 177 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/ARGUE.MP3 Back 2 Good Matchbox 20 Yourself or Someone Like You Rock 5441962 340 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/BACK2GOO.MP3 Busted Matchbox 20 Yourself or Someone Like You Rock 4114799 257 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/BUSTED.MP3 Damn Matchbox 20 Yourself or Someone Like You Rock 3201556 200 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/DAMN.MP3 Girl Like That Matchbox 20 Yourself or Someone Like You Rock 3599881 224 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/GIRLLIKE.MP3 Hang Matchbox 20 Yourself or Someone Like You Rock 3637906 227 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/HANG.MP3 Kody Matchbox 20 Yourself or Someone Like You Rock 3894672 243 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/KODY.MP3 Long Day Matchbox 20 Yourself or Someone Like You Rock 3609628 225 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/LONGDAY.MP3 Push Matchbox 20 Yourself or Someone Like You Rock 3818882 238 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/PUSH.MP3 Real World Matchbox 20 Yourself or Someone Like You Rock 3708965 231 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/REALWORL.MP3 Shame Matchbox 20 Yourself or Someone Like You Rock 3440212 215 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/MATCHBOX/YOURSELF/SHAME.MP3 n/a Nazareth N/A Metal 3616539 226 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/NAZARETH/UNKNOWNA/NA.MP3 n/a Nazareth N/A Metal 3807964 237 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/NAZARETH/UNKNOWNA/NA2.MP3 Life is Life Opus N/A Rock 4048307 253 0 2002-02-26 01:25:31-08 2002-02-26 01:25:31-08 128 44100 MPEG AUDIO FILE MP3021/OPUS/UNKNOWNA/LIFEISLI.MP3 Barcelona Nights Ottmar Liebert Nouveau Flamenco Latin 3901649 243 1 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/OTTMARLI/NOUVEAUF/BARCELON.MP3 Heart Still Beating Ottmar Liebert Nouveau Flamenco Latin 3974784 248 2 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/OTTMARLI/NOUVEAUF/HEARTSTI.MP3 Yakety Yak The Coasters 1958-Rock & Roll Era Rock 1804314 112 7 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/THECOAST/1958ROCK/YAKETYYA.MP3 More Than This The Cure The X-Files: The Album Soundtrack 4974679 310 0 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/THECURE/THEXFILE/MORETHAN.MP3 Star Trekkin' The Firm N/A Comedy 3462463 216 0 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3021/THEFIRM/UNKNOWNA/STARTREK.MP3 Interlude Aphrodite Aphrodite Drum & Bass 2138854 133 1 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/01INTERL.MP3 Cross Channel Aphrodite Aphrodite Drum & Bass 5311584 331 2 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/02CROSSC.MP3 Spice (even spicier) Aphrodite Aphrodite Drum & Bass 6372093 398 3 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/03SPICEE.MP3 B.M. Funkster Aphrodite Aphrodite Drum & Bass 5664482 354 4 2002-02-26 01:25:32-08 2002-02-26 01:25:32-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/04BMFUNK.MP3 Interlude Aphrodite Aphrodite Drum & Bass 1417037 88 5 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/05INTERL.MP3 Rincing Quince (slider mix) Aphrodite Aphrodite Drum & Bass 7081655 442 6 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/06RINCIN.MP3 Style from the Dark Side '99 Aphrodite Aphrodite Drum & Bass 5485888 342 7 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/07STYLEF.MP3 Interlude Aphrodite Aphrodite Drum & Bass 1415924 88 8 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/08INTERL.MP3 Cool Fight Aphrodite Aphrodite Drum & Bass 4957152 309 9 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/09COOLFI.MP3 Stalker Aphrodite Aphrodite Drum & Bass 5298346 331 10 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/10STALKE.MP3 King of the Beats Aphrodite Aphrodite Drum & Bass 6384073 399 11 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/11KINGOF.MP3 Listen to the Rythmn [sic] Aphrodite Aphrodite Drum & Bass 5665751 354 12 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/12LISTEN.MP3 Music's Hynotising (re-charged) Aphrodite Aphrodite Drum & Bass 6728066 420 13 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/13MUSICS.MP3 Woman That Rolls Aphrodite Aphrodite Drum & Bass 5664765 354 14 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/14WOMANT.MP3 Summer Breeze Aphrodite Aphrodite Drum & Bass 5051198 315 15 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/APHRODIT/APHRODIT/15SUMMER.MP3 Can i be free from crying (underwolves mix) Bim Sherman Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 7292958 455 1 2002-02-26 01:25:33-08 2002-02-26 01:25:33-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/01BIMSHE.MP3 Listen to the way Minx Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 4793752 299 2 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/02MINX.MP3 Surreal Liftin' Spirits Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 4310357 269 3 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/03LIFTIN.MP3 Airsign Justice Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5723556 357 4 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/04JUSTIC.MP3 Friday Doc Format vs The kaleidoscope Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 7038207 439 5 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/05DOCFOR.MP3 Headnoddin King Kooba Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 3845402 240 6 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/06KINGKO.MP3 Secret Motion Rogue Unit Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 2613680 163 7 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/07ROGUEU.MP3 Contours Torus Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5248013 328 8 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/08TORUS.MP3 Babies Free4orm Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 6865150 429 9 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/09FREE4O.MP3 Dialogue Seeka feat. Ned Kelly Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 3808021 238 10 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/10SEEKAF.MP3 Dig so deep Grand Unified Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5852656 365 11 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/11GRANDU.MP3 Do right Eugenix Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 5668536 354 12 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/12EUGENI.MP3 Dovima's Fantasy Parallax Atmospheric Drum & Bass Volume 4 - Disc 1 Drum & Bass 7270582 454 13 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD1/13PARALL.MP3 Straight From The Heart Voyager Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 5776165 361 1 2002-02-26 01:25:34-08 2002-02-26 01:25:34-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/01VOYAGE.MP3 Tears Dazzle-T & Quicky Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 7641570 477 2 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/02DAZZLE.MP3 Perspective Torus Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 5425425 339 3 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/03TORUSP.MP3 The Right Way Future Bound Feat. Jay Hella Ruth Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 6404587 400 4 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/04FUTURE.MP3 how Me Hydraflow Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 6671289 416 5 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/05HYDRAF.MP3 Freeway Ed Solo Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 8518712 532 6 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/06EDSOLO.MP3 Give It To Me (limes mix) Non-Alains Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4057499 253 7 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/07NONALA.MP3 Logic Sub-Logics Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 5349634 334 8 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/08SUBLOG.MP3 Rhythm Factor In Deep Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4704973 294 9 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/09INDEEP.MP3 Sanctuary (original mix remastered) Omni Trio Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4527696 282 10 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/10OMNITR.MP3 Skankin In Deep Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 4372686 273 11 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/11INDEEP.MP3 Sweet Sax Unison Atmospheric Drum & Bass Volume 4 - Disc 2 Drum & Bass 6053897 378 12 2002-02-26 01:25:35-08 2002-02-26 01:25:35-08 128 44100 MPEG AUDIO FILE MP3009/ATMOSPHE/CD2/12UNISON.MP3 Pressure Rmx John B DJ Hype: Mixmag Live Vol. 29 Drum & Bass 5743712 358 1 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/01JOHNBP.MP3 Tronik Funk Test DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3549071 221 2 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/02TESTTR.MP3 Terminal1 Ram Trilogy DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4817582 301 3 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/03RAMTRI.MP3 Rebels Splash Collective Vol 5 DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4466923 279 4 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/04SPLASH.MP3 Disappear DJ Hype and DJ Zinc DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4548510 284 5 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/05HYPEAN.MP3 Full Metal Jacket Undercover Agent DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4362679 272 6 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/06UNDERC.MP3 Stick Up Kid DJ A-Sides DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4707023 294 7 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/07DJASID.MP3 Bambaata 2012 Shy FX DJ Hype: Mixmag Live Vol. 29 Drum & Bass 2616645 163 8 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/08SHYFXB.MP3 Killa Bees Usual Suspects DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3318072 207 9 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/09USUALS.MP3 Clear Skies DJ Die DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3313965 207 10 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/10DJDIEC.MP3 The Nine Bad Company DJ Hype: Mixmag Live Vol. 29 Drum & Bass 5060417 316 11 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/11BADCOM.MP3 Challenge Dark Soldier DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4811798 300 12 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/12DARKSO.MP3 Submerge DJ Zinc DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3500704 218 13 2002-02-26 01:25:36-08 2002-02-26 01:25:36-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/13DJZINC.MP3 Dangerous DJ Brockie & Ed Solo DJ Hype: Mixmag Live Vol. 29 Drum & Bass 4900767 306 14 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/14DJBROC.MP3 Fade 2 Black Souljah DJ Hype: Mixmag Live Vol. 29 Drum & Bass 5253373 328 15 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/15SOULJA.MP3 White on Black Frequency & DJ Zinc DJ Hype: Mixmag Live Vol. 29 Drum & Bass 3662080 228 16 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/DJHYPE/MIXMAGLI/16FREQUE.MP3 Freedom Now (Meditation) Patterson Headz (cd1) Electronic 9719763 607 1 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/01FREEDO.MP3 Contemplating Jazz Attica Blues Headz (cd1) Electronic 6146768 384 2 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/02CONTEM.MP3 Symmetrical Jazz Awunsound Headz (cd1) Electronic 6061082 378 3 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/03SYMMET.MP3 Stars Nightmares On Wax Headz (cd1) Electronic 6055505 378 4 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/04STARS.MP3 Ravers Suck Our Sound LA Funk Mob Headz (cd1) Electronic 8067570 504 5 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/05RAVERS.MP3 Miles Out Of Time (Astrocentric Mix'n'Beats) M.F. Outa. National Headz (cd1) Electronic 7593636 474 6 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/06MILESO.MP3 The Inside RPM Headz (cd1) Electronic 5890403 368 7 2002-02-26 01:25:37-08 2002-02-26 01:25:37-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/07THEINS.MP3 Lowride Autechre Headz (cd1) Electronic 8340062 521 8 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/08LOWRID.MP3 Wildstyle (The Krush Handshake) Olde Scottish Headz (cd1) Electronic 11713019 732 9 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD1/09WILDST.MP3 Lost and Found (S.F.L.) DJ Shadow Headz (cd2) Electronic 7622862 476 1 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/01LOSTAN.MP3 Destroy all Monsters Skull Headz (cd2) Electronic 5527208 345 2 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/02DESTRO.MP3 ...Don't Fake it Deflon Sallahr Headz (cd2) Electronic 10053709 628 3 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/03DONTFA.MP3 2000 RPM Headz (cd2) Electronic 6955914 434 4 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/042000.MP3 Slipper Suite ((i) Jeremy's Velvet Slippers (ii) Moonraker (iii) Unspeakable Acts) Palmskin Productions Headz (cd2) Electronic 5099295 318 5 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/05SLIPPE.MP3 The Time Has Come (U.N.K.L.E. vs. The Major Force EMS Orchestra) U.N.K.L.E. Headz (cd2) Electronic 4855179 303 6 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/06THETIM.MP3 Head West - Gunfight at the O.K. Corrall Howie B. Headz (cd2) Electronic 6461788 403 7 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/07HEADWE.MP3 They Came in Peace Tranquility Bass Headz (cd2) Electronic 6915817 432 8 2002-02-26 01:25:38-08 2002-02-26 01:25:38-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/08THEYCA.MP3 In Flux (Alternative Interlude '93 Version) DJ Shadow Headz (cd2) Electronic 7725004 482 9 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/HEADZ/CD2/09INFLUX.MP3 Tied Up LFO Tied Up Electronic 5153504 322 1 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/01TIEDUP.MP3 Tied Up Electro LFO Tied Up Electronic 4382796 273 2 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/02TIEDUP.MP3 Tied Up (sweep mix) LFO Tied Up Electronic 5320282 332 3 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/03TIEDUP.MP3 Tied Up (acid mix) LFO Tied Up Electronic 4111125 256 4 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/04TIEDUP.MP3 Tied Up - Spiritualized "electric mainline mix" LFO Tied Up Electronic 8934959 558 5 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LFO/TIEDUP/05TIEDUP.MP3 System Sylence Rantoul Progression Sessions - Instrumental Version Drum & Bass 8952844 559 1 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/01RANTOU.MP3 A Way Of Life Big Bud Progression Sessions - Instrumental Version Drum & Bass 6442999 402 2 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/02BIGBUD.MP3 Soul 2000 Seba Progression Sessions - Instrumental Version Drum & Bass 6782431 423 3 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/03SEBA.MP3 View Of Life Moonchild Progression Sessions - Instrumental Version Drum & Bass 7179862 448 4 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/04MOONCH.MP3 The Ladder Rantoul Progression Sessions - Instrumental Version Drum & Bass 8606770 537 5 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/05RANTOU.MP3 Rhodes To Freedom LTJ Bukem Progression Sessions - Instrumental Version Drum & Bass 7798935 487 6 2002-02-26 01:25:39-08 2002-02-26 01:25:39-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/06LTJBUK.MP3 Butterfly Makoto Progression Sessions - Instrumental Version Drum & Bass 6147592 384 7 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/07MAKOTO.MP3 Too High Rantoul Progression Sessions - Instrumental Version Drum & Bass 6969205 435 8 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/08RANTOU.MP3 Sly Detector Psyne Progression Sessions - Instrumental Version Drum & Bass 8215282 513 9 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/09PSYNE.MP3 Darker Than Blue Big Bud Progression Sessions - Instrumental Version Drum & Bass 7280176 455 10 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/LTJBUKEM/PROGRESS/10BIGBUD.MP3 Skeleton Keys (Omni Trio Remix) Omni Trio Skeleton Keys Drum & Bass 6348119 396 1 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/01SKELET.MP3 Silver Omni Trio Skeleton Keys Drum & Bass 6144130 384 2 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/02SILVER.MP3 Fire Island Omni Trio Skeleton Keys Drum & Bass 5834149 364 3 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/03FIREIS.MP3 Ocean Driver Omni Trio Skeleton Keys Drum & Bass 6453006 403 4 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/04OCEAND.MP3 Sanctuary (remastered) Omni Trio Skeleton Keys Drum & Bass 6876410 429 5 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/05SANCTU.MP3 Atomic State Omni Trio Skeleton Keys Drum & Bass 6217418 388 6 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/06ATOMIC.MP3 Red Rain (E-Coli mix) Omni Trio Skeleton Keys Drum & Bass 6027952 376 7 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/07REDRAI.MP3 Twin Town Karaoke (Guardians of Dalliance Remix) Omni Trio Skeleton Keys Drum & Bass 6036338 377 8 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/08TWINTO.MP3 Trippin' V.I.P (remastered) Omni Trio Skeleton Keys Drum & Bass 6063903 378 9 2002-02-26 01:25:40-08 2002-02-26 01:25:40-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/09TRIPPI.MP3 Twin Town Karaoke (Original 12" Mix) Omni Trio Skeleton Keys Drum & Bass 6049007 378 10 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/10TWINTO.MP3 Sanctuary (Funky Technicians Remix) Omni Trio Skeleton Keys Drum & Bass 7259693 453 11 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/OMNITRIO/SKELETON/11SANCTU.MP3 The Seven Samurai (Photek Remix) Photek Form & Function Electronic 6717177 419 1 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/01THESEV.MP3 The Lightening (Digital Remix) Photek Form & Function Electronic 5601364 350 2 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/02THELIG.MP3 Rings Around Saturn (Peshay & Decoder Remix) Photek Form & Function Electronic 7721684 482 3 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/03RINGSA.MP3 The Margin '98 (Doc Scott Remix) Photek Form & Function Electronic 6637764 414 4 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/04THEMAR.MP3 Resolution (Photek Remix) Photek Form & Function Electronic 6395759 399 5 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/05RESOLU.MP3 UFO (J Majik Remix) Photek Form & Function Electronic 6005379 375 6 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/06UFOJMA.MP3 Knitevision Photek Form & Function Electronic 6403686 400 7 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/07KNITEV.MP3 Santiago Photek Form & Function Electronic 5911746 369 8 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/08SANTIA.MP3 The Seven Samurai Photek Form & Function Electronic 6582579 411 9 2002-02-26 01:25:41-08 2002-02-26 01:25:41-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/09THESEV.MP3 Rings Around Saturn Photek Form & Function Electronic 7114645 444 10 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/10RINGSA.MP3 The Water Margin Photek Form & Function Electronic 5278270 329 11 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/11THEWAT.MP3 UFO Photek Form & Function Electronic 6021666 376 12 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/PHOTEK/FORMFUNC/12UFO.MP3 Children (full length dream version) Robert Miles Electronica - Disk 2 Electronic 7187144 449 1 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/01CHILDR.MP3 Earth Angel (William Orbit remix) Dreadzone Electronica - Disk 2 Electronic 3442582 215 8 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/08EARTHA.MP3 Valley Of The Shadows (original) Origin Unknown Electronica - Disk 2 Electronic 3506456 219 9 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/09VALLEY.MP3 Wilmot (short version) Sabres of Paradise Electronica - Disk 2 Electronic 4233822 264 11 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3009/VARIOUSA/11WILMOT.MP3 De Cara a la Pared Lhasa La Llorona Latin 4086932 255 1 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/01DECARA.MP3 La Celestine Lhasa La Llorona Latin 4604081 287 2 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/02LACELE.MP3 El Desierto Lhasa La Llorona Latin 3739183 233 3 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/03ELDESI.MP3 Por Eso Me Quedo Lhasa La Llorona Latin 3699900 231 4 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/04PORESO.MP3 El Payande Lhasa La Llorona Latin 3393112 212 5 2002-02-26 01:25:42-08 2002-02-26 01:25:42-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/05ELPAYA.MP3 Los Peces Lhasa La Llorona Latin 3709088 231 6 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/06LOSPEC.MP3 Floricanto Lhasa La Llorona Latin 4007093 250 7 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/07FLORIC.MP3 Desdenosa Lhasa La Llorona Latin 4386739 274 8 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/08DESDEN.MP3 El Pajaro Lhasa La Llorona Latin 3820265 238 9 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/09ELPAJA.MP3 Mi Vanidad Lhasa La Llorona Latin 4051399 253 10 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/10MIVANI.MP3 El Arbol Del Olvido Lhasa La Llorona Latin 3064329 191 11 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/LHASA/LALLORON/11ELARBO.MP3 Are you really happy? - Intro Me Mom and Morgentaller Shiva Space Machine Ska 1037999 64 1 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/01AREYOU.MP3 Jacqueline Me Mom and Morgentaller Shiva Space Machine Ska 3937361 246 2 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/02JACQUE.MP3 Oh Well Me Mom and Morgentaller Shiva Space Machine Ska 2635556 164 3 2002-02-26 01:25:43-08 2002-02-26 01:25:43-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/03OHWELL.MP3 Everybody got AIDS Me Mom and Morgentaller Shiva Space Machine Ska 4179925 261 4 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/04EVERYB.MP3 I still love you Eve Me Mom and Morgentaller Shiva Space Machine Ska 3477616 217 5 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/05ISTILL.MP3 Angel's time Me Mom and Morgentaller Shiva Space Machine Ska 3028720 189 6 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/06ANGELS.MP3 Heloise Me Mom and Morgentaller Shiva Space Machine Ska 4364094 272 7 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/07HELOIS.MP3 My mother's friends Me Mom and Morgentaller Shiva Space Machine Ska 2195875 137 8 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/08MYMOTH.MP3 Anarchie Me Mom and Morgentaller Shiva Space Machine Ska 2976889 186 9 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/09ANARCH.MP3 Your Friend Me Mom and Morgentaller Shiva Space Machine Ska 3055053 190 10 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/10YOURFR.MP3 Pepita la pistolera Me Mom and Morgentaller Shiva Space Machine Ska 3678656 229 11 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/11PEPITA.MP3 Invasion of the corporate cockroaches from planet Widdley Me Mom and Morgentaller Shiva Space Machine Ska 1367798 85 12 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/12INVASI.MP3 No more nervous breakdown Me Mom and Morgentaller Shiva Space Machine Ska 4095507 255 13 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/13NOMORE.MP3 The ghost of Martin Sheen Me Mom and Morgentaller Shiva Space Machine Ska 1837274 114 14 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/14THEGHO.MP3 Open up for your demon Me Mom and Morgentaller Shiva Space Machine Ska 4043955 252 15 2002-02-26 01:25:44-08 2002-02-26 01:25:44-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/15OPENUP.MP3 Landlord Me Mom and Morgentaller Shiva Space Machine Ska 3835797 239 16 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/MEMOMAND/SHIVASPA/16LANDLO.MP3 Smells Like Teen Spirit Nirvana Nevermind Alternative 4819209 301 1 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/01SMELLS.MP3 In Bloom Nirvana Nevermind Alternative 4078710 254 2 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/02INBLOO.MP3 Come As You Are Nirvana Nevermind Alternative 3506392 219 3 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/03COMEAS.MP3 Breed Nirvana Nevermind Alternative 2941301 183 4 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/04BREED.MP3 Lithium Nirvana Nevermind Alternative 4113260 257 5 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/05LITHIU.MP3 Polly Nirvana Nevermind Alternative 2831518 176 6 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/06POLLY.MP3 Territorial Pissings Nirvana Nevermind Alternative 2291390 143 7 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/07TERRIT.MP3 Drain You Nirvana Nevermind Alternative 3582872 223 8 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/08DRAINY.MP3 Lounge Act Nirvana Nevermind Alternative 2509554 156 9 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/09LOUNGE.MP3 Stay Away Nirvana Nevermind Alternative 3400644 212 10 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/10STAYAW.MP3 On A Plain Nirvana Nevermind Alternative 3143600 196 11 2002-02-26 01:25:45-08 2002-02-26 01:25:45-08 128 44100 MPEG AUDIO FILE MP3011/NIRVANA/NEVERMIN/11ONAPLA.MP3 Testify Rage Against The Machine The Battle of Los Angeles Alternative 3366122 210 1 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/01TESTIF.MP3 Guerrilla Radio Rage Against The Machine The Battle of Los Angeles Alternative 3298281 206 2 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/02GUERRI.MP3 Calm Like A Bomb Rage Against The Machine The Battle of Los Angeles Alternative 4783708 298 3 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/03CALMLI.MP3 Mic Ckeck Rage Against The Machine The Battle of Los Angeles Alternative 3420041 213 4 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/04MICCKE.MP3 Sleep Now In the Fire Rage Against The Machine The Battle of Los Angeles Alternative 3292018 205 5 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/05SLEEPN.MP3 Born of Broken Man Rage Against The Machine The Battle of Los Angeles Alternative 4496572 281 6 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/06BORNOF.MP3 Born as Ghost Rage Against The Machine The Battle of Los Angeles Alternative 3234331 202 7 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/07BORNAS.MP3 Maria Rage Against The Machine The Battle of Los Angeles Alternative 3650192 228 8 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/08MARIA.MP3 Voice of the Voiceless Rage Against The Machine The Battle of Los Angeles Alternative 2425172 151 9 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/09VOICEO.MP3 New Millennium Homes Rage Against The Machine The Battle of Los Angeles Alternative 3597965 224 10 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/10NEWMIL.MP3 Ashes in the Fall Rage Against The Machine The Battle of Los Angeles Alternative 4431095 276 11 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/11ASHESI.MP3 War Within the Breath Rage Against The Machine The Battle of Los Angeles Alternative 3470628 216 12 2002-02-26 01:25:46-08 2002-02-26 01:25:46-08 128 44100 MPEG AUDIO FILE MP3011/RAGEAGAI/THEBATTL/12WARWIT.MP3 Impossible Roller Starter Roller Starter - Demo CD Ska 3047900 190 1 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/01IMPOSS.MP3 So Called Friend Roller Starter Roller Starter - Demo CD Ska 3299519 206 2 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/02SOCALL.MP3 Another Asswipe Roller Starter Roller Starter - Demo CD Ska 3382692 211 3 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/03ANOTHE.MP3 It Falls On You Roller Starter Roller Starter - Demo CD Ska 2489095 155 4 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/04ITFALL.MP3 Hopeless Roller Starter Roller Starter - Demo CD Ska 2746969 171 5 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/05HOPELE.MP3 Rotodizer Roller Starter Roller Starter - Demo CD Ska 2270079 141 6 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/06ROTODI.MP3 Tits Of Steel Roller Starter Roller Starter - Demo CD Ska 2615457 163 7 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/07TITSOF.MP3 Vader Roller Starter Roller Starter - Demo CD Ska 1933618 120 8 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/08VADER.MP3 Ice Cream Roller Starter Roller Starter - Demo CD Ska 2085481 130 9 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/09ICECRE.MP3 Just A rat Roller Starter Roller Starter - Demo CD Ska 2739032 171 10 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/10JUSTAR.MP3 Starting To Roll Roller Starter Roller Starter - Demo CD Ska 2595818 162 11 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 128 44100 MPEG AUDIO FILE MP3011/ROLLERST/11STARTI.MP3 vince_cdnnot.mp3 N/A N/A Comedy 602219 100 0 2002-02-26 01:25:47-08 2002-02-26 01:25:47-08 48 44100 MPEG AUDIO FILE MP3011/VARIOUSA/VINCECDN.MP3 Mother Goldie Saturnz Return - Disc 1 - Mother Electronic 57857317 3616 1 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZ1/01MOTHER.MP3 Truth Goldie Saturnz Return - Disc 1 - Mother Electronic 6008666 375 2 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZ1/02TRUTH.MP3 Untitled Goldie Saturnz Return - Disc 1 - Mother Electronic 8276515 517 3 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZ1/03UNTITL.MP3 Temper Temper Goldie Saturnz Return - Disk 2 - Saturn Electronic 5027770 314 1 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/01TEMPER.MP3 Digital Goldie Saturnz Return - Disk 2 - Saturn Electronic 5645090 352 2 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/02DIGITA.MP3 I'll Be There For You Goldie Saturnz Return - Disk 2 - Saturn Electronic 6683314 417 3 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/03ILLBET.MP3 Believe Goldie Saturnz Return - Disk 2 - Saturn Electronic 6873193 429 4 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/04BELIEV.MP3 Dragonfly Goldie Saturnz Return - Disk 2 - Saturn Electronic 15426586 964 5 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/05DRAGON.MP3 Chico - Death of a Rock Star Goldie Saturnz Return - Disk 2 - Saturn Electronic 6954994 434 6 2002-02-26 01:25:48-08 2002-02-26 01:25:48-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/06CHICOD.MP3 Letter Of Fate Goldie Saturnz Return - Disk 2 - Saturn Electronic 7590000 474 7 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/07LETTER.MP3 Fury - The Origin Goldie Saturnz Return - Disk 2 - Saturn Electronic 6242781 390 8 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/08FURYTH.MP3 Crystal Clear Goldie Saturnz Return - Disk 2 - Saturn Electronic 6621030 413 9 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/09CRYSTA.MP3 Demonz Goldie Saturnz Return - Disk 2 - Saturn Electronic 5250677 328 10 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/GOLDIE/SATURNZR/10DEMONZ.MP3 Plateau The Orb live '93 (disc one) Ambient 11355350 709 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/101PLAT.MP3 Oobe The Orb live '93 (disc one) Ambient 11435598 714 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/102OOBE.MP3 Little Fluffy Clouds The Orb live '93 (disc one) Ambient 10549944 659 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/103LITT.MP3 Star 6 & 7 8 9 The Orb live '93 (disc one) Ambient 9477059 592 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/104STAR.MP3 Towers of Dub The Orb live '93 (disc one) Ambient 11957621 747 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/105TOWE.MP3 Blue Room The Orb live '93 (disc one) Ambient 14378764 898 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/106BLUE.MP3 valley The Orb live '93 (disc two) Ambient 9663892 603 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/201VALL.MP3 perpetual dawn The Orb live '93 (disc two) Ambient 8620555 538 0 2002-02-26 01:25:49-08 2002-02-26 01:25:49-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/202PERP.MP3 assassin The Orb live '93 (disc two) Ambient 11338228 708 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/203ASSA.MP3 outlands The Orb live '93 (disc two) Ambient 8687541 542 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/204OUTL.MP3 spanish castles in space The Orb live '93 (disc two) Ambient 10027097 626 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/205SPAN.MP3 A Huge Pulsating Brain The Rules From... The Orb live '93 (disc two) Ambient 18127948 1132 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/ORBLIVE/206AHUG.MP3 Intergalactic (Fatboy Slim remix) Beastie Boys N/A Hip-Hop 5549196 346 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/BEASTIEB/INTERGAL.MP3 Hunter - Live Bjork Hunter(UK Single) Avantgarde 4297584 268 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/BJORK/HUNTERL.MP3 Hunter - Mood Swing Remix Bjork Hunter(UK Single) Avantgarde 2915811 182 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/BJORK/HUNTERR.MP3 Eskimo Corky and the Juice Pigs Live (Mad TV) Comedy 1483208 185 0 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 64 48000 MPEG AUDIO FILE MP3010/VARIOUSA/CORKYJP.MP3 Poison Prodigy This is TECHNO (Disc one) Electronic 3859716 241 1 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/01PRODIG.MP3 Higher State Of Consciousness Josh Wink This is TECHNO (Disc one) Electronic 8271716 516 2 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/02JOSHWI.MP3 2 Paintings And A Drum Carl Cox This is TECHNO (Disc one) Electronic 3524112 220 3 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/03CARLCO.MP3 Stormwatch Morph This is TECHNO (Disc one) Electronic 7618283 476 4 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/04MORPH.MP3 Tour De Force This is TECHNO (Disc one) Electronic 4046542 252 5 2002-02-26 01:25:50-08 2002-02-26 01:25:50-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/05DEFORC.MP3 Harlequin (The Beauty & The Beast) Sven Vath This is TECHNO (Disc one) Electronic 9616155 601 6 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/06SVENVA.MP3 Spastik Plastikman This is TECHNO (Disc one) Electronic 8956172 559 7 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/07PLASTI.MP3 Cuban Timewarp Neuropolitique This is TECHNO (Disc one) Electronic 7758452 484 8 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/08NEUROP.MP3 Time Mark Broom This is TECHNO (Disc one) Electronic 6384189 399 9 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/09MARKBR.MP3 LFO LFO This is TECHNO (Disc one) Electronic 5096730 318 10 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/10LFO.MP3 Below & Above Trio This is TECHNO (Disc one) Electronic 2937982 183 11 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/11TRIO.MP3 Above Your Eyes Scanner This is TECHNO (Disc one) Electronic 3837435 239 12 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISIST1/12SCANNE.MP3 Open Up Leftfield This is TECHNO (Disc Two) Electronic 3627194 226 1 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/01LEFTFI.MP3 Boss Drum The Shamen This is TECHNO (Disc Two) Electronic 5785259 361 2 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/02THESHA.MP3 Dark & Long (Dark Train Mix) Underworld This is TECHNO (Disc Two) Electronic 9635794 602 3 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/03UNDERW.MP3 We No Longer Understand As One This is TECHNO (Disc Two) Electronic 3804003 237 4 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/04ASONE.MP3 Dreamland Carl Craig This is TECHNO (Disc Two) Electronic 7780873 486 5 2002-02-26 01:25:51-08 2002-02-26 01:25:51-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/05CARLCR.MP3 Go Moby This is TECHNO (Disc Two) Electronic 6296828 393 6 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/06MOBY.MP3 Little Fluffy Clouds The Orb This is TECHNO (Disc Two) Electronic 8796940 549 7 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/07THEORB.MP3 Digeridoo Aphex Twin This is TECHNO (Disc Two) Electronic 6891037 430 8 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/08APHEXT.MP3 Airbourne (Carl Craig's Drums Suck Mix) Dave Angel This is TECHNO (Disc Two) Electronic 11202455 700 9 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/09DAVEAN.MP3 Progression Mantra This is TECHNO (Disc Two) Electronic 3600447 225 10 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/10MANTRA.MP3 Hypnotic State Fantasy Flight This is TECHNO (Disc Two) Electronic 2773457 173 11 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/11FANTAS.MP3 Collision Eclipse This is TECHNO (Disc Two) Electronic 2195826 137 12 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3010/VARIOUSA/THISISTE/12ECLIPS.MP3 Take My Breath Away Berlin Count Three and Pray Pop 4033715 252 0 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/BERLIN/COUNTTHR/TAKEMYBR.MP3 Europa Carlos Santana N/A Rock 3233698 202 0 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/CARLOSSA/UNKNOWNA/EUROPA.MP3 n/a Carlos Santana N/A Rock 6904629 431 0 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/CARLOSSA/UNKNOWNA/NA.MP3 The Ballad Of Peter Pumpkinhead Crash Test Dummies Dumb And Dumber Soundtrack 3598216 224 1 2002-02-26 01:25:52-08 2002-02-26 01:25:52-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/DUMBANDD/THEBALLA.MP3 Afternoons & Coffeespoons Crash Test Dummies God Shuffled His Feet Rock 3784638 236 2 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/GODSHUFF/AFTERNOO.MP3 God Shuffled His Feet Crash Test Dummies God Shuffled His Feet Rock 4955839 309 1 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/GODSHUFF/GODSHUFF.MP3 In The Days Of The Caveman Crash Test Dummies God Shuffled His Feet Rock 3558941 222 4 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/CRASHTES/GODSHUFF/INTHEDAY.MP3 Benny The Bouncer Emerson, Lake & Palmer Brain Salad Surgery Rock 2212262 138 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/BENNYTHE.MP3 Jerusalem Emerson, Lake & Palmer Brain Salad Surgery Rock 2626870 164 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/JERUSALE.MP3 Karn Evil 9-2nd Impression Emerson, Lake & Palmer Brain Salad Surgery Rock 6839521 427 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/KARNEVI1.MP3 Karn Evil 9-3rd Impression Emerson, Lake & Palmer Brain Salad Surgery Rock 8694233 543 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/KARNEVI2.MP3 Karn Evil 9-1st Impression Pt1 Emerson, Lake & Palmer Brain Salad Surgery Rock 8360592 522 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/KARNEVIL.MP3 Still....You Turn Me On Emerson, Lake & Palmer Brain Salad Surgery Rock 2750600 171 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/STILLYOU.MP3 Toccata Emerson, Lake & Palmer Brain Salad Surgery Rock 7047202 440 0 2002-02-26 01:25:53-08 2002-02-26 01:25:53-08 128 44100 MPEG AUDIO FILE MP3022/EMERSONL/BRAINSAL/TOCCATA.MP3 Help me Dr.Dick E-Rotic The power of sex Dance 3579248 223 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 22050 MPEG AUDIO FILE MP3022/EROTIC/THEPOWER/HELPMEDR.MP3 Max Don't Have Sex With YourEx E-Rotic The power of sex Dance 3349234 209 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/EROTIC/THEPOWER/MAXDONTH.MP3 Geek Stink Breath Green Day Insomniac Grunge 2155396 134 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/GREENDAY/INSOMNIA/GEEKSTIN.MP3 Celebrity Skin Hole Celebrity Skin Grunge 2596887 162 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/HOLE/CELEBRIT/CELEBRIT.MP3 Sex & Candy Marcy Playground N/A Rock 2776887 173 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/MARCYPLA/UNKNOWNA/SEXCANDY.MP3 Pretty Fly Offspring Americana Grunge 3018892 188 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/OFFSPRIN/AMERICAN/PRETTYFL.MP3 Why Don't You Get A Job? Offspring Americana Grunge 2747373 171 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/OFFSPRIN/AMERICAN/WHYDONTY.MP3 Self esteem Offspring N/A Grunge 4124508 257 0 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/OFFSPRIN/UNKNOWNA/SELFESTE.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 35370219 2210 3 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID1.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 23220151 1451 5 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID2.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 21865546 1366 6 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID3.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 28467626 1779 7 2002-02-26 01:25:54-08 2002-02-26 01:25:54-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID4.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 23849597 1490 8 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID5.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 28829160 1801 1 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRID6.MP3 Cambridge Lectures Stephen William Hawking The Cambridge Lectures Vocal 27653164 1728 2 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/CAMBRIDG.MP3 Lecture4-Ain'tSoBlack Stephen William Hawking The Cambridge Lectures Vocal 33076463 2067 4 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 128 44100 MPEG AUDIO FILE MP3022/STEPHENW/THECAMBR/LECTURE4.MP3 Closing Steve Martin Let's Get Small Comedy 992629 124 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/CLOSING.MP3 Excuse Me Steve Martin Let's Get Small Comedy 1462836 182 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/EXCUSEME.MP3 Funny Comedy Gags Steve Martin Let's Get Small Comedy 1492730 186 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/FUNNYCOM.MP3 Grandmother's Song Steve Martin Let's Get Small Comedy 1725256 215 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/GRANDMOT.MP3 Let's Get Small Steve Martin Let's Get Small Comedy 7490036 936 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/LETSGETS.MP3 Mad at My Mother Steve Martin Let's Get Small Comedy 436931 54 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/MADATMYM.MP3 One Way to Leave Your Lover Steve Martin Let's Get Small Comedy 750234 93 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/ONEWAYTO.MP3 Ramblin' Man-Theme from Rambli Steve Martin Let's Get Small Comedy 1077708 134 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/RAMBLINM.MP3 Smoking Steve Martin Let's Get Small Comedy 1046687 130 0 2002-02-26 01:25:55-08 2002-02-26 01:25:55-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/SMOKING.MP3 Vegas Steve Martin Let's Get Small Comedy 1832937 229 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 44100 MPEG AUDIO FILE MP3022/STEVEMAR/LETSGETS/VEGAS.MP3 Around The World in 80 Days The Goons The Goons Show Comedy 13087232 1635 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 22050 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/AROUNDTH.MP3 At Last The Go On Show - 27 May 1991 The Goons The Goons Show Comedy 33030399 4128 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 22050 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/ATLASTTH.MP3 Drums Along The Mersey The Goons The Goons Show Comedy 14030197 1753 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 44100 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/DRUMSALO.MP3 n/a The Goons The Goons Show Comedy 15715983 1964 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 24000 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/NA.MP3 The Mummified Priest The Goons The Goons Show Comedy 14708962 1838 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 44100 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/THEMUMMI.MP3 Ye Bandit of Sherwood Forest The Goons The Goons Show Comedy 12521105 1565 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 64 22050 MPEG AUDIO FILE MP3022/THEGOONS/THEGOONS/YEBANDIT.MP3 tuesday afternoon The Moody Blues Days of Future Passed Rock 8057414 503 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/DAYSOFFU/TUESDAYA.MP3 Are You Sitting Comfortably The Moody Blues On the Threshold of a Dream Rock 3362079 210 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/AREYOUSI.MP3 Dear Diary The Moody Blues On the Threshold of a Dream Rock 3784618 236 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/DEARDIAR.MP3 Have You Heard - Part 2 The Moody Blues On the Threshold of a Dream Rock 2447580 152 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/HAVEYOU1.MP3 Have You Heard - Part 1 The Moody Blues On the Threshold of a Dream Rock 1605615 100 0 2002-02-26 01:25:56-08 2002-02-26 01:25:56-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/HAVEYOUH.MP3 In the Beginning The Moody Blues On the Threshold of a Dream Rock 2063229 128 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/INTHEBEG.MP3 Lazy Day The Moody Blues On the Threshold of a Dream Rock 2614331 163 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/LAZYDAY.MP3 Lovely to See You The Moody Blues On the Threshold of a Dream Rock 2470144 154 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/LOVELYTO.MP3 Never Comes the Day The Moody Blues On the Threshold of a Dream Rock 4538625 283 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/NEVERCOM.MP3 Send Me No Wine The Moody Blues On the Threshold of a Dream Rock 2238733 139 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/SENDMENO.MP3 So Deep Within You The Moody Blues On the Threshold of a Dream Rock 2910900 181 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/SODEEPWI.MP3 The Dream The Moody Blues On the Threshold of a Dream Rock 929539 58 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/THEDREAM.MP3 The Voyage The Moody Blues On the Threshold of a Dream Rock 3821923 238 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/THEVOYAG.MP3 To Share Our Love The Moody Blues On the Threshold of a Dream Rock 2794480 174 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/ONTHETHR/TOSHAREO.MP3 for my lady The Moody Blues Seventh Sojourn Rock 3800908 237 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/FORMYLAD.MP3 i'm just a singer The Moody Blues Seventh Sojourn Rock 4194213 262 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/IMJUSTAS.MP3 isn't life strange The Moody Blues Seventh Sojourn Rock 5763790 360 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/ISNTLIFE.MP3 lost in a lost world The Moody Blues Seventh Sojourn Rock 4564250 285 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/LOSTINAL.MP3 new horizons The Moody Blues Seventh Sojourn Rock 4963810 310 0 2002-02-26 01:25:57-08 2002-02-26 01:25:57-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/NEWHORIZ.MP3 the land of make-believe The Moody Blues Seventh Sojourn Rock 4663170 291 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/THELANDO.MP3 when you're a free man The Moody Blues Seventh Sojourn Rock 5842230 365 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/WHENYOUR.MP3 you and me The Moody Blues Seventh Sojourn Rock 4152410 259 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEMOODY/SEVENTHS/YOUANDME.MP3 Bagged Me A Homer The Simpsons Songs In The Key Of Springfiel Comedy 2218673 138 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/BAGGEDME.MP3 Homer's Barbershop Quartet The Simpsons Songs In The Key Of Springfiel Comedy 1562904 97 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/HOMERSBA.MP3 Honey Roasted Peanuts The Simpsons Songs In The Key Of Springfiel Comedy 986950 61 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/HONEYROA.MP3 TV Sucks! The Simpsons Songs In The Key Of Springfiel Comedy 557138 34 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THESIMPS/SONGSINT/TVSUCKS.MP3 Won't Get Fooled Again The Who Who's Next Pop 8195048 512 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/THEWHO/WHOSNEXT/WONTGETF.MP3 n/a N/A N/A Comedy 1955554 244 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 64 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA.MP3 n/a N/A N/A Comedy 2904334 181 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA10.MP3 n/a N/A N/A Comedy 4760488 297 0 2002-02-26 01:25:58-08 2002-02-26 01:25:58-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA11.MP3 n/a N/A N/A Comedy 3151347 196 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA12.MP3 n/a N/A N/A Comedy 2564533 160 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA13.MP3 n/a N/A N/A Comedy 4423615 276 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA2.MP3 n/a N/A N/A Comedy 4177994 261 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA3.MP3 n/a N/A N/A Comedy 4381958 273 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA4.MP3 n/a N/A N/A Comedy 5491918 343 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA5.MP3 n/a N/A N/A Comedy 2801098 175 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA6.MP3 n/a N/A N/A Comedy 2688667 168 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA7.MP3 n/a N/A N/A Comedy 3803781 237 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA8.MP3 n/a N/A N/A Comedy 5347026 334 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/NA9.MP3 Usage of Fuck N/A N/A Comedy 1200655 150 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 64 22050 MPEG AUDIO FILE MP3022/UNKNOWNA/UNKNOWNA/USAGEOFF.MP3 Gypsy Uriah Heep A Time Of Revelation - Disc 1 Pop 6382783 398 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/URIAHHEE/ATIMEOF1/GYPSY.MP3 The Wizard Uriah Heep A Time Of Revelation - Disc 2 Pop 2875136 179 0 2002-02-26 01:25:59-08 2002-02-26 01:25:59-08 128 44100 MPEG AUDIO FILE MP3022/URIAHHEE/ATIMEOFR/THEWIZAR.MP3 Sweet Freedom Uriah Heep Sweet Freedom Pop 6351288 396 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/URIAHHEE/SWEETFRE/SWEETFRE.MP3 Volcano Girls Veruca Salt Eight Arms to Hold You Rock 3182751 198 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/VERUCASA/EIGHTARM/VOLCANOG.MP3 YMCA Village People Cruisin' Pop 4615512 288 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/VILLAGEP/CRUISIN/YMCA.MP3 Amish Paradise Weird Al Yankovic N/A Comedy 3206124 200 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3022/WEIRDALY/UNKNOWNA/AMISHPAR.MP3 Night Club Years 1964-68 Woody Allen Night Club Years Comedy 12430955 1553 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 64 22050 MPEG AUDIO FILE MP3022/WOODYALL/NIGHTCLU/NIGHTCLU.MP3 Devorzhum DeadCanDance N/A Alternative 5980526 373 0 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEADCAND/UNKNOWNA/DEVORZHU.MP3 Barrel Of A Gun (Single Version) Depeche Mode Barrel Of A Gun - Single Alternative 5286467 330 1 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/01BARREL.MP3 Painkiller Plastikman Barrel Of A Gun - Single Alternative 8322516 520 2 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/02PAINKI.MP3 Barrel Of A Gun (Soft Mix) Underworld Barrel Of A Gun - Single Alternative 6238165 389 3 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/03BARREL.MP3 Barrel Of A Gun One Inch Punch Barrel Of A Gun - Single Alternative 5289397 330 4 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/04BARREL.MP3 Barrel Of A Gun (Hard Mix) Underworld Barrel Of A Gun - Single Alternative 9232005 577 5 2002-02-26 01:26:00-08 2002-02-26 01:26:00-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/BARRELOF/05BARREL.MP3 Never Let Me Down Again Depeche Mode Music for the Masses Alternative 4602319 287 1 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/01NEVERL.MP3 The Things You Said Depeche Mode Music for the Masses Alternative 3886769 242 2 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/02THETHI.MP3 Strangelove Depeche Mode Music for the Masses Alternative 4726581 295 3 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/03STRANG.MP3 Sacred Depeche Mode Music for the Masses Alternative 4625290 289 4 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/04SACRED.MP3 Little 15 Depeche Mode Music for the Masses Alternative 4143804 258 5 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/05LITTLE.MP3 Behind The Wheel Depeche Mode Music for the Masses Alternative 5090070 318 6 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/06BEHIND.MP3 I Want You Now Depeche Mode Music for the Masses Alternative 3590849 224 7 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/07IWANTY.MP3 To Have And To Hold Depeche Mode Music for the Masses Alternative 2747831 171 8 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/08TOHAVE.MP3 Nothing Depeche Mode Music for the Masses Alternative 4132935 258 9 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/09NOTHIN.MP3 Pimpf Depeche Mode Music for the Masses Alternative 5206394 325 10 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/10PIMPF.MP3 Agent Orange Depeche Mode Music for the Masses Alternative 4882900 305 11 2002-02-26 01:26:01-08 2002-02-26 01:26:01-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/11AGENTO.MP3 Never Let Me Down Again (Aggro Mix) Depeche Mode Music for the Masses Alternative 4764501 297 12 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/12NEVERL.MP3 To Have And To Hold (Spanish Taster) Depeche Mode Music for the Masses Alternative 2502926 156 13 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/13TOHAVE.MP3 Pleasure, Little Treasure Depeche Mode Music for the Masses Alternative 5371507 335 14 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/MUSICFOR/14PLEASU.MP3 People Are People Depeche Mode People Are People Alternative 3643892 227 1 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/01PEOPLE.MP3 Now This Is Fun Depeche Mode People Are People Alternative 3301582 206 2 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/02NOWTHI.MP3 Love In Itself Depeche Mode People Are People Alternative 4257453 266 3 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/03LOVEIN.MP3 Work Hard Depeche Mode People Are People Alternative 4241983 265 4 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/04WORKHA.MP3 Told You So Depeche Mode People Are People Alternative 4270407 266 5 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/05TOLDYO.MP3 Get The Balance Right Depeche Mode People Are People Alternative 3142345 196 6 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/06GETTHE.MP3 Leave In Silence Depeche Mode People Are People Alternative 3892159 243 7 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/07LEAVEI.MP3 Pipeline Depeche Mode People Are People Alternative 5967457 372 8 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/08PIPELI.MP3 Everything Counts Depeche Mode People Are People Alternative 7030196 439 9 2002-02-26 01:26:02-08 2002-02-26 01:26:02-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/PEOPLEAR/09EVERYT.MP3 I Feel You Depeche Mode Songs Of Faith And Devotion Alternative 4405426 275 1 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/01IFEELY.MP3 Walking In My Shoes Depeche Mode Songs Of Faith And Devotion Alternative 5363397 335 2 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/02WALKIN.MP3 Condemnation Depeche Mode Songs Of Faith And Devotion Alternative 3207558 200 3 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/03CONDEM.MP3 Mercy In You Depeche Mode Songs Of Faith And Devotion Alternative 4124700 257 4 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/04MERCYI.MP3 Judas Depeche Mode Songs Of Faith And Devotion Alternative 5031106 314 5 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/05JUDAS.MP3 In Your Room Depeche Mode Songs Of Faith And Devotion Alternative 6189835 386 6 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/06INYOUR.MP3 Get Right With Me Depeche Mode Songs Of Faith And Devotion Alternative 3726390 232 7 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/07GETRIG.MP3 Rush Depeche Mode Songs Of Faith And Devotion Alternative 4442201 277 8 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/08RUSH.MP3 One Caress Depeche Mode Songs Of Faith And Devotion Alternative 3406922 212 9 2002-02-26 01:26:03-08 2002-02-26 01:26:03-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/09ONECAR.MP3 Higher Love Depeche Mode Songs Of Faith And Devotion Alternative 5732867 358 10 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/SONGSOFF/10HIGHER.MP3 Barrel Of A Gun Depeche Mode Ultra Alternative 5369238 335 1 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/01BARREL.MP3 The Love Thieves Depeche Mode Ultra Alternative 6307975 394 2 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/02THELOV.MP3 Home Depeche Mode Ultra Alternative 5487509 342 3 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/03HOME.MP3 It's No Good Depeche Mode Ultra Alternative 5735367 358 4 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/04ITSNOG.MP3 Uselink Depeche Mode Ultra Alternative 2262123 141 5 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/05USELIN.MP3 Useless Depeche Mode Ultra Alternative 4995574 312 6 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/06USELES.MP3 Sister Of Night Depeche Mode Ultra Alternative 5833590 364 7 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/07SISTER.MP3 Jazz Thieves Depeche Mode Ultra Alternative 2798787 174 8 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/08JAZZTH.MP3 Freestate Depeche Mode Ultra Alternative 6464702 404 9 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/09FREEST.MP3 The Bottom Line Depeche Mode Ultra Alternative 4272097 267 10 2002-02-26 01:26:04-08 2002-02-26 01:26:04-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/10THEBOT.MP3 Insight Depeche Mode Ultra Alternative 6186481 386 11 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/11INSIGH.MP3 Junior Painkiller Depeche Mode Ultra Alternative 303719 18 12 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/ULTRA/12JUNIOR.MP3 Never let me down again Smashing Pumpkins Various artists for the MASSES Alternative 3862979 241 1 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/01SMASHI.MP3 Fly on the windscreen God Lives Underwater Various artists for the MASSES Alternative 5168683 323 2 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/02GODLIV.MP3 Enjoy the silence Failure Various artists for the MASSES Alternative 4168073 260 3 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/03FAILUR.MP3 The world in my eyes The Cure Various artists for the MASSES Alternative 4669627 291 4 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/04THECUR.MP3 Policy of truth Dishwalla Various artists for the MASSES Alternative 3613859 225 5 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/05DISHWA.MP3 Somebody Veruca Salt Various artists for the MASSES Alternative 3931643 245 6 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/06VERUCA.MP3 Everything counts Meat Beat Manifesto Various artists for the MASSES Alternative 5185815 324 7 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/07MEATBE.MP3 Shake the disease Hooverphonic Various artists for the MASSES Alternative 3828277 239 8 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/08HOOVER.MP3 Master and servant Locust Various artists for the MASSES Alternative 3530685 220 9 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/09LOCUST.MP3 Shame Self Various artists for the MASSES Alternative 4037656 252 10 2002-02-26 01:26:05-08 2002-02-26 01:26:05-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/10SELF.MP3 Black celebration Monster Magnet Various artists for the MASSES Alternative 4106364 256 11 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/11MONSTE.MP3 Waiting for the night Rabbit in the Moon Various artists for the MASSES Alternative 7269903 454 12 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/12WAITIN.MP3 I feel you Apollo Four Forty Various artists for the MASSES Alternative 5147356 321 13 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/13IFEELY.MP3 Monument Gus Gus Various artists for the MASSES Alternative 5143304 321 14 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/14MONUME.MP3 To have and to hold Deftones Various artists for the MASSES Alternative 2774602 173 15 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/15TOHAVE.MP3 Stripped Rammstein Various artists for the MASSES Alternative 4552590 284 16 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VARIOUSA/16STRIPP.MP3 WORLD IN MY EYES Depeche Mode VIOLATOR Alternative 4272075 267 1 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/01WORLDI.MP3 SWEETEST PERFECTION Depeche Mode VIOLATOR Alternative 4543334 283 2 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/02SWEETE.MP3 PERSONAL JESUS Depeche Mode VIOLATOR Alternative 4735730 295 3 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/03PERSON.MP3 HALO Depeche Mode VIOLATOR Alternative 4322358 270 4 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/04HALO.MP3 WAITING FOR THE NIGHT Depeche Mode VIOLATOR Alternative 5877183 367 5 2002-02-26 01:26:06-08 2002-02-26 01:26:06-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/05WAITIN.MP3 ENJOY THE SILENCE Depeche Mode VIOLATOR Alternative 5964532 372 6 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/06ENJOYT.MP3 POLICY OF TRUTH Depeche Mode VIOLATOR Alternative 4725978 295 7 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/07POLICY.MP3 BLUE DRESS Depeche Mode VIOLATOR Alternative 5435808 339 8 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/08BLUEDR.MP3 CLEAN Depeche Mode VIOLATOR Alternative 5305259 331 9 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/VIOLATOR/09CLEAN.MP3 World In My Eyes Single Version Depeche Mode World In My Eyes Alternative 3844235 240 1 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/01WORLDI.MP3 World In My Eyes Oil Tank World In My Eyes Alternative 7206574 450 2 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/02WORLDI.MP3 Happiest Girl Orbital World In My Eyes Alternative 6216435 388 3 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/03HAPPIE.MP3 Sea Of Sin Tonal World In My Eyes Alternative 4557540 284 4 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/04SEAOFS.MP3 World In My Eyes Mode To Joy World In My Eyes Alternative 6278429 392 5 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/05WORLDI.MP3 Happiest Girl Jack World In My Eyes Alternative 4778225 298 6 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/06HAPPIE.MP3 Sea Of Sin Sensoria World In My Eyes Alternative 5869657 366 7 2002-02-26 01:26:07-08 2002-02-26 01:26:07-08 128 44100 MPEG AUDIO FILE MP3012/DEPECHEM/WORLDINM/07SEAOFS.MP3 Je T'Aimais, Je T'Aime Et Je T Francis Cabrel 77-87 Rock 4452225 278 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/JETAIMAI.MP3 Je T'Aime A Mourir Francis Cabrel 77-87 Rock 2640638 165 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/JETAIMEA.MP3 Je te suivrai Francis Cabrel 77-87 Rock 3984940 249 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/JETESUIV.MP3 Petite Marie Francis Cabrel 77-87 Rock 3319967 207 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/7787/PETITEMA.MP3 L'Arbre Va Tomber Francis Cabrel N/A Rock 5300099 331 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FRANCISC/UNKNOWNA/LARBREVA.MP3 Expander Future Sound Of London Accelerator Ambient 5437357 339 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FUTURESO/ACCELERA/EXPANDER.MP3 My Kingdom Future Sound Of London Dead Cities Ambient 5536693 346 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/FUTURESO/DEADCITI/MYKINGDO.MP3 Demention Hallucinogen The Lone Deranger Electronic 6997862 437 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/HALLUCIN/THELONED/DEMENTIO.MP3 Dadamnphreaknoizph Hardfloor DJ Kicks: Kruder & Dorfmeister Electronic 5200319 325 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/DJKICKSK/DADAMNPH.MP3 Spook & Spell Hardfloor Ghost in the Shell Soundtrack Electronic 5650793 353 0 2002-02-26 01:26:08-08 2002-02-26 01:26:08-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/GHOSTINT/SPOOKSPE.MP3 Acid Techno Mix Hardfloor N/A Electronic 4752147 297 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/UNKNOWNA/ACIDTECH.MP3 Vicious Games Hardfloor N/A Electronic 3943623 246 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/HARDFLOO/UNKNOWNA/VICIOUSG.MP3 Deeper Underground Jamiroquai Godzilla SoundTrack Soundtrack 4515742 282 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/JAMIROQU/GODZILLA/DEEPERUN.MP3 Children of the Night Juno Reactor Bible of Dreams Electronic 7638754 477 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/JUNOREAC/BIBLEOFD/CHILDREN.MP3 Planet of the Shapes Orbital Orbital 2 Ambient 9218296 576 0 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/ORBITAL/ORBITAL2/PLANETOF.MP3 Cherub Rock Smashing Pumpkins Siamese Dream Alternative 4769621 298 1 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/01CHERUB.MP3 Quiet Smashing Pumpkins Siamese Dream Alternative 3552379 222 2 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/02QUIET.MP3 Today Smashing Pumpkins Siamese Dream Alternative 3200040 200 3 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/03TODAY.MP3 Hummer Smashing Pumpkins Siamese Dream Alternative 6674952 417 4 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/04HUMMER.MP3 Rocket Smashing Pumpkins Siamese Dream Alternative 3949999 246 5 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/05ROCKET.MP3 Disarm Smashing Pumpkins Siamese Dream Alternative 3155041 197 6 2002-02-26 01:26:09-08 2002-02-26 01:26:09-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/06DISARM.MP3 Soma Smashing Pumpkins Siamese Dream Alternative 6399933 399 7 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/07SOMA.MP3 Geek U.S.A. Smashing Pumpkins Siamese Dream Alternative 5023183 313 8 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/08GEEKUS.MP3 Mayonaise Smashing Pumpkins Siamese Dream Alternative 5586311 349 9 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/09MAYONA.MP3 Spaceboy Smashing Pumpkins Siamese Dream Alternative 4298859 268 10 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/10SPACEB.MP3 Silverfuck Smashing Pumpkins Siamese Dream Alternative 8376469 523 11 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/11SILVER.MP3 Sweet Sweet Smashing Pumpkins Siamese Dream Alternative 1584218 99 12 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/12SWEETS.MP3 Luna Smashing Pumpkins Siamese Dream Alternative 3210906 200 13 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/SMASHING/SIAMESED/13LUNA.MP3 Plainsong The Cure Disintegration Alternative 5051309 315 1 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/01PLAINS.MP3 Pictures Of You The Cure Disintegration Alternative 7177890 448 2 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/02PICTUR.MP3 Closedown The Cure Disintegration Alternative 4176381 261 3 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/03CLOSED.MP3 Love Song The Cure Disintegration Alternative 3366098 210 4 2002-02-26 01:26:10-08 2002-02-26 01:26:10-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/04LOVESO.MP3 Last Dance The Cure Disintegration Alternative 4593923 287 5 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/05LASTDA.MP3 Lullaby The Cure Disintegration Alternative 4016299 251 6 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/06LULLAB.MP3 Fascination Street The Cure Disintegration Alternative 5054660 315 7 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/07FASCIN.MP3 Prayers For Rain The Cure Disintegration Alternative 5908410 369 8 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/08PRAYER.MP3 The Same Deep Water As You The Cure Disintegration Alternative 8990868 561 9 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/09THESAM.MP3 Disintegration The Cure Disintegration Alternative 8061873 503 10 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/10DISINT.MP3 Homesick The Cure Disintegration Alternative 6881830 430 11 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/11HOMESI.MP3 Untitled The Cure Disintegration Alternative 6178405 386 12 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/DISINTEG/12UNTITL.MP3 Want The Cure Wild Mood Swings Alternative 4905730 306 1 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/01WANT.MP3 Club America The Cure Wild Mood Swings Alternative 4823122 301 2 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/02CLUBAM.MP3 This Is A Lie The Cure Wild Mood Swings Alternative 4318089 269 3 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/03THISIS.MP3 The 13Th The Cure Wild Mood Swings Alternative 3972432 248 4 2002-02-26 01:26:11-08 2002-02-26 01:26:11-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/04THE13T.MP3 Strange Attraction The Cure Wild Mood Swings Alternative 4148960 259 5 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/05STRANG.MP3 Mint Car The Cure Wild Mood Swings Alternative 3402336 212 6 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/06MINTCA.MP3 Jupiter Crash The Cure Wild Mood Swings Alternative 4090301 255 7 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/07JUPITE.MP3 Round & Round & Round The Cure Wild Mood Swings Alternative 2543025 158 8 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/08ROUNDR.MP3 Gone! The Cure Wild Mood Swings Alternative 4347338 271 9 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/09GONE.MP3 Numb The Cure Wild Mood Swings Alternative 4633641 289 10 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/10NUMB.MP3 Return The Cure Wild Mood Swings Alternative 3330447 208 11 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/11RETURN.MP3 Trap The Cure Wild Mood Swings Alternative 3480074 217 12 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/12TRAP.MP3 Treasure The Cure Wild Mood Swings Alternative 3605188 225 13 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/13TREASU.MP3 Bare The Cure Wild Mood Swings Alternative 7621630 476 14 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3012/THECURE/WILDMOOD/14BARE.MP3 All I Really Want Alanis Morissette Jagged Little Pill Rock 4571379 285 1 2002-02-26 01:26:12-08 2002-02-26 01:26:12-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/01ALLIRE.MP3 You Oughta Know Alanis Morissette Jagged Little Pill Rock 3987488 249 2 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/02YOUOUG.MP3 Perfect Alanis Morissette Jagged Little Pill Rock 3009874 188 3 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/03PERFEC.MP3 Hand In My Pocket Alanis Morissette Jagged Little Pill Rock 3547378 221 4 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/04HANDIN.MP3 Right Through You Alanis Morissette Jagged Little Pill Rock 2816787 176 5 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/05RIGHTT.MP3 Forgiven Alanis Morissette Jagged Little Pill Rock 4803477 300 6 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/06FORGIV.MP3 You Learn Alanis Morissette Jagged Little Pill Rock 3832141 239 7 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/07YOULEA.MP3 Head Over Feet Alanis Morissette Jagged Little Pill Rock 4280059 267 8 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/08HEADOV.MP3 Mary Jane Alanis Morissette Jagged Little Pill Rock 4489033 280 9 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/09MARYJA.MP3 Ironic Alanis Morissette Jagged Little Pill Rock 3676938 229 10 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/10IRONIC.MP3 Not the Doctor Alanis Morissette Jagged Little Pill Rock 3641837 227 11 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/11NOTTHE.MP3 Wake Up Alanis Morissette Jagged Little Pill Rock 4696759 293 12 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/12WAKEUP.MP3 You Oughta Know (reprise) / Your House Alanis Morissette Jagged Little Pill Rock 7864223 491 13 2002-02-26 01:26:13-08 2002-02-26 01:26:13-08 128 44100 MPEG AUDIO FILE MP3013/ALANISMO/JAGGEDLI/13YOUOUG.MP3 God Made Me Chantal Kreviazuk Under These Rocks And Stones Rock 3060454 191 1 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/01GODMAD.MP3 Surrounded Chantal Kreviazuk Under These Rocks And Stones Rock 5075434 317 2 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/02SURROU.MP3 Don't Be Good Chantal Kreviazuk Under These Rocks And Stones Rock 3929951 245 3 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/03DONTBE.MP3 Believer Chantal Kreviazuk Under These Rocks And Stones Rock 3141535 196 4 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/04BELIEV.MP3 Grace Chantal Kreviazuk Under These Rocks And Stones Rock 3688641 230 5 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/05GRACE.MP3 Wayne Chantal Kreviazuk Under These Rocks And Stones Rock 4573600 285 6 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/06WAYNE.MP3 Hands Chantal Kreviazuk Under These Rocks And Stones Rock 4370750 273 7 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/07HANDS.MP3 Disagree Chantal Kreviazuk Under These Rocks And Stones Rock 3346753 209 8 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/08DISAGR.MP3 Co-Dependent Chantal Kreviazuk Under These Rocks And Stones Rock 3608539 225 9 2002-02-26 01:26:14-08 2002-02-26 01:26:14-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/09CODEPE.MP3 Green Apples Chantal Kreviazuk Under These Rocks And Stones Rock 4249969 265 10 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/10GREENA.MP3 Boot Chantal Kreviazuk Under These Rocks And Stones Rock 3678193 229 11 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/11BOOT.MP3 Imaginary Friend Chantal Kreviazuk Under These Rocks And Stones Rock 4039321 252 12 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHANTALK/UNDERTHE/12IMAGIN.MP3 Below Zero Chiwawa The Sick World Of Yona Rock 4175978 260 1 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/01BELOWZ.MP3 Umbrella Man Chiwawa The Sick World Of Yona Rock 4226971 264 2 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/02UMBREL.MP3 Dream Sequence Chiwawa The Sick World Of Yona Rock 4337314 271 3 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/03DREAMS.MP3 Seaship Chiwawa The Sick World Of Yona Rock 3649345 228 4 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/04SEASHI.MP3 10 To 13 Chiwawa The Sick World Of Yona Rock 5778988 361 5 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/0510TO13.MP3 Details Chiwawa The Sick World Of Yona Rock 4136269 258 6 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/06DETAIL.MP3 On Top Of Tree Chiwawa The Sick World Of Yona Rock 4326029 270 7 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/07ONTOPO.MP3 Nep-Tune Chiwawa The Sick World Of Yona Rock 4646598 290 8 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/08NEPTUN.MP3 Drone Chiwawa The Sick World Of Yona Rock 5212233 325 9 2002-02-26 01:26:15-08 2002-02-26 01:26:15-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/09DRONE.MP3 Innuendo Chiwawa The Sick World Of Yona Rock 4656631 291 10 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/10INNUEN.MP3 Ode To You Chiwawa The Sick World Of Yona Rock 4135160 258 11 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/11ODETOY.MP3 Hush Chiwawa The Sick World Of Yona Rock 5684110 355 12 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/12HUSH.MP3 Gibber Chiwawa The Sick World Of Yona Rock 2824018 176 13 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/CHIWAWA/THESICKW/13GIBBER.MP3 Signe Eric Clapton Unplugged Rock 3088214 193 1 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/01SIGNE.MP3 Before You Accuse Me Eric Clapton Unplugged Rock 3590525 224 2 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/02BEFORE.MP3 Hey Hey Eric Clapton Unplugged Rock 3143293 196 3 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/03HEYHEY.MP3 Tears In Heaven Eric Clapton Unplugged Rock 4393798 274 4 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/04TEARSI.MP3 Lonely Stranger Eric Clapton Unplugged Rock 5263171 328 5 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/05LONELY.MP3 Nobody Knows You When You're Down & Out Eric Clapton Unplugged Rock 3665729 229 6 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/06NOBODY.MP3 Layla Eric Clapton Unplugged Rock 4578883 286 7 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/07LAYLA.MP3 Running On Faith Eric Clapton Unplugged Rock 6237076 389 8 2002-02-26 01:26:16-08 2002-02-26 01:26:16-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/08RUNNIN.MP3 Walkin' Blues Eric Clapton Unplugged Rock 3479241 217 9 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/09WALKIN.MP3 Alberta Eric Clapton Unplugged Rock 3557564 222 10 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/10ALBERT.MP3 San Francisco Bay Blues Eric Clapton Unplugged Rock 3253973 203 11 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/11SANFRA.MP3 Malted Milk Eric Clapton Unplugged Rock 3464820 216 12 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/12MALTED.MP3 Old Love Eric Clapton Unplugged Rock 7577326 473 13 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/13OLDLOV.MP3 Rollin' & Tumblin' Eric Clapton Unplugged Rock 4021341 251 14 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/ERICCLAP/UNPLUGGE/14ROLLIN.MP3 La fille qui m'accompagne Francis Cabrel 77-87 Rock 4348844 271 0 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/LAFILLEQ.MP3 L'encre De Tes Yeux Francis Cabrel 77-87 Rock 2996323 187 0 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/LENCREDE.MP3 Les chemins de traverse Francis Cabrel 77-87 Rock 2810761 175 1 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/LESCHEMI.MP3 Rosie Francis Cabrel 77-87 Rock 3583681 223 0 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/FRANCISC/7787/ROSIE.MP3 Djobi Djoba Gipsy Kings Gipsy Kings - Greatest Hits Latin 3317951 207 1 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/01DJOBID.MP3 Baila Me Gipsy Kings Gipsy Kings - Greatest Hits Latin 3638523 227 2 2002-02-26 01:26:17-08 2002-02-26 01:26:17-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/02BAILAM.MP3 Bamboleo Gipsy Kings Gipsy Kings - Greatest Hits Latin 3294542 205 3 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/03BAMBOL.MP3 Pida Me La Gipsy Kings Gipsy Kings - Greatest Hits Latin 3182949 198 4 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/04PIDAME.MP3 Bem, Bem, Maria Gipsy Kings Gipsy Kings - Greatest Hits Latin 2979826 186 5 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/05BEMBEM.MP3 Volare (Nel Blu Di Pinto Di Blu) Gipsy Kings Gipsy Kings - Greatest Hits Latin 3541998 221 6 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/06VOLARE.MP3 Moorea Gipsy Kings Gipsy Kings - Greatest Hits Latin 3898491 243 7 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/07MOOREA.MP3 A Mi Manera (Comme D'habitude) Gipsy Kings Gipsy Kings - Greatest Hits Latin 3753065 234 8 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/08AMIMAN.MP3 Un Amor Gipsy Kings Gipsy Kings - Greatest Hits Latin 3528180 220 9 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/09UNAMOR.MP3 Galaxia Gipsy Kings Gipsy Kings - Greatest Hits Latin 2516026 157 10 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/10GALAXI.MP3 Escucha Me Gipsy Kings Gipsy Kings - Greatest Hits Latin 4473191 279 11 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/11ESCUCH.MP3 Tu Quieres Volver Gipsy Kings Gipsy Kings - Greatest Hits Latin 3119011 194 12 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/12TUQUIE.MP3 Soy Gipsy Kings Gipsy Kings - Greatest Hits Latin 3087232 192 13 2002-02-26 01:26:18-08 2002-02-26 01:26:18-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/13SOY.MP3 La Quiero Gipsy Kings Gipsy Kings - Greatest Hits Latin 3613448 225 14 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/14LAQUIE.MP3 Allegria Gipsy Kings Gipsy Kings - Greatest Hits Latin 2724588 170 15 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/15ALLEGR.MP3 Vamos A Bailar Gipsy Kings Gipsy Kings - Greatest Hits Latin 4750719 296 16 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/16VAMOSA.MP3 La Dona Gipsy Kings Gipsy Kings - Greatest Hits Latin 4408126 275 17 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/GIPSYKIN/GREATEST/17LADONA.MP3 Mississippi Paula Cole Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4644545 290 1 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/01MISSIS.MP3 Scooter Boys Indigo Girls Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3312095 207 2 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/02SCOOTE.MP3 Sur Tes Pas Autour de Lucie Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3284929 205 3 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/03SURTES.MP3 Been It The Cardigans Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3934014 245 4 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/04BEENIT.MP3 I Want Dayna Manning Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4563459 285 5 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/05IWANT.MP3 Four Leaf Clover Abra Moore Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4335260 270 6 2002-02-26 01:26:19-08 2002-02-26 01:26:19-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/06FOURLE.MP3 Falling In Love Lisa Loeb Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4411049 275 7 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/07FALLIN.MP3 Loneliness Of The Long Distance Runner September 67 Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4061103 253 8 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/08LONELI.MP3 El Payande Lhasa Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3829519 239 9 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/09ELPAYA.MP3 Eternal Flame Susanna Hoffs Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3140735 196 10 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/10ETERNA.MP3 Rock In This Pocket (Song Of David) Suzanne Vega Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 3981690 248 11 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/11ROCKIN.MP3 Ladder Joan Osborne Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4099943 256 12 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/12LADDER.MP3 Building A Mystery Sarah McLachlan Lilith Fair - A Celebration of Women in Music - Disc 1 Rock 4255857 265 13 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD1/13BUILDI.MP3 Water Is Wide Indigo Girls/Jewel/Sarah McLachlan Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4133401 258 1 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/01WATERI.MP3 Going Back To Harlan Emmylou Harris Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4862309 303 2 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/02GOINGB.MP3 Wash My Hands Meredith Brooks Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 5096778 318 3 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/03WASHMY.MP3 Cain Patty Griffin Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3668601 229 4 2002-02-26 01:26:20-08 2002-02-26 01:26:20-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/04CAIN.MP3 I Don't Want To Think About It Wild Strawberries Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3864375 241 5 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/05IDONTW.MP3 What Did You Hear In These Sounds Dar Williams Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3704713 231 6 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/06WHATDI.MP3 Trouble Shawn Colvin Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3966189 247 7 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/07TROUBL.MP3 Lama Dorje Chand Yungchen Lhamo Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 2954740 184 8 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/08LAMADO.MP3 The One Tracy Bonham Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4447260 277 9 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/09THEONE.MP3 Charm Wild Colonials Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 3225290 201 10 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/10CHARM.MP3 Hold Me Jordan Tara MacLean Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 4871080 304 11 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/11HOLDME.MP3 Periwinkle Sky Victoria Williams Lilith Fair - A Celebration of Women in Music - Disc 2 Rock 2500003 156 12 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/LILITHFA/LFAIRCD2/12PERIWI.MP3 Indios De Barcelona Mano Negra N/A Ska 2260028 141 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/INDIOSDE.MP3 La Vida Mano Negra N/A Ska 2634760 164 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/LAVIDA.MP3 Mad House Mano Negra N/A Ska 2569282 160 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/MADHOUSE.MP3 Paris La Nuit Mano Negra N/A Ska 3183178 198 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/PARISLAN.MP3 Pas Assez De Toi Mano Negra N/A Ska 2221408 138 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/PASASSEZ.MP3 Patchanka Mano Negra N/A Ska 2978742 186 0 2002-02-26 01:26:21-08 2002-02-26 01:26:21-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/PATCHANK.MP3 Ronde De Nuit Mano Negra N/A Ska 2782521 173 0 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/RONDEDEN.MP3 Sidi H' Bibi Mano Negra N/A Ska 3261286 203 0 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/MANONEGR/UNKNOWNA/SIDIHBIB.MP3 Tiger Paula Cole This Fire Rock 4136800 258 1 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/01TIGER.MP3 Where Have All The Cowboys Gone? Paula Cole This Fire Rock 4267926 266 2 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/02WHEREH.MP3 Throwing Stones Paula Cole This Fire Rock 3626900 226 3 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/03THROWI.MP3 Carmen Paula Cole This Fire Rock 3600559 225 4 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/04CARMEN.MP3 Mississippi Paula Cole This Fire Rock 4912816 307 5 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/05MISSIS.MP3 Nietzsche's Eyes Paula Cole This Fire Rock 5321306 332 6 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/06NIETZS.MP3 Road To Dead Paula Cole This Fire Rock 3538149 221 7 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/07ROADTO.MP3 Me Paula Cole This Fire Rock 4842170 302 8 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/08ME.MP3 Feelin' Love Paula Cole This Fire Rock 5403500 337 9 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/09FEELIN.MP3 Hush, Hush, Hush. Paula Cole This Fire Rock 4198532 262 10 2002-02-26 01:26:22-08 2002-02-26 01:26:22-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/10HUSHHU.MP3 I Don't Want To Wait Paula Cole This Fire Rock 5107176 319 11 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/PAULACOL/THISFIRE/11IDONTW.MP3 Blow At High Dough The Tragically Hip Up To Here Rock 4436358 277 1 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/01BLOWAT.MP3 I'll Believe In You (Or I'll Be Leaving You Tonight) The Tragically Hip Up To Here Rock 3906838 244 2 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/02ILLBEL.MP3 New Orleans Is Sinking The Tragically Hip Up To Here Rock 4120385 257 3 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/03NEWORL.MP3 38 Years Old The Tragically Hip Up To Here Rock 4173596 260 4 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/0438YEAR.MP3 She Didn't Know The Tragically Hip Up To Here Rock 3420297 213 5 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/05SHEDID.MP3 Boots Or Hearts The Tragically Hip Up To Here Rock 3592078 224 6 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/06BOOTSO.MP3 Everytime You Go The Tragically Hip Up To Here Rock 3232216 202 7 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/07EVERYT.MP3 When The Weight Comes Down The Tragically Hip Up To Here Rock 4556460 284 8 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/08WHENTH.MP3 Trickle Down The Tragically Hip Up To Here Rock 3060431 191 9 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/09TRICKL.MP3 Another Midnight The Tragically Hip Up To Here Rock 3781833 236 10 2002-02-26 01:26:23-08 2002-02-26 01:26:23-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/10ANOTHE.MP3 Opiated The Tragically Hip Up To Here Rock 3556546 222 11 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/THETRAGI/UPTOHERE/11OPIATE.MP3 Everybody Knows Concrete Blonde Pump Up the Volume Soundtrack 4549627 284 1 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/01EVERYB.MP3 Why Can't I Fall In Love Ivan Neville Pump Up the Volume Soundtrack 3877555 242 2 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/02WHYCAN.MP3 Stand Liquid Jesus Pump Up the Volume Soundtrack 4222352 263 3 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/03STAND.MP3 Wave of Mutilation (U.K. Surf) The Pixies Pump Up the Volume Soundtrack 2908730 181 4 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/04WAVEOF.MP3 I've Got A Secret Miniature Camera Peter Murphy Pump Up the Volume Soundtrack 4282985 267 5 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/05IVEGOT.MP3 Kick Out The Jams Bad Brains with Henry Rollins Pump Up the Volume Soundtrack 2973102 185 6 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/06KICKOU.MP3 Freedom Of Speech Above The Law Pump Up the Volume Soundtrack 4104083 256 7 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/07FREEDO.MP3 Heretic Soundgarden Pump Up the Volume Soundtrack 3667722 229 8 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/08HERETI.MP3 Titanium Expose Sonic Youth Pump Up the Volume Soundtrack 6205995 387 9 2002-02-26 01:26:24-08 2002-02-26 01:26:24-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/09TITANI.MP3 Me and the Devil Blues Cowboy Junkies Pump Up the Volume Soundtrack 5381374 336 10 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/10MEANDT.MP3 Tale O' the Twister Chagall Guevara Pump Up the Volume Soundtrack 3188481 199 11 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/PUMPUPTH/11TALEOT.MP3 Schoolhouse Rocky (Original Theme Music) Bob Dorough & Friends Schoolhouse Rock! Rocks Soundtrack 222977 13 1 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/01SCHOOL.MP3 I'm Just A Bill Deluxx Folk Implosion Schoolhouse Rock! Rocks Soundtrack 3302474 206 2 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/02IMJUST.MP3 Three Is A Magic Number Blind Melon Schoolhouse Rock! Rocks Soundtrack 3105753 194 3 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/03THREEI.MP3 Conjunction Junction Better Than Ezra Schoolhouse Rock! Rocks Soundtrack 3587522 224 4 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/04CONJUN.MP3 Electricity, Electricity Goodness Schoolhouse Rock! Rocks Soundtrack 3228909 201 5 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/05ELECTR.MP3 No More Kings Pavement Schoolhouse Rock! Rocks Soundtrack 4200652 262 6 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/06NOMORE.MP3 The Shot Heard 'Round The World Ween Schoolhouse Rock! Rocks Soundtrack 3038740 189 7 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/07THESHO.MP3 My Hero, Zero The Lemonheads Schoolhouse Rock! Rocks Soundtrack 2977710 186 8 2002-02-26 01:26:25-08 2002-02-26 01:26:25-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/08MYHERO.MP3 The Energy Blues Biz Markie Schoolhouse Rock! Rocks Soundtrack 3047091 190 9 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/09THEENE.MP3 Little Twelvetoes Chavez Schoolhouse Rock! Rocks Soundtrack 3789385 236 10 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/10LITTLE.MP3 Verb: That's What's Happening Moby Schoolhouse Rock! Rocks Soundtrack 4306968 269 11 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/11VERBTH.MP3 Interplanet Janet Man Or Astro-Man? Schoolhouse Rock! Rocks Soundtrack 2670659 166 12 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/12INTERP.MP3 Lolly, Lolly, Lolly, Get Your Adverbs Here Buffalo Tom Schoolhouse Rock! Rocks Soundtrack 2152827 134 13 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/13LOLLYL.MP3 Unpack Your Adjectives Daniel Johnston Schoolhouse Rock! Rocks Soundtrack 2968945 185 14 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/14UNPACK.MP3 The Tale Of Mr. Morton Skee-Lo Schoolhouse Rock! Rocks Soundtrack 3927317 245 15 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/SCHOOLHO/15THETAL.MP3 Video Killed The Radio Star The Presidents Of The United States Of America The Wedding Singer Soundtrack Soundtrack 3223519 201 1 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/01VIDEOK.MP3 Do You Really Want To Hurt Me Culture Club The Wedding Singer Soundtrack Soundtrack 4158044 259 2 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/02DOYOUR.MP3 Every Little Thing She Does Is Magic The Police The Wedding Singer Soundtrack Soundtrack 4140912 258 3 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/03EVERYL.MP3 How Soon Is Now? The Smiths The Wedding Singer Soundtrack Soundtrack 6432560 402 4 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/04HOWSOO.MP3 Love My Way Psychedelic Furs The Wedding Singer Soundtrack Soundtrack 3364883 210 5 2002-02-26 01:26:26-08 2002-02-26 01:26:26-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/05LOVEMY.MP3 Hold Me Now Thompson Twins The Wedding Singer Soundtrack Soundtrack 4546728 284 6 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/06HOLDME.MP3 Everyday I Write The Book Elvis Costello The Wedding Singer Soundtrack Soundtrack 3704696 231 7 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/07EVERYD.MP3 White Wedding Billy Idol The Wedding Singer Soundtrack Soundtrack 3988474 249 8 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/08WHITEW.MP3 China Girl David Bowie The Wedding Singer Soundtrack Soundtrack 5261575 328 9 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/09CHINAG.MP3 Blue Monday New Order The Wedding Singer Soundtrack Soundtrack 7134311 445 10 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/10BLUEMO.MP3 Pass The Dutchie Musical Youth The Wedding Singer Soundtrack Soundtrack 3258586 203 11 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/11PASSTH.MP3 Have You Written Anything Lately? (Dialogue) Adam Sandler The Wedding Singer Soundtrack Soundtrack 429866 26 12 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/12HAVEYO.MP3 Somebody Kill Me Adam Sandler The Wedding Singer Soundtrack Soundtrack 1806177 112 13 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/13SOMEBO.MP3 Rapper's Delight (Medley) Ellen Dow Plus Sugarhill Gang The Wedding Singer Soundtrack Soundtrack 4258091 266 14 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3013/VARIOUSA/THEWEDDI/14RAPPER.MP3 James Brown Is Dead (Dream On remix) L.A. Style Technodrome Techno 4681326 292 1 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/01JAMESB.MP3 Dance Your Ass Off (Rap radio Version) RTZ Technodrome Techno 3310834 206 2 2002-02-26 01:26:27-08 2002-02-26 01:26:27-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/02DANCEY.MP3 We Gonna Get RAF Technodrome Techno 5383466 336 3 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/03WEGONN.MP3 James Brown Is Still Alive! (HN Style) Holly Noise Technodrome Techno 4813962 300 4 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/04JAMESB.MP3 The Tingler (Meltram Mix) Smart System Technodrome Techno 4803501 300 5 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/05THETIN.MP3 Everybody In The Place (Fairground remix) Prodigy Technodrome Techno 4907584 306 6 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/06EVERYB.MP3 LFO (Eclipse Mix) LFO Technodrome Techno 3665660 229 7 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/07LFOECL.MP3 Let The Bass Kick (Extended Mix) Egma Technodrome Techno 6011262 375 8 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/08LETTHE.MP3 Tricky Disco Tricky Disco Technodrome Techno 6785868 424 9 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/09TRICKY.MP3 Apache (Original Version) Hans G Technodrome Techno 8072215 504 10 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/10APACHE.MP3 Atomic Playgirl Culture Shock Technodrome Techno 4955491 309 11 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/11ATOMIC.MP3 Discovery Mastermind Technodrome Techno 4443065 277 12 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/12DISCOV.MP3 A1 Anything You Like Technodrome Techno 5569882 348 13 2002-02-26 01:26:28-08 2002-02-26 01:26:28-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/13A1.MP3 Robocop Sub System Technodrome Techno 5399075 337 14 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/TECHNODROME/14ROBOCO.MP3 Descarga Total Maraca Descarga Total Latin 5834839 364 1 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/01DESCAR.MP3 Oy Guajira Mi Son Maraca Descarga Total Latin 4743969 296 2 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/02OYGUAJ.MP3 Pa' Gozar Piln Maraca Descarga Total Latin 5352515 334 3 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/03PAGOZA.MP3 Havana Danzn Maraca Descarga Total Latin 5697748 356 4 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/04HAVANA.MP3 Solo Me QuedEMaraca Descarga Total Latin 5489744 343 5 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/05SOLOME.MP3 La Pelea Maraca Descarga Total Latin 5100061 318 6 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/06LAPELE.MP3 Mambo Con ChachachEMaraca Descarga Total Latin 5328278 333 7 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/07MAMBOC.MP3 Llvatela Maraca Descarga Total Latin 6094387 380 8 2002-02-26 01:26:29-08 2002-02-26 01:26:29-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/08LLVATE.MP3 Yoruba Song - Introduction Maraca Descarga Total Latin 1314764 82 9 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/09YORUBA.MP3 Yoruba Song Maraca Descarga Total Latin 5403644 337 10 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/10YORUBA.MP3 Tumbao Pa' Changuito Maraca Descarga Total Latin 5893919 368 11 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/MARACA/DESCARGATOT/11TUMBAO.MP3 The Power of Equality Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3895635 243 1 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/01THEPOW.MP3 If You Have to Ask Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3468421 216 2 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/02IFYOUH.MP3 Breaking the Girl Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4727313 295 3 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/03BREAKI.MP3 Funky Monks Red Hot Chili Peppers Blood Sugar Sex Magik Rock 5174523 323 4 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/04FUNKYM.MP3 Suck My Kiss Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3474685 217 5 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/05SUCKMY.MP3 I Could Have Lied Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3912293 244 6 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/06ICOULD.MP3 Mellowship Slinky in B Major Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3840482 240 7 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/07MELLOW.MP3 The Righteous & The Wicked Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3968726 248 8 2002-02-26 01:26:30-08 2002-02-26 01:26:30-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/08THERIG.MP3 Give it Away Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4528777 283 9 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/09GIVEIT.MP3 Blood Sugar Sex Magik Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4339453 271 10 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/10BLOODS.MP3 Under the Bridge Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4229943 264 11 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/11UNDERT.MP3 Naked in the Rain Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4250006 265 12 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/12NAKEDI.MP3 Apache Rose Peacock Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4513880 282 13 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/13APACHE.MP3 The Greeting Song Red Hot Chili Peppers Blood Sugar Sex Magik Rock 3097275 193 14 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/14THEGRE.MP3 My Lovely Man Red Hot Chili Peppers Blood Sugar Sex Magik Rock 4464972 279 15 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/15MYLOVE.MP3 Sir Psycho Sexy Red Hot Chili Peppers Blood Sugar Sex Magik Rock 7947269 496 16 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/16SIRPSY.MP3 They're Red Hot Red Hot Chili Peppers Blood Sugar Sex Magik Rock 1152090 72 17 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/BLOODSUGARS/17THEYRE.MP3 Around the World Red Hot Chili Peppers Californication Rock 3819625 238 1 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/01AROUND.MP3 Parallel Universe Red Hot Chili Peppers Californication Rock 4330232 270 2 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/02PARALL.MP3 Scar Tissue Red Hot Chili Peppers Californication Rock 3479261 217 3 2002-02-26 01:26:31-08 2002-02-26 01:26:31-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/03SCARTI.MP3 Otherside Red Hot Chili Peppers Californication Rock 4095331 255 4 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/04OTHERS.MP3 Get on Top Red Hot Chili Peppers Californication Rock 3168855 198 5 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/05GETONT.MP3 Californication Red Hot Chili Peppers Californication Rock 5144972 321 6 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/06CALIFO.MP3 Easily Red Hot Chili Peppers Californication Rock 3702446 231 7 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/07EASILY.MP3 Porcelain Red Hot Chili Peppers Californication Rock 2618821 163 8 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/08PORCEL.MP3 Emit Remmus Red Hot Chili Peppers Californication Rock 3844557 240 9 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/09EMITRE.MP3 I Like Dirt Red Hot Chili Peppers Californication Rock 2523391 157 10 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/10ILIKED.MP3 This Velvet Glove Red Hot Chili Peppers Californication Rock 3604239 225 11 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/11THISVE.MP3 Savior Red Hot Chili Peppers Californication Rock 4679636 292 12 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/12SAVIOR.MP3 Purple Stain Red Hot Chili Peppers Californication Rock 4054794 253 13 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/13PURPLE.MP3 Right on Time Red Hot Chili Peppers Californication Rock 1801578 112 14 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/14RIGHTO.MP3 Road Trippin' Red Hot Chili Peppers Californication Rock 3289930 205 15 2002-02-26 01:26:32-08 2002-02-26 01:26:32-08 128 44100 MPEG AUDIO FILE MP3015/REDHOTCHILI/CALIFORNICA/15ROADTR.MP3 Brandenberg Concerto No.2: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4734906 295 1 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/01BRANDE.MP3 Concerto for 2 Violins: Largo Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 6243733 390 2 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/02CONCER.MP3 Lute Suite No.4: Prelude Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3723853 232 3 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/03LUTESU.MP3 Sheep may safely graze Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4340899 271 4 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/04SHEEPM.MP3 Cello Sonata No.3: Adagio (excerpt) Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3109186 194 5 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/05CELLOS.MP3 Italian Concerto: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3759937 234 6 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/06ITALIA.MP3 Christmas Oratorio: Pastoral sinfonia Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 6381389 398 7 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/07CHRIST.MP3 Jesu, joy of man's desiring Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 2956052 184 8 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/08JESUJO.MP3 Keyboard Concerto No.4: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3871944 241 9 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/09KEYBOA.MP3 Cello Suite No.3: Bourees I & II Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3519607 219 10 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/10CELLOS.MP3 Concerto for Oboe & Violin: Adagio Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5085282 317 11 2002-02-26 01:26:33-08 2002-02-26 01:26:33-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/11CONCER.MP3 B Minor Mass: Crucifixus Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3623671 226 12 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/12BMINOR.MP3 Cello Suite No.1: Praeludium Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 2367708 147 13 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/13CELLOS.MP3 French Suite No.5: Gigue Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3377353 211 14 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/14FRENCH.MP3 Prelude in D Minor Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 1422553 88 15 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/15PRELUD.MP3 Brandenburg Concerto No.5: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5012001 313 16 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/16BRANDE.MP3 St Matthew Passion: In tears of grief Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 6186608 386 17 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH1/17STMATT.MP3 Toccata in D minor Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3418445 213 1 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/01TOCCAT.MP3 Air on a G string Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5022849 313 2 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/02AIRONA.MP3 Prelude in C major Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3151787 196 3 2002-02-26 01:26:34-08 2002-02-26 01:26:34-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/03PRELUD.MP3 Brandenburg Concerto No.4: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 6929177 433 4 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/04BRANDE.MP3 Goldberg Variations: Aria Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 3715899 232 5 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/05GOLDBE.MP3 Sleepers awake Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 1] Classical 5290479 330 6 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/06SLEEPE.MP3 Violin Concerto No.1: Allegro moderato Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [Disc 1] Classical 3793234 237 7 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/07VIOLIN.MP3 Violin Concerto No.1: Andante Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 6179785 386 8 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/08VIOLIN.MP3 Partita No.1: Gigue Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 2457432 153 9 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/09PARTIT.MP3 Orchestral Suite No.2: Menuet Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 1182668 73 10 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/10ORCHES.MP3 Orchestra Suite No.2: Badinerie Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 1373401 85 11 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/11ORCHES.MP3 Oboe Concerto: Siciliano Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4142650 258 12 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/12OBOECO.MP3 Brandenberg Concerto No.3: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 5380237 336 13 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/13BRANDE.MP3 Violin Partita No.2: Allemande Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 4023678 251 14 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/14VIOLIN.MP3 Violin Partita No.2: Gigue Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3026423 189 15 2002-02-26 01:26:35-08 2002-02-26 01:26:35-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/15VIOLIN.MP3 Keyboard Concerto No.2: Allegro (excerpt) Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 2809378 175 16 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/16KEYBOA.MP3 Sanctify us by thy goodness Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3091904 193 17 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/17SANCTI.MP3 Keyboard Concerto No.5: Largo Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 2814381 175 18 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/18KEYBOA.MP3 Concerto in A minor for Organ: Allegro Johann Sebastian Bach Essential Bach - 36 of His Greatest Masterpieces [CD 2] Classical 3430462 214 19 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/JSBACH/ESSBACH2/19CONCER.MP3 Crazy Mary Pearl Jam N/A Grunge 4717784 336 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 112 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/CRAZYMAR.MP3 Daughter Pearl Jam N/A Grunge 3683124 230 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/DAUGHTER.MP3 Indifference Pearl Jam N/A Grunge 4840457 302 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/FFERENCE.MP3 Nothing To Say Pearl Jam N/A Grunge 3800220 237 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/INGTOSAY.MP3 Animal Pearl Jam N/A Grunge 2668735 166 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/PEARLJAM.MP3 Undertow Pearl Jam N/A Grunge 5357223 334 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/PEARL.JAM/UNDERTOW.MP3 I Am a Newfie N/A N/A Comedy 1626716 101 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/IAMNEWFI.MP3 I am a British Columbian N/A N/A Comedy 988002 61 0 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/BRITCOL.MP3 Two tribes Frankie goes to Hollywood Fantastic 80s! - Disk Two Pop 4067328 203 1 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 160 44100 MPEG AUDIO FILE MP3015/VARIOUS/01FRA1.MP3 Eyes Kim Carnes & Bette Davis Fantastic 80s! - Disk One Pop 4411392 220 20 2002-02-26 01:26:36-08 2002-02-26 01:26:36-08 160 44100 MPEG AUDIO FILE MP3015/VARIOUS/20KIM1.MP3 Zombie Cranberries No Need to Argue Rock 4304219 307 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 112 44100 MPEG AUDIO FILE MP3015/VARIOUS/CRANBERR.MP3 Da Da Da I Don't Love You You Don't Love Me Aha Aha Aha Trio Da Da Da Pop 1411580 201 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 56 22050 MPEG AUDIO FILE MP3015/VARIOUS/DADADA.MP3 I Want You Savage Garden N/A Pop 3707425 231 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/SAVAG1.MP3 One Headlight Wallflowers N/A Rock 5003099 312 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/VARIOUS/WALLFLOW.MP3 Music (Deep Dish Remix) Madonna Music Dance 4086785 255 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/MADONNA/MUSIC/DEEPDISH.MP3 Life is a Flower Ace of Base Flowers Pop 4479410 223 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/01LIFEIS.MP3 Travel to romantis Ace of Base Flowers Pop 4954952 247 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/02TRAVEL.MP3 Cruel summer Ace of Base Flowers Pop 4251818 212 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/03CRUELS.MP3 Always have, Always will Ace of Base Flowers Pop 4474712 223 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/04ALW1.MP3 Adventures in paradise Ace of Base Flowers Pop 4189700 209 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/05ADVENT.MP3 Dr sun Ace of Base Flowers Pop 4273220 213 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/06DRSUN.MP3 Cecilia Ace of Base Flowers Pop 4665242 233 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/07CECILI.MP3 He decides Ace of Base Flowers Pop 3742868 187 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/08HEDECI.MP3 I Pray Ace of Base Flowers Pop 3916172 195 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/09IPRAY.MP3 Tokyo girl Ace of Base Flowers Pop 4275830 213 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/10TOKYOG.MP3 Don't go away Ace of Base Flowers Pop 4373444 218 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/11DONTGO.MP3 Captain nemo Ace of Base Flowers Pop 4803050 240 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/12CAPTAI.MP3 Donnie Ace of Base Flowers Pop 5536982 276 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/13DONNIE.MP3 Cruel summer (Big Bonus Mix Ace of Base Flowers Pop 4905362 245 0 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 160 44100 MPEG AUDIO FILE MP3015/ACEOFBASE/FLOWER/14CRU1.MP3 low expectations Calexico Spoke Folk 2505144 156 1 2002-02-26 01:26:37-08 2002-02-26 01:26:37-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/01LOWEXP.MP3 mind the gap Calexico Spoke Folk 836507 52 2 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/02MINDTH.MP3 mazurra Calexico Spoke Folk 1704603 106 3 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/03MAZURR.MP3 sanchez Calexico Spoke Folk 3170803 198 4 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/04SANCHE.MP3 haul Calexico Spoke Folk 1300913 81 5 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/05HAUL.MP3 slag Calexico Spoke Folk 2377932 148 6 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/06SLAG.MP3 paper route Calexico Spoke Folk 1931977 120 7 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/07PAPERR.MP3 glimpse Calexico Spoke Folk 2554732 159 8 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/08GLIMPS.MP3 navy cut Calexico Spoke Folk 472879 29 9 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/09NAVYCU.MP3 spokes Calexico Spoke Folk 3484414 217 10 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/10SPOKES.MP3 scout Calexico Spoke Folk 2072825 129 11 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/11SCOUT.MP3 point vicente Calexico Spoke Folk 3778106 236 12 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/12POINTV.MP3 wash Calexico Spoke Folk 2480892 155 13 2002-02-26 01:26:38-08 2002-02-26 01:26:38-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/13WASH.MP3 ice cream jeep Calexico Spoke Folk 490581 30 14 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/14ICECRE.MP3 windjammer Calexico Spoke Folk 2532167 158 15 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/15WINDJA.MP3 mazurka Calexico Spoke Folk 1273411 79 16 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/16MAZURK.MP3 removed Calexico Spoke Folk 3708023 231 17 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/17REMOVE.MP3 hitch Calexico Spoke Folk 2776250 173 18 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/18HITCH.MP3 stinging nettle Calexico Spoke Folk 3532348 220 19 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/CALEXICO/SPOKE/19STINGI.MP3 Hommage a Noir - Single mix Ralk Hildenbeutal Hommage a Noir Soundtrack 3588485 224 1 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/01HOMMAG.MP3 Intro/National Holiday Ralk Hildenbeutal Hommage a Noir Soundtrack 6370276 398 2 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/02INTRON.MP3 The Fantasia Riders Ralk Hildenbeutal Hommage a Noir Soundtrack 2697667 168 3 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/03THEFAN.MP3 Market in Bamenda Ralk Hildenbeutal Hommage a Noir Soundtrack 2826396 176 4 2002-02-26 01:26:39-08 2002-02-26 01:26:39-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/04MARKET.MP3 The Elephantmen Society Ralk Hildenbeutal Hommage a Noir Soundtrack 3187519 199 5 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/05THEELE.MP3 In the Village Ralk Hildenbeutal Hommage a Noir Soundtrack 2938079 183 6 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/06INTHEV.MP3 Largo for a day in Africa Ralk Hildenbeutal Hommage a Noir Soundtrack 3209673 200 7 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/07LARGOF.MP3 Warriors of Foumban Ralk Hildenbeutal Hommage a Noir Soundtrack 4364069 272 8 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/08WARRIO.MP3 Holy Life in Bafut Ralk Hildenbeutal Hommage a Noir Soundtrack 2902466 181 9 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/09HOLYLI.MP3 Hommage a Noir Ralk Hildenbeutal Hommage a Noir Soundtrack 8495313 530 10 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/10HOMMAG.MP3 Stiltdance Ralk Hildenbeutal Hommage a Noir Soundtrack 1862578 116 11 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/11STILTD.MP3 Hommage a Noir - remixed by Bassface Sascha Ralk Hildenbeutal Hommage a Noir Soundtrack 7061325 441 12 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/12HOMMAG.MP3 Hommage a Noir - remixed by Der Process Ralk Hildenbeutal Hommage a Noir Soundtrack 7560224 472 13 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3015/RALKHILDENB/HOMMAGEANOI/13HOMMAG.MP3 Paradise By The Dashboard Light Meat Loaf N/A Rock 8143901 508 0 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3014/MEATLOAF/UNKNOWNALBU/PARADISE.MP3 Party Time Dj Jean N/A Techno 3132131 195 0 2002-02-26 01:26:40-08 2002-02-26 01:26:40-08 128 44100 MPEG AUDIO FILE MP3014/DJJEAN/UNKNOWNALBU/PARTYTIM.MP3 Revolution 909 Daft Punk Homework Electronic 5225497 326 3 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/03REVOLU.MP3 Da Funk Daft Punk Homework Electronic 5273961 329 4 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/04DAFUNK.MP3 Phoenix Daft Punk Homework Electronic 4755274 297 5 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/05PHOENI.MP3 Fresh Daft Punk Homework Electronic 3911413 244 6 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/06FRESH.MP3 Around The World Daft Punk Homework Electronic 6873499 429 7 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/07AROUND.MP3 Rollin' & Scratchin' Daft Punk Homework Electronic 7161895 447 8 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/08ROLLIN.MP3 Teachers Daft Punk Homework Electronic 2777075 173 9 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/09TEACHE.MP3 High Fidelity Daft Punk Homework Electronic 5801433 362 10 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/10HIGHFI.MP3 Rock'n Roll Daft Punk Homework Electronic 7262616 453 11 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/11ROCKNR.MP3 Oh Yeah Daft Punk Homework Electronic 1940322 121 12 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/12OHYEAH.MP3 Burnin' Daft Punk Homework Electronic 6619791 413 13 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/13BURNIN.MP3 Indo Silver Club Daft Punk Homework Electronic 4397094 274 14 2002-02-26 01:26:41-08 2002-02-26 01:26:41-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/14INDOSI.MP3 Alive Daft Punk Homework Electronic 5043806 315 15 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/15ALIVE.MP3 Funk Ad Daft Punk Homework Electronic 853211 53 16 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/16FUNKAD.MP3 Daftendirekt Daft Punk Homework Electronic 2633911 164 1 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/01DAFTEN.MP3 Wdpk 83.7 fm Daft Punk Homework Electronic 452531 28 2 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/DAFTPUNK/HOMEWORK/02WDPK83.MP3 Party Time Moby N/A Techno 4065849 254 0 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/MOBY/UNKNOWNALBU/PARTYTIM.MP3 Mr. Pitiful The Commitments The Commitments Soundtrack Soundtrack 2096898 131 10 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/MRPITIFU.MP3 Mustang Sally The Commitments The Commitments Soundtrack Soundtrack 3863192 241 1 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/MUSTANGS.MP3 Treat Her Right The Commitments The Commitments Soundtrack Soundtrack 3509602 219 8 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/TREATHER.MP3 Bye Bye Baby The Commitments The Commitments Soundtrack Soundtrack 3287804 205 13 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/BYEBYEBA.MP3 Destination Anywhere The Commitments The Commitments Soundtrack Soundtrack 3040239 190 5 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/DESTINAT.MP3 The Dark End Of The Street The Commitments The Commitments Soundtrack Soundtrack 2502054 156 4 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/THEDARKE.MP3 Chain Of Fools The Commitments The Commitments Soundtrack Soundtrack 2852152 178 3 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/CHAINOFF.MP3 Slip Away The Commitments The Commitments Soundtrack Soundtrack 4327125 270 14 2002-02-26 01:26:42-08 2002-02-26 01:26:42-08 128 44100 MPEG AUDIO FILE MP3014/THECOMMITME/THECOMMITME/SLIPAWAY.MP3 Tubular Bells Mike Oldfield The Exorcist Soundtrack Soundtrack 4797319 299 0 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/MIKEOLDFIEL/THEEXORCIST/TUBULARB.MP3 Stan [Featuring Dido] Eminem The Marshal Mathers LP Hip-Hop 6465180 404 3 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/EMINEM/THEMARSHALM/03STANFE.MP3 My Name Is Eminem The Slim Shady LP Hip-Hop 4295552 268 2 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/EMINEM/THESLIMSHAD/02MYNAME.MP3 Rock Bottom Eminem The Slim Shady LP Hip-Hop 3426618 214 14 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/EMINEM/THESLIMSHAD/14ROCKBO.MP3 Deaf Mick's Throwdown (Fatboy Slim Remix) Clockwork Voodoo Freaks On The Floor At The Boutique Electronic 1989159 124 3 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/03DEAFMI.MP3 Because I Got It Like That (Ultimatum Mix By Fatboy Slim) Jungle Brothers On The Floor At The Boutique Electronic 3042057 190 4 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/04BECAUS.MP3 Vol 1 Side 2 Track 2 (Fatboy Slim Remix) Bassbin Twins On The Floor At The Boutique Electronic 2426355 151 5 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/05VOL1SI.MP3 That Green Jesus (Fatboy Slim Remix) Mr Natural On The Floor At The Boutique Electronic 4340173 271 6 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/06THATGR.MP3 The World's Made Up Of This & That (Fatboy Slim Remix) Deeds Plus Thoughts On The Floor At The Boutique Electronic 3350292 209 7 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/07THEWOR.MP3 Michael Jackson (Fatboy Slim Remix) Fatboy Slim On The Floor At The Boutique Electronic 4451013 278 8 2002-02-26 01:26:43-08 2002-02-26 01:26:43-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/08MICHAE.MP3 Phun-Ky (Fatboy Slim Remix) DJ Tonka On The Floor At The Boutique Electronic 4567390 285 9 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/09PHUNKY.MP3 Forget It (Fatboy Slim Remix) Cut and Paste On The Floor At The Boutique Electronic 2969612 185 10 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/10FORGET.MP3 Everybody In The House (Fatboy Slim Remix) Buzzthrill On The Floor At The Boutique Electronic 2911486 181 11 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/11EVERYB.MP3 Can You Feel It (Fatboy Slim Remix) CLS On The Floor At The Boutique Electronic 3890903 243 12 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/12CANYOU.MP3 Acid Enlightenment (Fatboy Slim Remix) Aldo Bender On The Floor At The Boutique Electronic 2368384 148 13 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/13ACIDEN.MP3 I'm a Disco Dancer (Fatboy Slim Remix) Christopher Just On The Floor At The Boutique Electronic 2396532 149 14 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/14IMADIS.MP3 Psychopath (Fatboy Slim Remix) Hardknox On The Floor At The Boutique Electronic 4070792 254 15 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/15PSYCHO.MP3 Break In (Fatboy Slim Remix) Cirrus On The Floor At The Boutique Electronic 3340845 208 16 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/16BREAKI.MP3 Give Me My Auger Back (Fatboy Slim Remix) Psychedeliasmith On The Floor At The Boutique Electronic 4186409 261 17 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/17GIVEME.MP3 Post Punk Progression (Fatboy Slim Remix) Cut La Roc On The Floor At The Boutique Electronic 2253727 140 18 2002-02-26 01:26:44-08 2002-02-26 01:26:44-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/18POSTPU.MP3 The Rockefeller Skank (Fatboy Slim Remix) Fatboy Slim On The Floor At The Boutique Electronic 5837587 364 19 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/19THEROC.MP3 Apache (Fatboy Slim Remix) Michael Viner's Incredible Bongo Band On The Floor At The Boutique Electronic 2670583 166 1 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/01APACHE.MP3 Discositdown (Fatboy Slim Remix) Fred Wesley & The Horny Horns On The Floor At The Boutique Electronic 3427059 214 2 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/FATBOYSLIM/ONTHEFLOORA/02DISCOS.MP3 N.W.O. Ministry Psalm 69 Rock 5292299 330 1 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/01NWO.MP3 Just One Fix Ministry Psalm 69 Rock 4984686 311 2 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/02JUSTON.MP3 Tv Ii Ministry Psalm 69 Rock 2958415 184 3 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/03TVII.MP3 Hero Ministry Psalm 69 Rock 4053467 253 4 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/04HERO.MP3 Jesus Built My Hotrod Ministry Psalm 69 Rock 4670113 291 5 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/05JESUSB.MP3 Scarecrow Ministry Psalm 69 Rock 8027008 501 6 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/06SCAREC.MP3 Psalm 69 Ministry Psalm 69 Rock 5273075 329 7 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/07PSALM6.MP3 Corrosion Ministry Psalm 69 Rock 4743662 296 8 2002-02-26 01:26:45-08 2002-02-26 01:26:45-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/08CORROS.MP3 Grace Ministry Psalm 69 Rock 2973044 185 9 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/PSALM69/09GRACE.MP3 Just Like You Ministry Twitch New Age 4859860 303 1 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/01JUSTLI.MP3 We believe Ministry Twitch New Age 5704134 356 2 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/02WEBELI.MP3 All Day Remix Ministry Twitch New Age 5808209 363 3 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/03ALLDAY.MP3 The Angel Ministry Twitch New Age 5868251 366 4 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/04THEANG.MP3 Over the Shoulder Ministry Twitch New Age 5018130 313 5 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/05OVERTH.MP3 My Possession Ministry Twitch New Age 4882290 305 6 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/06MYPOSS.MP3 Where you at Now? / Crash & Burn / Twitch (V2) Ministry Twitch New Age 11765689 735 7 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/07WHEREY.MP3 Over the Shoulder (12" Version) Ministry Twitch New Age 6501899 406 8 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/08OVERTH.MP3 Isle of man (V2) Ministry Twitch New Age 4340758 271 9 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/MINISTRY/TWITCH/09ISLEOF.MP3 Head Like a Hole Nine Inch Nails Pretty Hate Machine Rock 4795383 299 1 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/01HEADLI.MP3 Terrible Lie Nine Inch Nails Pretty Hate Machine Rock 4464356 279 2 2002-02-26 01:26:46-08 2002-02-26 01:26:46-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/02TERRIB.MP3 Down In It Nine Inch Nails Pretty Hate Machine Rock 3623420 226 3 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/03DOWNIN.MP3 Sanctified Nine Inch Nails Pretty Hate Machine Rock 5575707 348 4 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/04SANCTI.MP3 Something I Can Never Have Nine Inch Nails Pretty Hate Machine Rock 5680212 355 5 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/05SOMETH.MP3 Kinda I Want To Nine Inch Nails Pretty Hate Machine Rock 4370596 273 6 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/06KINDAI.MP3 Sin Nine Inch Nails Pretty Hate Machine Rock 3940784 246 7 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/07SIN.MP3 That's What I Get Nine Inch Nails Pretty Hate Machine Rock 4333957 270 8 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/08THATSW.MP3 The Only Time Nine Inch Nails Pretty Hate Machine Rock 4605209 287 9 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/09THEONL.MP3 Ringfinger Nine Inch Nails Pretty Hate Machine Rock 5454918 340 10 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/PRETTYHATEM/10RINGFI.MP3 Mr. Self Destruct Nine Inch Nails The Downward Spiral Rock 4321028 270 1 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/01MRSELF.MP3 Piggy Nine Inch Nails The Downward Spiral Rock 4233384 264 2 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/02PIGGY.MP3 Heresy Nine Inch Nails The Downward Spiral Rock 3751756 234 3 2002-02-26 01:26:47-08 2002-02-26 01:26:47-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/03HERESY.MP3 March of the Pigs Nine Inch Nails The Downward Spiral Rock 2856221 178 4 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/04MARCHO.MP3 Closer Nine Inch Nails The Downward Spiral Rock 5967497 372 5 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/05CLOSER.MP3 Ruiner Nine Inch Nails The Downward Spiral Rock 4782861 298 6 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/06RUINER.MP3 The Becoming Nine Inch Nails The Downward Spiral Rock 5304282 331 7 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/07THEBEC.MP3 I Do Not Want This Nine Inch Nails The Downward Spiral Rock 5458853 341 8 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/08IDONOT.MP3 Big Man With a Gun Nine Inch Nails The Downward Spiral Rock 1540078 96 9 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/09BIGMAN.MP3 A Warm Place Nine Inch Nails The Downward Spiral Rock 3246034 202 10 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/10AWARMP.MP3 Eraser Nine Inch Nails The Downward Spiral Rock 4697182 293 11 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/11ERASER.MP3 Reptile Nine Inch Nails The Downward Spiral Rock 6598478 412 12 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/12REPTIL.MP3 The Downward Spiral Nine Inch Nails The Downward Spiral Rock 3791896 236 13 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/13THEDOW.MP3 Hurt Nine Inch Nails The Downward Spiral Rock 6016816 376 14 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/NINEINCHNAI/THEDOWNWARD/14HURT.MP3 Jackie Sinead O'Connor The Lion And The Cobra Rock 2377055 148 1 2002-02-26 01:26:48-08 2002-02-26 01:26:48-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/01JACKIE.MP3 Mandinka Sinead O'Connor The Lion And The Cobra Rock 3628009 226 2 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/02MANDIN.MP3 Jerusalem Sinead O'Connor The Lion And The Cobra Rock 4164391 260 3 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/03JERUSA.MP3 Just Like U Said It Would B Sinead O'Connor The Lion And The Cobra Rock 4365029 272 4 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/04JUSTLI.MP3 Never Get Old Sinead O'Connor The Lion And The Cobra Rock 4418932 276 5 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/05NEVERG.MP3 Troy Sinead O'Connor The Lion And The Cobra Rock 6313949 394 6 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/06TROY.MP3 I Want Your (Hands On Me) Sinead O'Connor The Lion And The Cobra Rock 4518418 282 7 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/07IWANTY.MP3 Drink Before The War Sinead O'Connor The Lion And The Cobra Rock 5207070 325 8 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/08DRINKB.MP3 Just Call Me Joe Sinead O'Connor The Lion And The Cobra Rock 5627672 351 9 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SINEADOCONN/THELIONANDT/09JUSTCA.MP3 Maniac Various Artists Sounds Of The Seventies - Celebration Rock 4050225 253 1 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/01MANIAC.MP3 Celebration Various Artists Sounds Of The Seventies - Celebration Rock 3603432 225 2 2002-02-26 01:26:49-08 2002-02-26 01:26:49-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/02CELEBR.MP3 I'm So Excited Various Artists Sounds Of The Seventies - Celebration Rock 4262696 266 3 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/03IMSOEX.MP3 Call Me (Theme from "American Gigolo" ) Various Artists Sounds Of The Seventies - Celebration Rock 3425827 214 4 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/04CALLME.MP3 Fame Various Artists Sounds Of The Seventies - Celebration Rock 3701785 231 5 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/05FAME.MP3 Upside Down Various Artists Sounds Of The Seventies - Celebration Rock 3547843 221 6 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/06UPSIDE.MP3 Physical Various Artists Sounds Of The Seventies - Celebration Rock 3616386 226 7 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/07PHYSIC.MP3 More, More, More Pt. 1 Various Artists Sounds Of The Seventies - Celebration Rock 2944322 184 8 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/08MOREMO.MP3 Right Back Where We Started From Various Artists Sounds Of The Seventies - Celebration Rock 3168358 198 9 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/09RIGHTB.MP3 Last Dance Various Artists Sounds Of The Seventies - Celebration Rock 3213895 200 10 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/10LASTDA.MP3 In the Navy Various Artists Sounds Of The Seventies - Celebration Rock 3623496 226 11 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/11INTHEN.MP3 Gloria Various Artists Sounds Of The Seventies - Celebration Rock 3735086 233 12 2002-02-26 01:26:50-08 2002-02-26 01:26:50-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/12GLORIA.MP3 Shake Your Booty Various Artists Sounds Of The Seventies - Celebration Rock 3022894 188 13 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/13SHAKEY.MP3 Get Up and Boogie Various Artists Sounds Of The Seventies - Celebration Rock 3871910 241 14 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/14GETUPA.MP3 Funkytown Various Artists Sounds Of The Seventies - Celebration Rock 3959951 247 15 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/15FUNKYT.MP3 Shake Your Groove Thing Various Artists Sounds Of The Seventies - Celebration Rock 3337346 208 16 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/16SHAKEY.MP3 Take Me Home Various Artists Sounds Of The Seventies - Celebration Rock 3356979 209 17 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/17TAKEME.MP3 Shadow Dancing Various Artists Sounds Of The Seventies - Celebration Rock 4333611 270 18 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/SOUNDSOFTHE/18SHADOW.MP3 Assistant Principal's Big Day Adam Sandler They're all Gonna Laugh at You Comedy 2268503 141 1 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/01ASSIST.MP3 The Buffoon and the Dean of Admissions Adam Sandler They're all Gonna Laugh at You Comedy 2165694 135 2 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/02THEBUF.MP3 Buddy Adam Sandler They're all Gonna Laugh at You Comedy 2142673 133 3 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/03BUDDY.MP3 The Longest Pee Adam Sandler They're all Gonna Laugh at You Comedy 2168597 135 4 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/04THELON.MP3 Food Innuendo Guy Adam Sandler They're all Gonna Laugh at You Comedy 2350551 146 5 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/05FOODIN.MP3 The Beating of a High School Janitor Adam Sandler They're all Gonna Laugh at You Comedy 526179 32 6 2002-02-26 01:26:51-08 2002-02-26 01:26:51-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/06THEBEA.MP3 Right Field Adam Sandler They're all Gonna Laugh at You Comedy 3087267 192 7 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/07RIGHTF.MP3 The Buffoon and the Valedictorian Adam Sandler They're all Gonna Laugh at You Comedy 2216680 138 8 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/08THEBUF.MP3 Mr. Spindel's Phone Call Adam Sandler They're all Gonna Laugh at You Comedy 1959208 122 9 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/09MRSPIN.MP3 The Thanksgiving Song Adam Sandler They're all Gonna Laugh at You Comedy 3650687 228 10 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/10THETHA.MP3 The Beating of a High School Bus Driver Adam Sandler They're all Gonna Laugh at You Comedy 920597 57 11 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/11THEBEA.MP3 Oh Mom... Adam Sandler They're all Gonna Laugh at You Comedy 2080961 130 12 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/12OHMOM.MP3 Fatty McGee Adam Sandler They're all Gonna Laugh at You Comedy 3083507 192 13 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/13FATTYM.MP3 At a Medium Pace Adam Sandler They're all Gonna Laugh at You Comedy 3158745 197 14 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/14ATAMED.MP3 The Beating of a High School Science Teacher Adam Sandler They're all Gonna Laugh at You Comedy 814441 50 15 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/15THEBEA.MP3 The Cheerleader Adam Sandler They're all Gonna Laugh at You Comedy 1530793 95 16 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/16THECHE.MP3 I'm So Wasted Adam Sandler They're all Gonna Laugh at You Comedy 4803550 300 17 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/17IMSOWA.MP3 Lunchlady Land Adam Sandler They're all Gonna Laugh at You Comedy 4851477 303 18 2002-02-26 01:26:52-08 2002-02-26 01:26:52-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/18LUNCHL.MP3 The The The Beating of a High School Spanish Teacher Adam Sandler They're all Gonna Laugh at You Comedy 464199 29 19 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/19THETHE.MP3 Toll Booth Willie Adam Sandler They're all Gonna Laugh at You Comedy 3653609 228 20 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/20TOLLBO.MP3 Teenage Love on the Phone Adam Sandler They're all Gonna Laugh at You Comedy 2461180 153 21 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/21TEENAG.MP3 My Little Chicken Adam Sandler They're all Gonna Laugh at You Comedy 2123461 132 22 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/THEYREALLGO/22MYLITT.MP3 Joining The Cult Adam Sandler What the Hell Happened to Me? Comedy 2769194 173 1 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/01JOININ.MP3 Respect Adam Sandler What the Hell Happened to Me? Comedy 4399225 274 2 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/02RESPEC.MP3 Ode To My Car Adam Sandler What the Hell Happened to Me? Comedy 3766859 235 3 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/03ODETOM.MP3 The Excited Southerner Orders A Meal Adam Sandler What the Hell Happened to Me? Comedy 724976 45 4 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/04THEEXC.MP3 The Goat Adam Sandler What the Hell Happened to Me? Comedy 8505673 531 5 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/05THEGOA.MP3 The Chanukah Song Adam Sandler What the Hell Happened to Me? Comedy 3587559 224 6 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/06THECHA.MP3 The Excited Southerner Gets Pulled Over Adam Sandler What the Hell Happened to Me? Comedy 1029670 64 7 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/07THEEXC.MP3 The Hypnotist Adam Sandler What the Hell Happened to Me? Comedy 7724095 482 8 2002-02-26 01:26:53-08 2002-02-26 01:26:53-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/08THEHYP.MP3 Steve Polychronopolous Adam Sandler What the Hell Happened to Me? Comedy 3059821 191 9 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/09STEVEP.MP3 The Excited Southerner At A Job Interview Adam Sandler What the Hell Happened to Me? Comedy 1131379 70 10 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/10THEEXC.MP3 Do It For Your Mama Adam Sandler What the Hell Happened to Me? Comedy 5177199 323 11 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/11DOITFO.MP3 Crazy Love Adam Sandler What the Hell Happened to Me? Comedy 3789150 236 12 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/12CRAZYL.MP3 The Excited Southerner Meets Mel Gibson Adam Sandler What the Hell Happened to Me? Comedy 1099891 68 13 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/13THEEXC.MP3 The Adventures Of The Cow Adam Sandler What the Hell Happened to Me? Comedy 4869031 304 14 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/14THEADV.MP3 Dip Doodle Adam Sandler What the Hell Happened to Me? Comedy 3650665 228 15 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/15DIPDOO.MP3 The Excited Southerner Proposes To A Woman Adam Sandler What the Hell Happened to Me? Comedy 1012958 63 16 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/16THEEXC.MP3 Memory Lane Adam Sandler What the Hell Happened to Me? Comedy 2610784 163 17 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/17MEMORY.MP3 Mr. Bake-O Adam Sandler What the Hell Happened to Me? Comedy 3944491 246 18 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/18MRBAKE.MP3 Sex Or Weight Lifting Adam Sandler What the Hell Happened to Me? Comedy 6818388 426 19 2002-02-26 01:26:54-08 2002-02-26 01:26:54-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/19SEXORW.MP3 What The Hell Happened To Me? Adam Sandler What the Hell Happened to Me? Comedy 2331188 145 20 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3014/ADAMSANDLER/WHATTHEHELL/20WHATTH.MP3 Together in Electric Dreams Electric Dreams Music from the film Pop 2270560 141 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/ELECTRIC/MUSICFRO/TOGETHER.MP3 Father Of Mine Everclear So Much For The After Glow Blues 3703519 231 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/EVERCLEA/SOMUCHFO/FATHEROF.MP3 What It's Like Everlast Whitey Ford Sings The Blues Blues 4836757 302 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/EVERLAST/WHITEYFO/WHATITSL.MP3 The Way Fastball N/A Rock 4113648 257 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/FASTBALL/UNKNOWNA/THEWAY.MP3 Why Frankie Avalon 45- Chancellor 1045 Rock 1203006 150 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 64 44100 MPEG AUDIO FILE MP3023/FRANKIEA/45CHANCE/WHY.MP3 It Genesis Lamb Lies Down On Broadway Pop 4130253 258 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/LAMBLIES/IT.MP3 Anyway Genesis The Lamb Lies Down on Broadway Pop 3002190 187 0 2002-02-26 01:26:55-08 2002-02-26 01:26:55-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/ANYWAY.MP3 Back in N.Y.C. Genesis The Lamb Lies Down on Broadway Pop 5485999 342 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/BACKINNY.MP3 Broadway Melody of 1974 Genesis The Lamb Lies Down on Broadway Pop 528865 33 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/BROADWAY.MP3 Carpet Crawlers Genesis The Lamb Lies Down on Broadway Pop 5051174 315 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/CARPETCR.MP3 Counting Out Time Genesis The Lamb Lies Down on Broadway Pop 3555579 222 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/COUNTING.MP3 Cuckoo Cocoon Genesis The Lamb Lies Down on Broadway Pop 2107347 131 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/CUCKOOCO.MP3 Fly on a Windshield Genesis The Lamb Lies Down on Broadway Pop 4208462 263 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/FLYONAWI.MP3 Hairless Heart Genesis The Lamb Lies Down on Broadway Pop 2136288 133 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/HAIRLESS.MP3 In the Cage Genesis The Lamb Lies Down on Broadway Pop 7934111 495 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/INTHECAG.MP3 In the Rapids Genesis The Lamb Lies Down on Broadway Pop 2299371 143 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/INTHERAP.MP3 Light Dies Down on Broadway Genesis The Lamb Lies Down on Broadway Pop 3402616 212 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/LIGHTDIE.MP3 Lilywhite Lilith Genesis The Lamb Lies Down on Broadway Pop 2592182 162 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/LILYWHIT.MP3 Parade of Lifeless Packaging Genesis The Lamb Lies Down on Broadway Pop 2647505 165 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/PARADEOF.MP3 Ravine Genesis The Lamb Lies Down on Broadway Pop 1981256 123 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/RAVINE.MP3 Silent Sorrow in Empty Boats Genesis The Lamb Lies Down on Broadway Pop 3001516 187 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/SILENTSO.MP3 Supernatural Anaesthetist Genesis The Lamb Lies Down on Broadway Pop 2871110 179 0 2002-02-26 01:26:56-08 2002-02-26 01:26:56-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/SUPERNAT.MP3 The Chamber of 32 Doors Genesis The Lamb Lies Down on Broadway Pop 5448243 340 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THECHAMB.MP3 The Colony of Slippermen Genesis The Lamb Lies Down on Broadway Pop 7910299 494 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THECOLON.MP3 The Lamb Lies Down on Broadway Genesis The Lamb Lies Down on Broadway Pop 4641101 290 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THELAMBL.MP3 The Lamia Genesis The Lamb Lies Down on Broadway Pop 6676053 417 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THELAMIA.MP3 The Waiting Room Genesis The Lamb Lies Down on Broadway Pop 5197739 324 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/GENESIS/THELAMBL/THEWAITI.MP3 One Metallica And Justice for all Metal 7099000 443 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/ANDJUSTI/ONE.MP3 Turn The Page Metallica Garage Inc. Metal 5865198 366 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/GARAGEIN/TURNTHEP.MP3 Blackened Metallica N/A Metal 6385106 399 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/BLACKENE.MP3 Enter Sandman Metallica N/A Metal 5316807 332 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/ENTERSAN.MP3 Eye of Beholder Metallica N/A Metal 6201210 387 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/EYEOFBEH.MP3 Fade To Black Metallica N/A Metal 6608300 413 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/FADETOBL.MP3 Master Of Puppets Metallica N/A Metal 8266905 516 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/MASTEROF.MP3 Nothing Else Matters Metallica N/A Metal 6219605 388 0 2002-02-26 01:26:57-08 2002-02-26 01:26:57-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/NOTHINGE.MP3 The Unforgiven Metallica N/A Metal 6194244 387 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/THEUNFOR.MP3 Thorn Within Metallica N/A Metal 5623170 351 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/THORNWIT.MP3 To Live and to Die Metallica N/A Metal 9458368 591 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/METALLIC/UNKNOWNA/TOLIVEAN.MP3 Rite of Man Mike Oldfield B-side of "Moonlight Shadow" New Age 2297102 143 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/BSIDEOFM/RITEOFMA.MP3 Heaven's Open (Remix) Mike Oldfield Heaven's Open 12" Single New Age 4253296 265 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/HEAVENSO/HEAVENSO.MP3 Earth Moving (Club Mix) Mike Oldfield Innocent New Age 3851078 240 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/INNOCENT/EARTHMOV.MP3 Let There Be Light (Hardfloor) Mike Oldfield Let There Be Light New Age 10823487 676 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/LETTHERE/LETTHERE.MP3 Music for the Video Wall Mike Oldfield Magic Touch New Age 4249951 265 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/MAGICTOU/MUSICFOR.MP3 In the Pool Mike Oldfield Moonlight Shadow New Age 3492047 218 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/MOONLIG1/INTHEPOO.MP3 Moonlight Shadow (Extended) Mike Oldfield Moonlight Shadow Maxi CD New Age 5064003 316 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/MOONLIGH/MOONLIGH.MP3 Early Stages (Sentinel) Mike Oldfield Sentinel New Age 3971868 248 0 2002-02-26 01:26:58-08 2002-02-26 01:26:58-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/SENTINEL/EARLYSTA.MP3 Crime of Passion Mike Oldfield Single New Age 3473640 217 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/SINGLE/CRIMEOFP.MP3 Don Alfonso Mike Oldfield Single New Age 4836599 302 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/SINGLE/DONALFON.MP3 Silent Night Mike Oldfield Tattoo New Age 4172893 260 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TATTOOCD/SILENTNI.MP3 Tattoo (Live in Edinburgh) Mike Oldfield Tattoo New Age 3609638 225 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TATTOOCD/TATTOOLI.MP3 The Bell (MC Billy Connolly) Mike Oldfield The Bell New Age 3314841 207 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THEBELLC/THEBELLM.MP3 A New Beginning Mike Oldfield The Songs of Distant Earth New Age 1498524 93 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/ANEWBEGI.MP3 Ascension Mike Oldfield The Songs of Distant Earth New Age 5585299 349 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/ASCENSIO.MP3 Crystal Clear Mike Oldfield The Songs of Distant Earth New Age 5480894 342 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/CRYSTALC.MP3 First Landing Mike Oldfield The Songs of Distant Earth New Age 1218072 76 0 2002-02-26 01:26:59-08 2002-02-26 01:26:59-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/FIRSTLAN.MP3 Hibernaculum Mike Oldfield The Songs of Distant Earth New Age 3401774 212 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/HIBERNAC.MP3 In the Beginning Mike Oldfield The Songs of Distant Earth New Age 1315319 82 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/INTHEBEG.MP3 Lament for Atlantis Mike Oldfield The Songs of Distant Earth New Age 2614757 163 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/LAMENTFO.MP3 Let There Be Light Mike Oldfield The Songs of Distant Earth New Age 4761613 297 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/LETTHERE.MP3 Magellan Mike Oldfield The Songs of Distant Earth New Age 4495047 280 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/MAGELLAN.MP3 Oceania Mike Oldfield The Songs of Distant Earth New Age 3192782 199 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/OCEANIA.MP3 Only Time Will Tell Mike Oldfield The Songs of Distant Earth New Age 4264859 266 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/ONLYTIME.MP3 Prayer for the Earth Mike Oldfield The Songs of Distant Earth New Age 2078099 129 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/PRAYERFO.MP3 Supernova Mike Oldfield The Songs of Distant Earth New Age 3257150 203 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/SUPERNOV.MP3 The Chamber Mike Oldfield The Songs of Distant Earth New Age 1734109 108 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/THECHAMB.MP3 The Shining Ones Mike Oldfield The Songs of Distant Earth New Age 2873471 179 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/THESHINI.MP3 The Sunken Forest Mike Oldfield The Songs of Distant Earth New Age 2524087 157 0 2002-02-26 01:27:00-08 2002-02-26 01:27:00-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/THESUNKE.MP3 Tubular World Mike Oldfield The Songs of Distant Earth New Age 3231866 201 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/THESONGS/TUBULARW.MP3 Bones Mike Oldfield To France New Age 3163301 197 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TOFRANCE/BONES.MP3 Tubular Bells - Part Two Mike Oldfield Tubular Bells New Age 22351191 1396 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TUBULAR1/TUBULAR1.MP3 Tubular Bells - Part One Mike Oldfield Tubular Bells New Age 24516219 1532 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TUBULAR1/TUBULARB.MP3 Man in the Rain Mike Oldfield Tubular Bells III New Age 3879070 242 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/TUBULARB/MANINTHE.MP3 Women of Ireland System 7 Mix Mike Oldfield Women of Ireland New Age 8671824 541 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/WOMENOFI/WOMENOFI.MP3 Tubular Bells X Mike Oldfield X-Files Soundtrack (hidden) Soundtrack 3764281 235 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MIKEOLDF/XFILESSO/TUBULARB.MP3 Argument Clinic Monty Python Instant Record Collection Comedy 3554323 222 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/INSTANTR/ARGUMENT.MP3 Pet Shop Monty Python Instant Record Collection Comedy 4675282 292 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/INSTANTR/PETSHOP.MP3 The Cheese Shop Monty Python Instant Record Collection Comedy 3933830 245 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/INSTANTR/THECHEES.MP3 Accountancy Shanty Monty Python Sings Comedy 1243398 77 0 2002-02-26 01:27:01-08 2002-02-26 01:27:01-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ACCOUNTA.MP3 All Things Dull And Ugly Monty Python Sings Comedy 1522184 95 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ALLTHING.MP3 Always Look On The Bright Side Of Life Monty Python Sings Comedy 3461946 216 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ALWAYSLO.MP3 Brian Song Monty Python Sings Comedy 2546170 159 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/BRIANSON.MP3 Bruces' Philosophers Song Monty Python Sings Comedy 872677 54 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/BRUCESPH.MP3 Christmas In Heaven Monty Python Sings Comedy 2669477 166 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/CHRISTMA.MP3 Decomposing Composers Monty Python Sings Comedy 2657358 166 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/DECOMPOS.MP3 Eric The Half A Bee Monty Python Sings Comedy 2072631 129 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ERICTHEH.MP3 Every Sperm Is Sacred Monty Python Sings Comedy 4398157 274 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/EVERYSPE.MP3 Finland Monty Python Sings Comedy 1980668 123 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/FINLAND.MP3 Galaxy Song Monty Python Sings Comedy 2617642 163 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/GALAXYSO.MP3 Henry Kissinger Monty Python Sings Comedy 1457840 91 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/HENRYKIS.MP3 I Like Chinese Monty Python Sings Comedy 3084505 192 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/ILIKECHI.MP3 I'm So Worried Monty Python Sings Comedy 3192896 199 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/IMSOWORR.MP3 I've Got Two Legs Monty Python Sings Comedy 560036 35 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/IVEGOTTW.MP3 Knights Of The Round Table (Camelot Song) Monty Python Sings Comedy 1066208 66 0 2002-02-26 01:27:02-08 2002-02-26 01:27:02-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/KNIGHTSO.MP3 Lumberjack Song Monty Python Sings Comedy 3247092 202 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/LUMBERJA.MP3 Meaning Of Life Monty Python Sings Comedy 2200941 137 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/MEANINGO.MP3 Medical Love Song Monty Python Sings Comedy 3430300 214 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/MEDICALL.MP3 Money Song Monty Python Sings Comedy 893142 55 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/MONEYSON.MP3 Never Be Rude To An Arab Monty Python Sings Comedy 1011020 63 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/NEVERBER.MP3 Oliver Cromwell Monty Python Sings Comedy 4007917 250 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/OLIVERCR.MP3 Penis Song (Not The Noel Coward Song) Monty Python Sings Comedy 684189 42 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/PENISSON.MP3 Sit On My Face Monty Python Sings Comedy 741985 46 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/SITONMYF.MP3 Spam Song Monty Python Sings Comedy 532860 33 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/SINGS/SPAMSONG.MP3 Crocodile Monty Python The Final Rip Off - disc 2 Comedy 2692208 168 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/THEFINAL/CROCODIL.MP3 Do Wot John Monty Python The Final Rip Off - disc 2 Comedy 495696 30 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/MONTYPYT/THEFINAL/DOWOTJOH.MP3 The Bookshop Sketch Monty Python N/A Comedy 2135268 266 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 64 22050 MPEG AUDIO FILE MP3023/MONTYPYT/UNKNOWNA/THEBOOKS.MP3 n/a N/A Deliverance Soundtrack Soundtrack 3248130 203 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/NA/DELIVERA/NA.MP3 Alborada. Capriccio Narciso Yepes Guitara Espaola Classical 1862839 116 0 2002-02-26 01:27:03-08 2002-02-26 01:27:03-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/ALBORADA.MP3 Cancion del fuego fatua (El am Narciso Yepes Guitara Espaola Classical 1617508 101 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/CANCIOND.MP3 Catarina d'Alio Narciso Yepes Guitara Espaola Classical 2177558 136 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/CATARINA.MP3 Danza del molinero. Farruca (E Narciso Yepes Guitara Espaola Classical 2880302 180 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/DANZADEL.MP3 Danza espanola No. 4 Villanesc Narciso Yepes Guitara Espaola Classical 5552314 347 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/DANZAESP.MP3 Danza mora Narciso Yepes Guitara Espaola Classical 1868681 116 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/DANZAMOR.MP3 El circul majico (El amor bruj Narciso Yepes Guitara Espaola Classical 2250856 140 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/ELCIRCUL.MP3 Fandanguillo op. 36 Narciso Yepes Guitara Espaola Classical 4834109 302 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/FANDANGU.MP3 Passapie Narciso Yepes Guitara Espaola Classical 2002008 125 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/PASSAPIE.MP3 Piezas caracteristicas No. 12 Narciso Yepes Guitara Espaola Classical 4386067 274 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/PIEZASCA.MP3 Recuerdos de viaje No. 6 Rumor Narciso Yepes Guitara Espaola Classical 3745755 234 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/RECUERDO.MP3 Romance Narciso Yepes Guitara Espaola Classical 2369811 148 0 2002-02-26 01:27:04-08 2002-02-26 01:27:04-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/ROMANCE.MP3 Sonata op 61 Narciso Yepes Guitara Espaola Classical 9745121 609 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/SONATAOP.MP3 Sueno Narciso Yepes Guitara Espaola Classical 4741866 296 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/SUENO.MP3 Suite espanola No. 5 Asturias. Narciso Yepes Guitara Espaola Classical 6225506 389 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/NARCISOY/GUITARAE/SUITEESP.MP3 Crazy Train Ozzy Osbourne N/A Metal 4641805 290 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/OZZYOSBO/UNKNOWNA/CRAZYTRA.MP3 Perry Mason Ozzy Osbourne N/A Metal 5667198 354 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/OZZYOSBO/UNKNOWNA/PERRYMAS.MP3 Solsbury Hill Peter Gabriel Shaking The Tree Sixteen Golds Pop 4162597 260 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/PETERGAB/SHAKINGT/SOLSBURY.MP3 Goodness Gracious Me Peter Sellers Collection Comedy 2916934 182 9 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/PETERSEL/COLLECTI/GOODNESS.MP3 One More Night Phil Collins N/A Rock 6090883 380 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/PHILCOLL/UNKNOWNA/ONEMOREN.MP3 Du Hast (German Version) Ramstein N/A Alternative 3738606 233 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/DUHASTGE.MP3 Du Hast Ramstein N/A Alternative 3768821 235 0 2002-02-26 01:27:05-08 2002-02-26 01:27:05-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA.MP3 n/a Ramstein N/A Alternative 3476104 217 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA2.MP3 n/a Ramstein N/A Alternative 4234283 264 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA3.MP3 n/a Ramstein N/A Alternative 4244314 265 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA4.MP3 n/a Ramstein N/A Alternative 3917052 244 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RAMSTEIN/UNKNOWNA/NA5.MP3 Anne Boleyn Rick Wakeman The Six Wives of Henry VIII Rock 6292092 393 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/ANNEBOLE.MP3 Anne of Cleves Rick Wakeman The Six Wives of Henry VIII Rock 7566870 472 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/ANNEOFCL.MP3 Catherine of Aragon Rick Wakeman The Six Wives of Henry VIII Rock 3595707 224 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/CATHERI1.MP3 Catherine Parr Rick Wakeman The Six Wives of Henry VIII Rock 6795596 424 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/CATHERI2.MP3 Catherine Howard Rick Wakeman The Six Wives of Henry VIII Rock 6319682 394 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/CATHERIN.MP3 Jane Seymour Rick Wakeman The Six Wives of Henry VIII Rock 4601309 287 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/RICKWAKE/THESIXWI/JANESEYM.MP3 Airlines Robert Schimmel Comes Clean Comedy 3949838 246 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/AIRLINES.MP3 Fart and Shit Jokes Robert Schimmel Comes Clean Comedy 5535011 345 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/FARTANDS.MP3 Hotels Robert Schimmel Comes Clean Comedy 1281431 80 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/HOTELS.MP3 I'm Not Homophobic Robert Schimmel Comes Clean Comedy 2368694 148 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/IMNOTHOM.MP3 Introduction Robert Schimmel Comes Clean Comedy 2850455 178 0 2002-02-26 01:27:06-08 2002-02-26 01:27:06-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/INTRODUC.MP3 Love Is Blind - It Will Blow Y Robert Schimmel Comes Clean Comedy 3899272 243 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/LOVEISBL.MP3 Love - Marriage - Sexual Dysfu Robert Schimmel Comes Clean Comedy 16139061 1008 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/LOVEMARR.MP3 Weird TV Commercials Robert Schimmel Comes Clean Comedy 14860933 928 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/ROBERTSC/COMESCLE/WEIRDTVC.MP3 Friggin' in the Riggin' Sex Pistols The Great Rock'n'Roll Swindle Other 3441494 215 21 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3023/SEXPISTO/THEGREAT/FRIGGINI.MP3 Mandolin concerto RV425, 2nd Antonio Vivaldi Mandolin concerto Classical 3044839 190 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/ANTONIOV/MANDOLIN/MANDOLI1.MP3 Mandolin concerto RV425, 3rd Antonio Vivaldi Mandolin concerto Classical 2230655 139 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/ANTONIOV/MANDOLIN/MANDOLI2.MP3 Mandolin concerto RV425, 1st Antonio Vivaldi Mandolin concerto Classical 2631477 164 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/ANTONIOV/MANDOLIN/MANDOLIN.MP3 02 - Learning to Fly!!s Pink Floyd A Momentary Lapse of Reason New Age 4692015 293 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/AMOMENTA/02LEARNI.MP3 Alan's Psychedelic Breakfast Pink Floyd Atom Heart Mother New Age 12438602 777 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/ALANSPSY.MP3 Atom Heart Mother Suite Pink Floyd Atom Heart Mother New Age 22637215 1414 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/ATOMHEAR.MP3 Fat Old Sun Pink Floyd Atom Heart Mother New Age 5143807 321 0 2002-02-26 01:27:07-08 2002-02-26 01:27:07-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/FATOLDSU.MP3 If Pink Floyd Atom Heart Mother New Age 4263158 266 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/IF.MP3 Summer '68 Pink Floyd Atom Heart Mother New Age 5245370 327 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/ATOMHEAR/SUMMER68.MP3 A great day for freedom Pink Floyd Division Bell New Age 4122323 257 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/AGREATDA.MP3 Cluster One Pink Floyd Division Bell New Age 5733961 358 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/CLUSTERO.MP3 Coming back to life Pink Floyd Division Bell New Age 6070844 379 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/COMINGBA.MP3 High Hopes Pink Floyd Division Bell New Age 8196992 512 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/HIGHHOPE.MP3 Keep Talking Pink Floyd Division Bell New Age 5905325 369 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/KEEPTALK.MP3 Lost for words Pink Floyd Division Bell New Age 5039406 314 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/LOSTFORW.MP3 Marooned Pink Floyd Division Bell New Age 5273808 329 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/MAROONED.MP3 Poles apart Pink Floyd Division Bell New Age 6785128 424 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/POLESAPA.MP3 Take it back Pink Floyd Division Bell New Age 5956874 372 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/TAKEITBA.MP3 Wearing the inside out Pink Floyd Division Bell New Age 6552336 409 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/WEARINGT.MP3 What do you want from me Pink Floyd Division Bell New Age 4186369 261 0 2002-02-26 01:27:08-08 2002-02-26 01:27:08-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/DIVISION/WHATDOYO.MP3 Get Your Filthy Hands Off My D Pink Floyd The Final Cut New Age 1246354 77 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/GETYOURF.MP3 Not Now John Pink Floyd The Final Cut New Age 4846635 302 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/NOTNOWJO.MP3 One of the Few Pink Floyd The Final Cut New Age 1319203 82 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/ONEOFTHE.MP3 Paranoid Eyes Pink Floyd The Final Cut New Age 3621180 226 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/PARANOID.MP3 The Final Cut Pink Floyd The Final Cut New Age 4573431 285 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEFINAL.MP3 The Fletcher Memorial Home Pink Floyd The Final Cut New Age 4025080 251 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEFLETC.MP3 The Gunners Dream Pink Floyd The Final Cut New Age 4907384 306 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEGUNNE.MP3 The Hero's Return Pink Floyd The Final Cut New Age 2840919 177 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEHEROS.MP3 The Post War Dream Pink Floyd The Final Cut New Age 2934199 183 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/THEPOSTW.MP3 Two Suns in the Sunset Pink Floyd The Final Cut New Age 5085718 317 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/TWOSUNSI.MP3 Your Possible Pasts Pink Floyd The Final Cut New Age 4194626 262 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/PINKFLOY/THEFINAL/YOURPOSS.MP3 A Touch of Fairfax Robin Williams Reality What a Concept Comedy 1024826 64 0 2002-02-26 01:27:09-08 2002-02-26 01:27:09-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/ATOUCHOF.MP3 Come Inside My Mind Robin Williams Reality What a Concept Comedy 2633133 164 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/COMEINSI.MP3 Grandpa Funk Robin Williams Reality What a Concept Comedy 4155333 259 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/GRANDPAF.MP3 Hollywood Casting Session Robin Williams Reality What a Concept Comedy 1383614 86 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/HOLLYWOO.MP3 Kindergarten of the Stars Robin Williams Reality What a Concept Comedy 1672669 104 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/KINDERGA.MP3 Nicky Lennon Robin Williams Reality What a Concept Comedy 7675384 479 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/NICKYLEN.MP3 Pop Goes the Weasel Robin Williams Reality What a Concept Comedy 3938419 246 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/POPGOEST.MP3 Reverend Earnest Angry Robin Williams Reality What a Concept Comedy 7326538 457 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/REVEREND.MP3 Roots People Robin Williams Reality What a Concept Comedy 1760846 110 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/ROOTSPEO.MP3 Shakespeare(A Meltdowners Robin Williams Reality What a Concept Comedy 10560984 660 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/SHAKESPE.MP3 Tank You Boyce Robin Williams Reality What a Concept Comedy 383395 23 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/ROBINWIL/REALITYW/TANKYOUB.MP3 01- Tips On Shopping, Entertai Rodney Carrington Hangin' with Rodney Comedy 8623344 538 0 2002-02-26 01:27:10-08 2002-02-26 01:27:10-08 128 44100 MPEG AUDIO FILE MP3024/RODNEYCA/HANGINWI/01TIPSON.MP3 Ben's Song Sarah McLachlan Touch Rock 4759266 297 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/BENSSONG.MP3 Out of the Shadows Sarah McLachlan Touch Rock 4841194 302 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/OUTOFTHE.MP3 Sad Clown Sarah McLachlan Touch Rock 4344231 271 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/SADCLOWN.MP3 Steaming Sarah McLachlan Touch Rock 4546105 284 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/STEAMING.MP3 Strange World Sarah McLachlan Touch Rock 3949264 246 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/STRANGEW.MP3 Touch Sarah McLachlan Touch Rock 3118354 194 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/TOUCH.MP3 Trust Sarah McLachlan Touch Rock 4618826 288 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/TRUST.MP3 Uphill Battle Sarah McLachlan Touch Rock 4476868 279 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/UPHILLBA.MP3 Vox Sarah McLachlan Touch Rock 4694893 293 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/VOX.MP3 Vox (Extended) Sarah McLachlan Touch Rock 6559837 409 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SARAHMCL/TOUCH/VOXEXTEN.MP3 Closing Time Semisonic feeling strangly fine Rock 4374070 273 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SEMISONI/FEELINGS/CLOSINGT.MP3 Ana's Song (Open Fire) Silverchair Neon Ballroom Rock 3554446 222 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/ANASSONG.MP3 Anthem for the Year 2000 Silverchair Neon Ballroom Rock 3960982 247 0 2002-02-26 01:27:11-08 2002-02-26 01:27:11-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/ANTHEMFO.MP3 Black Tangled Heart Silverchair Neon Ballroom Rock 4377682 273 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/BLACKTAN.MP3 Do You Feel the Same Silverchair Neon Ballroom Rock 4129415 258 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/DOYOUFEE.MP3 Emotion Sickness Silverchair Neon Ballroom Rock 5784529 361 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/EMOTIONS.MP3 Miss You Love Silverchair Neon Ballroom Rock 3853555 240 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/MISSYOUL.MP3 Paint Pastel Princess Silverchair Neon Ballroom Rock 4374758 273 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/PAINTPAS.MP3 Point of View Silverchair Neon Ballroom Rock 3440615 215 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/POINTOFV.MP3 Satin Sheets Silverchair Neon Ballroom Rock 2311286 144 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/SATINSHE.MP3 Spawn Again Silverchair Neon Ballroom Rock 3377080 211 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/SPAWNAGA.MP3 Steam Will Rise Silverchair Neon Ballroom Rock 5086954 317 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SILVERCH/NEONBALL/STEAMWIL.MP3 April Showers Spike Jones The Spike Jones Anthology Comedy 1472884 92 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/APRILSHO.MP3 Barney Google Spike Jones The Spike Jones Anthology Comedy 2552054 159 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/BARNEYGO.MP3 Black Bottom Spike Jones The Spike Jones Anthology Comedy 2492843 155 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/BLACKBOT.MP3 Secret Love Spike Jones The Spike Jones Anthology Comedy 2480999 155 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEJON/THESPIKE/SECRETLO.MP3 n/a Spike Milligan N/A Comedy 3740262 233 0 2002-02-26 01:27:12-08 2002-02-26 01:27:12-08 128 44100 MPEG AUDIO FILE MP3024/SPIKEMIL/UNKNOWNA/NA.MP3 n/a Spike Milligan N/A Comedy 2331112 291 0 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 64 44100 MPEG AUDIO FILE MP3024/SPIKEMIL/UNKNOWNA/NA2.MP3 Cool For Cats Squeeze Cool For Cats Pop 3520040 220 12 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/COOLFORC.MP3 Goodbye Girl Squeeze Cool For Cats Pop 2884740 180 11 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/GOODBYEG.MP3 Hard To Find Squeeze Cool For Cats Pop 3489101 218 0 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/HARDTOFI.MP3 Hop Skip & Jump Squeeze Cool For Cats Pop 2673814 167 7 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/HOPSKIPJ.MP3 It's Not Cricket Squeeze Cool For Cats Pop 2483644 155 4 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/ITSNOTCR.MP3 It's So Dirty Squeeze Cool For Cats Pop 3065300 191 5 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/ITSSODIR.MP3 Revue Squeeze Cool For Cats Pop 2416341 151 2 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/REVUE.MP3 Slap And Tickle Squeeze Cool For Cats Pop 3861514 241 1 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/SLAPANDT.MP3 Slightly Drunk Squeeze Cool For Cats Pop 2591336 161 10 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/SLIGHTLY.MP3 The Knack Squeeze Cool For Cats Pop 4409592 275 6 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/THEKNACK.MP3 Touching Me, Touching You Squeeze Cool For Cats Pop 2340153 146 3 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/TOUCHING.MP3 Up The Junction Squeeze Cool For Cats Pop 3073383 192 8 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 44100 MPEG AUDIO FILE MP3024/SQUEEZE/COOLFORC/UPTHEJUN.MP3 Drive The Cars N/A Rock 3796556 237 0 2002-02-26 01:27:13-08 2002-02-26 01:27:13-08 128 22050 MPEG AUDIO FILE MP3024/THECARS/UNKNOWNA/DRIVE.MP3 Anybody Seen My Baby The Rolling Stones Bridges To Babylon Rock 4339672 271 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/THEROLLI/BRIDGEST/ANYBODYS.MP3 2000 Light Years From Home The Rolling Stones Their Satanic Majesties Reques Rock 4592137 287 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/THEROLLI/THEIRSAT/2000LIGH.MP3 Jailbreak Thin Lizzy Dedication Rock 3900370 243 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/THINLIZZ/DEDICATI/JAILBREA.MP3 Adiago - Allegro Wolfgang Amadeus Mozart Symphony No 38 in D, K 504 Classical 12562735 785 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHON1/ADIAGOAL.MP3 Andante Wolfgang Amadeus Mozart Symphony No 38 in D, K 504 Classical 10334447 645 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHON1/ANDANTE.MP3 Finale, Presto Wolfgang Amadeus Mozart Symphony No 38 in D, K 504 Classical 7426295 464 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHON1/FINALEPR.MP3 Adiago - Allegro Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 9987276 624 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/ADIAGOAL.MP3 Andante con moto Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 7069086 441 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/ANDANTEC.MP3 Finale, Allegro Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 7667462 479 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/FINALEAL.MP3 Menuetto and Trio, Allegretto Wolfgang Amadeus Mozart Symphony No 39 in E Flat, K543 Classical 4791500 299 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/SYMPHONY/MENUETTO.MP3 Clarinet Concerto K622, 2nd Wolfgang Amadeus Mozart N/A Classical 6729130 420 0 2002-02-26 01:27:14-08 2002-02-26 01:27:14-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/UNKNOWNA/CLARINE1.MP3 Clarinet Concerto K622, 3rd Wolfgang Amadeus Mozart N/A Classical 9072625 567 0 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/UNKNOWNA/CLARINE2.MP3 Clarinet Concerto K622, 1st Wolfgang Amadeus Mozart N/A Classical 11659375 728 0 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3024/WOLFGANG/UNKNOWNA/CLARINET.MP3 Pantala Naga Pampa Dave Matthews Band Before These Crowded Streets Rock 647578 40 1 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/01PANTAL.MP3 Rapunzel Dave Matthews Band Before These Crowded Streets Rock 5765894 360 2 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/02RAPUNZ.MP3 The Last Stop Dave Matthews Band Before These Crowded Streets Rock 6685827 417 3 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/03THELAS.MP3 Don't Drink the Water Dave Matthews Band Before These Crowded Streets Rock 6742817 421 4 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/04DONTDR.MP3 Stay (Wasting Time) Dave Matthews Band Before These Crowded Streets Rock 5364664 335 5 2002-02-26 01:27:15-08 2002-02-26 01:27:15-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/05STAYWA.MP3 Halloween Dave Matthews Band Before These Crowded Streets Rock 4928305 308 6 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/06HALLOW.MP3 The Stone Dave Matthews Band Before These Crowded Streets Rock 7180686 448 7 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/07THESTO.MP3 Crush Dave Matthews Band Before These Crowded Streets Rock 7829076 489 8 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/08CRUSH.MP3 The Dreaming Tree Dave Matthews Band Before These Crowded Streets Rock 8451289 528 9 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/09THEDRE.MP3 Pig Dave Matthews Band Before These Crowded Streets Rock 6683729 417 10 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/10PIG.MP3 Spoon Dave Matthews Band Before These Crowded Streets Rock 7247140 452 11 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/DAVEMATTHEW/BEFORETHESE/11SPOON.MP3 The black man St Germain From Detroit to St Germain House 5276049 329 1 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/01THEBLA.MP3 Alabama blues St Germain From Detroit to St Germain House 5378867 336 2 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/02ALABAM.MP3 Walk so lonely St Germain From Detroit to St Germain House 4438460 277 3 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/03WALKSO.MP3 Jack on the groove St Germain From Detroit to St Germain House 4442226 277 4 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/04JACKON.MP3 Prlusion St Germain From Detroit to St Germain House 6853840 428 5 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/05PRLUSI.MP3 French St Germain From Detroit to St Germain House 5534062 345 6 2002-02-26 01:27:16-08 2002-02-26 01:27:16-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/06FRENCH.MP3 How do you plead St Germain From Detroit to St Germain House 6401616 400 7 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/07HOWDOY.MP3 Move St Germain From Detroit to St Germain House 6602642 412 8 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/08MOVE.MP3 Deep in it St Germain From Detroit to St Germain House 6988842 436 9 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/09DEEPIN.MP3 Soul salsa soul St Germain From Detroit to St Germain House 9805057 612 10 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/10SOULSA.MP3 My mama said St Germain From Detroit to St Germain House 5168215 323 11 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/11MYMAMA.MP3 Dub experience St Germain From Detroit to St Germain House 4214436 263 12 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/STGERMAIN/FROMDETROIT/12DUBEXP.MP3 Intergalactic (Hardfloor X Mix) Beastie Boys N/A Hip-Hop 4715217 294 0 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/BEASTIEBOYS/UNKNOWNALBU/INTERGAL.MP3 The Time Warp The Rocky Horror Picture Show The Rocky Horror Picture Show Sound Track 3187092 199 0 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/THEROCKYHOR/THEROCKYHOR/THE TIME WARP.MP3 The Time Warp - 1989 Ext. Mix The Rocky Horror Picture Show The Rocky Horror Picture Show Soundtrack 5388780 336 0 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/THEROCKYHOR/THEROCKYHOR/THETIMEW.MP3 Blow your mind Jamiroquai Emergency On Planet Earth Acid Jazz 8195764 512 8 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/BLOWYOUR.MP3 Didgin' Out Jamiroquai Emergency On Planet Earth Acid Jazz 2491092 155 10 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/DIDGINOU.MP3 Emergency on planet earth Jamiroquai Emergency On Planet Earth Acid Jazz 3923389 245 6 2002-02-26 01:27:17-08 2002-02-26 01:27:17-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/EMERGENC.MP3 Hooked Up Jamiroquai Emergency On Planet Earth Acid Jazz 4413648 275 3 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/HOOKEDUP.MP3 If I Like It, I Do It Jamiroquai Emergency On Planet Earth Acid Jazz 4689095 293 4 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/IFILIKEI.MP3 Music Of The Mind Jamiroquai Emergency On Planet Earth Acid Jazz 6130215 383 5 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/MUSICOFT.MP3 Revolution 1993 Jamiroquai Emergency On Planet Earth Acid Jazz 9868856 616 9 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/REVOLUTI.MP3 Too Young To Die Jamiroquai Emergency On Planet Earth Acid Jazz 5797241 362 2 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/TOOYOUNG.MP3 Whatever It Is, I Can't Stop Jamiroquai Emergency On Planet Earth Acid Jazz 3955585 247 7 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/WHATEVER.MP3 When You Gonna Learn Jamiroquai Emergency On Planet Earth Acid Jazz 3684880 230 1 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/JAMIROQUAI/EMERGENCYON/WHENYOUG.MP3 Avalon Spectral N/A Ambient 10257189 641 0 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/VARIOUS/SPECTRAL.MP3 Me BotEOrquesta Goma Dura Orquesta Goma Dura Live Latin 9127505 570 1 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/01MEBOT.MP3 Me Diste De Tu Agua Orquesta Goma Dura Orquesta Goma Dura Live Latin 7400927 462 2 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/02MEDIST.MP3 Danzn For My Father Orquesta Goma Dura Orquesta Goma Dura Live Latin 5879559 367 3 2002-02-26 01:27:18-08 2002-02-26 01:27:18-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/03DANZNF.MP3 El Pueblo Pide Que Toque Orquesta Goma Dura Orquesta Goma Dura Live Latin 10772243 673 4 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/04ELPUEB.MP3 Fuego En El Orquesta Goma Dura Orquesta Goma Dura Live Latin 8949083 559 5 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/05FUEGOE.MP3 Mam Blues Orquesta Goma Dura Orquesta Goma Dura Live Latin 7716060 482 6 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/06MAMBLU.MP3 Me BotE(Radio Edit) Orquesta Goma Dura Orquesta Goma Dura Live Latin 4142521 258 7 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/ORQUESTAGOM/ORQUESTAGOM/07MEBOTR.MP3 Light In The Tunnel Red Rider Over 60 Minute With... Rock 2301610 143 1 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/01LIGHTI.MP3 Power (Strength In Numbers) Red Rider Over 60 Minute With... Rock 3741486 233 2 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/02POWERS.MP3 Human Race Red Rider Over 60 Minute With... Rock 2868213 179 3 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/03HUMANR.MP3 Can't Turn Back Red Rider Over 60 Minute With... Rock 3748858 234 4 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/04CANTTU.MP3 Napoleon Sheds His Skin Red Rider Over 60 Minute With... Rock 5590393 349 5 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/05NAPOLE.MP3 Walking The Fine Line Red Rider Over 60 Minute With... Rock 4661686 291 6 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/06WALKIN.MP3 Winner Take All Red Rider Over 60 Minute With... Rock 3879401 242 7 2002-02-26 01:27:19-08 2002-02-26 01:27:19-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/07WINNER.MP3 Crack The Sky (Breakaway) Red Rider Over 60 Minute With... Rock 3839983 239 8 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/08CRACKT.MP3 Lunatic Fringe Red Rider Over 60 Minute With... Rock 4201228 262 9 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/09LUNATI.MP3 Cowboys In Hong Kong (As Far As Siam) Red Rider Over 60 Minute With... Rock 3968728 248 10 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/10COWBOY.MP3 Thru The Curtain Red Rider Over 60 Minute With... Rock 3174725 198 11 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/11THRUTH.MP3 What Have You Got To Do Red Rider Over 60 Minute With... Rock 3178076 198 12 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/12WHATHA.MP3 White Hot Red Rider Over 60 Minute With... Rock 4917049 307 13 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/13WHITEH.MP3 Don't Fight It Red Rider Over 60 Minute With... Rock 4093675 255 14 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/14DONTFI.MP3 Avenue "A" Red Rider Over 60 Minute With... Rock 3213867 200 15 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/15AVENUE.MP3 Young Thing, Wild Dreams (Rock Me) Red Rider Over 60 Minute With... Rock 3397097 212 16 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/16YOUNGT.MP3 Breaking Curfew Red Rider Over 60 Minute With... Rock 3549911 221 17 2002-02-26 01:27:20-08 2002-02-26 01:27:20-08 128 44100 MPEG AUDIO FILE MP3025/REDRIDER/OVER60MINUT/17BREAKI.MP3 Hello, I Love You The Doors The Best of The Doors (Disc 2) Rock 2158052 134 1 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/01HELLOI.MP3 Roadhouse Blues The Doors The Best of The Doors (Disc 2) Rock 3899685 243 2 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/02ROADHO.MP3 L.A. Woman The Doors The Best of The Doors (Disc 2) Rock 7521295 470 3 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/03LAWOMA.MP3 Riders on the Storm The Doors The Best of The Doors (Disc 2) Rock 6890604 430 4 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/04RIDERS.MP3 Touch Me The Doors The Best of The Doors (Disc 2) Rock 3072955 192 5 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/05TOUCHM.MP3 Love Her Madly The Doors The Best of The Doors (Disc 2) Rock 3162544 197 6 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/06LOVEHE.MP3 The Unknown Soldier The Doors The Best of The Doors (Disc 2) Rock 3259376 203 7 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/07THEUNK.MP3 The End The Doors The Best of The Doors (Disc 2) Rock 11228170 701 8 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THE BEST OF THE DOORS (DISC 2)/08THEEND.MP3 Break On Through The Doors The Best of The Doors (Disc 1) Rock 2357447 147 1 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/01BREAKO.MP3 Light My Fire The Doors The Best of The Doors (Disc 1) Rock 6827238 426 2 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/02LIGHTM.MP3 The Chrystal Ship The Doors The Best of The Doors (Disc 1) Rock 2459848 153 3 2002-02-26 01:27:21-08 2002-02-26 01:27:21-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/03THECHR.MP3 People Are Strange The Doors The Best of The Doors (Disc 1) Rock 2098315 131 4 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/04PEOPLE.MP3 Strange Days The Doors The Best of The Doors (Disc 1) Rock 2995387 187 5 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/05STRANG.MP3 Love Me Two Times The Doors The Best of The Doors (Disc 1) Rock 3136942 196 6 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/06LOVEME.MP3 Alabama Song The Doors The Best of The Doors (Disc 1) Rock 3202278 200 7 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/07ALABAM.MP3 Five To One The Doors The Best of The Doors (Disc 1) Rock 4258738 266 8 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/08FIVETO.MP3 Waiting For The Sun The Doors The Best of The Doors (Disc 1) Rock 3830756 239 9 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/09WAITIN.MP3 Spanish Caravan The Doors The Best of The Doors (Disc 1) Rock 2854541 178 10 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/10SPANIS.MP3 When The Music's Over The Doors The Best of The Doors (Disc 1) Rock 10492190 655 11 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/THEDOORS/THEBESTOFTH/11WHENTH.MP3 Groove Is In The Heart Deee-Lite Armand Van Helden Mix Dance 5276504 329 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/ARMANDVANHE/GROOVEIS.MP3 DMT (Dance Music Trance) Deee-Lite Dewdrops in the Garden Dance 4281153 267 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/DEWDROPSINT/DMTDANCE.MP3 Goodbeatapella (Sampladelic) Deee-Lite Sampladelic Relics and Dancefl Dance 904464 56 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/SAMPLADELIC/GOODBEAT.MP3 Groove Is In The Heart Deee-Lite N/A Dance 3711916 231 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/UNKNOWNALBU/GROOVEIS.MP3 Power Of Love Deee-Lite N/A Dance 4532070 283 0 2002-02-26 01:27:22-08 2002-02-26 01:27:22-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/UNKNOWNALBU/POWEROFL.MP3 You Sexy Thing Deee-Lite N/A Dance 3949853 246 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/DEEELITE/UNKNOWNALBU/YOUSEXYT.MP3 Imagine John Lennon N/A Rock 2943686 183 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/JOHNLENNON/UNKNOWNALBU/IMAGINE.MP3 Take Time Lenny Kravitz 5 (Reissued W/ Bonus Tracks) Rock 4351092 271 7 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/5REISSUEDWB/TAKETIME.MP3 American Woman Lenny Kravitz Austin Powers 2 Soundtrack 4162454 260 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/AUSTINPOWER/AMERICAN.MP3 Take Me To the River Lenny Kravitz With Al Green & Sheryl Crow Rock 3707297 231 1 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/WITHALGREEN/TAKEMETO.MP3 Rebel rebel Lenny Kravitz With Iggy Pop Rock 4073061 254 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/WITHIGGYPOP/REBELREB.MP3 Purple haze Lenny Kravitz With Ozzy Osbourne Rock 4170535 260 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/WITHOZZYOSB/PURPLEHA.MP3 Are you Gonna Go My Way Lenny Kravitz N/A Rock 3387976 211 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/AREYOUGO.MP3 Believe Lenny Kravitz N/A Rock 4224730 264 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/BELIEVE.MP3 Believe (live acoustic) Lenny Kravitz N/A Rock 5026933 314 1 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/BELIEVEL.MP3 Can't Get You Lenny Kravitz N/A Rock 4385226 274 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/CANTGETY.MP3 Circus Lenny Kravitz N/A Rock 4610924 288 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/CIRCUS.MP3 Eleutheria Lenny Kravitz N/A Reggae 4664423 291 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/ELEUTHER.MP3 Fields of Joy Lenny Kravitz N/A Rock 3797158 237 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/FIELDSOF.MP3 Fly Away Lenny Kravitz N/A Rock 3548054 221 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/FLYAWAY.MP3 Fly Away (acoustic) Lenny Kravitz N/A Rock 3889109 243 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/FLYAWAYA.MP3 I Belong to You Lenny Kravitz N/A Rock 4124002 257 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/IBELONGT.MP3 If You Can't Say No Lenny Kravitz N/A Rock 5072985 317 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/IFYOUCAN.MP3 It Ain't Over 'Til It's Over Lenny Kravitz N/A Rock 3882840 242 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/ITAINTOV.MP3 Let Love Rule Lenny Kravitz N/A Rock 5474845 342 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/LETLOVER.MP3 Live Lenny Kravitz N/A Rock 4975802 310 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/LIVE.MP3 Mama Said Lenny Kravitz N/A Rock 3723597 232 0 2002-02-26 01:27:23-08 2002-02-26 01:27:23-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/MAMASAID.MP3 My Precious Love Lenny Kravitz N/A Rock 5051871 315 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/MYPRECIO.MP3 Rock And Roll is Dead Lenny Kravitz N/A Rock 2953717 184 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/LENNYKRAVIT/UNKNOWNALBU/ROCKANDR.MP3 Mr Roboto Styx N/A Pop 5276315 329 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/STYX/UNKNOWNALBU/MRROBOTO.MP3 Live Session Alanis Morissette EMP Grand Opening Concert Rock 5028047 314 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/EMPGRANDOPE/ALANISMORIS/LIVESESS.MP3 Live Session Matchbox 20 EMP Grand Opening Concert Rock 12235332 764 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/EMPGRANDOPE/MATCHBOX20/LIVESESS.MP3 Live Session No Doubt EMP Grand Opening Concert Rock 13525572 845 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/EMPGRANDOPE/NODOUBT/LIVESESS.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 10639147 664 1 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES1.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 9054246 565 2 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES2.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 5175309 323 4 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES4.MP3 Live Session Kid Rock Intimate & Interactive (tv) Rock 3743241 233 3 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/KIDROCK/KIDROCKINTI/LIVESES3.MP3 Bombs Over Bagdad Outkast N/A Rap 4786885 299 0 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3025/OUTKAST/UNKNOWNALBU/BOMBSOVE.MP3 The Three Of Us Ben Harper Welcome to the Cruel World Rock 2502203 156 1 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/01THETHR.MP3 Whipping Boy Ben Harper Welcome to the Cruel World Rock 5331782 333 2 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/02WHIPPI.MP3 Breakin' Down Ben Harper Welcome to the Cruel World Rock 3852487 240 3 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/03BREAKI.MP3 Don't Take That Attitude To Your Grave Ben Harper Welcome to the Cruel World Rock 4233690 264 4 2002-02-26 01:27:24-08 2002-02-26 01:27:24-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/04DONTTA.MP3 Waiting On An Angel Ben Harper Welcome to the Cruel World Rock 3737554 233 5 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/05WAITIN.MP3 Mama's Got A Girlfriend Now Ben Harper Welcome to the Cruel World Rock 2404411 150 6 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/06MAMASG.MP3 Forever Ben Harper Welcome to the Cruel World Rock 3270682 204 7 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/07FOREVE.MP3 Like A King Ben Harper Welcome to the Cruel World Rock 4133353 258 8 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/08LIKEAK.MP3 Pleasure And Pain Ben Harper Welcome to the Cruel World Rock 3635570 227 9 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/09PLEASU.MP3 Walk Away Ben Harper Welcome to the Cruel World Rock 3689063 230 10 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/10WALKAW.MP3 How Many Miles Must We March Ben Harper Welcome to the Cruel World Rock 3037900 189 11 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/11HOWMAN.MP3 Welcome To The Cruel World Ben Harper Welcome to the Cruel World Rock 5366349 335 12 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/12WELCOM.MP3 I'll Rise Ben Harper Welcome to the Cruel World Rock 5999122 374 13 2002-02-26 01:27:25-08 2002-02-26 01:27:25-08 128 44100 MPEG AUDIO FILE MP3016/BENHARPER/WELCOMETOTH/13ILLRIS.MP3 Numb Holly McNarland Stuff Rock 3794352 237 1 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/01NUMB.MP3 Elmo Holly McNarland Stuff Rock 4491090 280 2 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/02ELMO.MP3 Porno Mouth Holly McNarland Stuff Rock 4112844 257 3 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/03PORNOM.MP3 Water Holly McNarland Stuff Rock 5320740 332 4 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/04WATER.MP3 Coward Holly McNarland Stuff Rock 4497779 281 5 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/05COWARD.MP3 the Box Holly McNarland Stuff Rock 3132726 195 6 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/06THEBOX.MP3 U.F.O. Holly McNarland Stuff Rock 4478971 279 7 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/07UFO.MP3 Mystery Song Holly McNarland Stuff Rock 4894846 305 8 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/08MYSTER.MP3 Just in Me Holly McNarland Stuff Rock 2246656 140 9 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/09JUSTIN.MP3 Twisty Mirror Holly McNarland Stuff Rock 3118942 194 10 2002-02-26 01:27:26-08 2002-02-26 01:27:26-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/10TWISTY.MP3 I Won't Stay Holly McNarland Stuff Rock 3948311 246 11 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/HOLLYMCNARL/STUFF/11IWONTS.MP3 Believe in you Amanda Marshall Tuesday's Child Rock 4318925 269 1 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/01BELIEV.MP3 Love lift me Amanda Marshall Tuesday's Child Rock 3637372 227 2 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/02LOVELI.MP3 Why don't you Love me ? Amanda Marshall Tuesday's Child Rock 4013406 250 3 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/03WHYDON.MP3 Too little, too late Amanda Marshall Tuesday's Child Rock 4434009 277 4 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/04TOOLIT.MP3 If I didn't have you Amanda Marshall Tuesday's Child Rock 5302946 331 5 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/05IFIDID.MP3 Ride Amanda Marshall Tuesday's Child Rock 4295927 268 6 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/06RIDE.MP3 Right here all along Amanda Marshall Tuesday's Child Rock 4991009 311 7 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/07RIGHTH.MP3 Wishful thinking Amanda Marshall Tuesday's Child Rock 4487922 280 8 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/08WISHFU.MP3 Shades of grey Amanda Marshall Tuesday's Child Rock 4822983 301 9 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/09SHADES.MP3 Give up giving in Amanda Marshall Tuesday's Child Rock 4603560 287 10 2002-02-26 01:27:27-08 2002-02-26 01:27:27-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/10GIVEUP.MP3 Best of me Amanda Marshall Tuesday's Child Rock 4247174 265 11 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/11BESTOF.MP3 Never said goodbye Amanda Marshall Tuesday's Child Rock 6121170 382 12 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/12NEVERS.MP3 Out of bounds Amanda Marshall Tuesday's Child Rock 3745068 234 13 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/AMANDAMARSH/TUESDAYSCHI/13OUTOFB.MP3 Deep Water Jewel Spirit Pop 4101980 256 1 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/01DEEPWA.MP3 What's Simple Is True Jewel Spirit Pop 3455130 215 2 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/02WHATSS.MP3 Hands Jewel Spirit Pop 3759805 234 3 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/03HANDS.MP3 Kiss The Flame Jewel Spirit Pop 3157397 197 4 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/04KISSTH.MP3 Down So Long Jewel Spirit Pop 4089861 255 5 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/05DOWNSO.MP3 Innocense Maintained Jewel Spirit Pop 3984126 249 6 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/06INNOCE.MP3 Jupiter Jewel Spirit Pop 4162581 260 7 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/07JUPITE.MP3 Fat Boy Jewel Spirit Pop 2824276 176 8 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/08FATBOY.MP3 Barcelona Jewel Spirit Pop 3910276 244 9 2002-02-26 01:27:28-08 2002-02-26 01:27:28-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/09BARCEL.MP3 Life Uncommon Jewel Spirit Pop 3766086 235 10 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/10LIFEUN.MP3 Do You Jewel Spirit Pop 4746889 296 11 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/11DOYOU.MP3 Absense Of Fear Jewel Spirit Pop 4203551 262 12 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/12ABSENS.MP3 This Little Bird Jewel Spirit Pop 7126757 445 13 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/JEWEL/SPIRIT/13THISLI.MP3 Our House Madness Madness N/A 3217713 201 1 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/01OURHOU.MP3 Tomorrow's Just Another Day Madness Madness Pop 3119510 194 2 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/02TOMORR.MP3 It Must Be Love Madness Madness Pop 3287378 205 3 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/03ITMUST.MP3 Primrose Hill Madness Madness Pop 3449544 215 4 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/04PRIMRO.MP3 Shut Up Madness Madness Pop 3327494 207 5 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/05SHUTUP.MP3 House of Fun Madness Madness Pop 2882373 180 6 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/06HOUSEO.MP3 Night Boat to Cairo Madness Madness Pop 3145834 196 7 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/07NIGHTB.MP3 Rise and Fall Madness Madness Pop 3123118 195 8 2002-02-26 01:27:29-08 2002-02-26 01:27:29-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/08RISEAN.MP3 Blue Skinned Beast Madness Madness Pop 3227195 201 9 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/09BLUESK.MP3 Cardiac Arrest Madness Madness Pop 2856185 178 10 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/10CARDIA.MP3 Grey Day Madness Madness Pop 3518922 219 11 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/11GREYDA.MP3 Madness (Is All In The Mind) Madness Madness Pop 2759093 172 12 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MADNESS/MADNESS/12MADNES.MP3 Ain't It Heavy Melissa Etheridge Never Enough Rock 4225837 264 1 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/01AINTIT.MP3 2001 Melissa Etheridge Never Enough Rock 4474094 279 2 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/022001.MP3 Dance Without Sleeping Melissa Etheridge Never Enough Rock 5478328 342 3 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/03DANCEW.MP3 Place Your Hand Melissa Etheridge Never Enough Rock 3320817 207 4 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/04PLACEY.MP3 Must Be Crazy For Me Melissa Etheridge Never Enough Rock 3582046 223 5 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/05MUSTBE.MP3 Meet Me In The Back Melissa Etheridge Never Enough Rock 3909725 244 6 2002-02-26 01:27:30-08 2002-02-26 01:27:30-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/06MEETME.MP3 The Boy Feels Strange Melissa Etheridge Never Enough Rock 4354853 272 7 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/07THEBOY.MP3 Keep It Precious Melissa Etheridge Never Enough Rock 6016793 376 8 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/08KEEPIT.MP3 The Letting Go Melissa Etheridge Never Enough Rock 3009158 188 9 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/09THELET.MP3 It's For You Melissa Etheridge Never Enough Rock 5523878 345 10 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/NEVERENOUGH/10ITSFOR.MP3 I'm The Only One Melissa Etheridge Yes I Am Rock 4710946 294 1 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/01IMTHEO.MP3 If I Wanted To Melissa Etheridge Yes I Am Rock 3761759 235 2 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/02IFIWAN.MP3 Come To My Window Melissa Etheridge Yes I Am Rock 3800633 237 3 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/03COMETO.MP3 Silent Legacy Melissa Etheridge Yes I Am Rock 5184073 324 4 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/04SILENT.MP3 I Will Never Be The Same Melissa Etheridge Yes I Am Rock 4496541 281 5 2002-02-26 01:27:31-08 2002-02-26 01:27:31-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/05IWILLN.MP3 All American Girl Melissa Etheridge Yes I Am Rock 3924070 245 6 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/06ALLAME.MP3 Yes I Am Melissa Etheridge Yes I Am Rock 4221926 263 7 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/07YESIAM.MP3 Resist Melissa Etheridge Yes I Am Rock 2856174 178 8 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/08RESIST.MP3 Ruins Melissa Etheridge Yes I Am Rock 4692127 293 9 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/09RUINS.MP3 Talking To My Angel Melissa Etheridge Yes I Am Rock 4613985 288 10 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YESIAM/10TALKIN.MP3 Your Little Secret Melissa Etheridge Your Little Secret Rock 4157163 259 1 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/01YOURLI.MP3 I Really Like You Melissa Etheridge Your Little Secret Rock 3984963 249 2 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/02IREALL.MP3 Nowhere To Go Melissa Etheridge Your Little Secret Rock 5649689 353 3 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/03NOWHER.MP3 An Unusual Kiss Melissa Etheridge Your Little Secret Rock 5136856 321 4 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/04ANUNUS.MP3 I Want To Come Over Melissa Etheridge Your Little Secret Rock 5195792 324 5 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/05IWANTT.MP3 All The Way To Heaven Melissa Etheridge Your Little Secret Rock 4697725 293 6 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/06ALLTHE.MP3 I Could Have Been You Melissa Etheridge Your Little Secret Rock 5690379 355 7 2002-02-26 01:27:32-08 2002-02-26 01:27:32-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/07ICOULD.MP3 Shriner's Park Melissa Etheridge Your Little Secret Rock 5169873 323 8 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/08SHRINE.MP3 Change Melissa Etheridge Your Little Secret Rock 4421859 276 9 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/09CHANGE.MP3 This War Is Over Melissa Etheridge Your Little Secret Rock 6689576 418 10 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/MELISSAETHE/YOURLITTLES/10THISWA.MP3 Livin' La Vida Loca Ricky Martin Ricky Martin Latin 3895955 243 1 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/01LIVINL.MP3 Spanish Eyes Ricky Martin Ricky Martin Latin 3926041 245 2 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/02SPANIS.MP3 She's All I Ever Had Ricky Martin Ricky Martin Latin 4726441 295 3 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/03SHESAL.MP3 Shake Your Bon-Bon Ricky Martin Ricky Martin Latin 3078009 192 4 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/04SHAKEY.MP3 Be Careful (Cuidado Con Mi Corazon) Ricky Martin Ricky Martin Latin 3916173 244 5 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/05BECARE.MP3 I Am Made Of You Ricky Martin Ricky Martin Latin 4464377 279 6 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/06IAMMAD.MP3 Love You For A Day Ricky Martin Ricky Martin Latin 3630968 226 7 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/07LOVEYO.MP3 Private Emotion Ricky Martin Ricky Martin Latin 3885920 242 8 2002-02-26 01:27:33-08 2002-02-26 01:27:33-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/08PRIVAT.MP3 La Copa De La Vida/The Cup Of Life Ricky Martin Ricky Martin Latin 4465648 279 9 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/09LACOPA.MP3 You Stay With Me Ricky Martin Ricky Martin Latin 4043634 252 10 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/10YOUSTA.MP3 Livin' La Vida Loca (Sp) Ricky Martin Ricky Martin Latin 3914351 244 11 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/11LIVINL.MP3 I Count The Minutes Ricky Martin Ricky Martin Latin 4135866 258 12 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/12ICOUNT.MP3 Bella (She's All I Ever Had) Ricky Martin Ricky Martin Latin 4742055 296 13 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/13BELLAS.MP3 Maria Ricky Martin Ricky Martin Latin 4344413 271 14 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/RICKYMARTIN/RICKYMARTIN/14MARIA.MP3 I Don't Want to Miss a Thing Aerosmith Armageddon - The Album Soundtrack 4788732 299 1 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/01IDONTW.MP3 Remember Me Journey Armageddon - The Album Soundtrack 5275357 329 2 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/02REMEMB.MP3 What Kind of Love Are You On Aerosmith Armageddon - The Album Soundtrack 3134032 195 3 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/03WHATKI.MP3 La Grange ZZ Top Armageddon - The Album Soundtrack 3439538 214 4 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/04LAGRAN.MP3 Roll Me Away Bob Seger Armageddon - The Album Soundtrack 4452259 278 5 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/05ROLLME.MP3 When the Rainbow Comes Shawn Colvin Armageddon - The Album Soundtrack 4180598 261 6 2002-02-26 01:27:34-08 2002-02-26 01:27:34-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/06WHENTH.MP3 Sweet Emotion Aerosmith Armageddon - The Album Soundtrack 4962170 310 7 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/07SWEETE.MP3 Mister Big Time Jon Bon Jovi Armageddon - The Album Soundtrack 2678587 167 8 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/08MISTER.MP3 Come Together Aerosmith Armageddon - The Album Soundtrack 3593354 224 9 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/09COMETO.MP3 Wish I Were You Patty Smyth Armageddon - The Album Soundtrack 3679460 229 10 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/10WISHIW.MP3 Starseed Our Lady Peace Armageddon - The Album Soundtrack 4185604 261 11 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/11STARSE.MP3 Leaving On a Jet Plane Chantal Kreviazuk Armageddon - The Album Soundtrack 4491985 280 12 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/12LEAVIN.MP3 Theme from Armageddon Trevor Rabin Armageddon - The Album Soundtrack 3011986 188 13 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/13THEMEF.MP3 Animal Crackers Steven Tyler Armageddon - The Album Soundtrack 2490367 155 14 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/ARMAGEDDONT/14ANIMAL.MP3 Insane In The Brain Cypress Hill N/A Hip-Hop 5091281 318 0 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/VARIOUSARTI/CYPRESSH.MP3 Intro Will Smith Big Willie Style Pop 1785402 111 1 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/01INTRO.MP3 Y'All Know Will Smith Big Willie Style Pop 3798298 237 2 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/02YALLKN.MP3 Gettin' Jiggy Wit It Will Smith Big Willie Style Pop 3646589 227 3 2002-02-26 01:27:35-08 2002-02-26 01:27:35-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/03GETTIN.MP3 Candy (Featuring Larry Blackmon And Cameo) Will Smith Big Willie Style Pop 3791921 236 4 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/04CANDYF.MP3 Chasing Forever Will Smith Big Willie Style Pop 4096168 256 5 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/05CHASIN.MP3 Keith B-Real I (Interlude) Will Smith Big Willie Style Pop 1075589 67 6 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/06KEITHB.MP3 Don't Say Nothin' Will Smith Big Willie Style Pop 4204143 262 7 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/07DONTSA.MP3 Miami Will Smith Big Willie Style Pop 3162019 197 8 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/08MIAMI.MP3 Yes Yes Y'All Will Smith Big Willie Style Pop 4209851 263 9 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/09YESYES.MP3 I Loved You Will Smith Big Willie Style Pop 4042249 252 10 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/10ILOVED.MP3 Keith B-Real II (Interlude) Will Smith Big Willie Style Pop 483344 30 11 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/11KEITHB.MP3 It's All Good Will Smith Big Willie Style Pop 3913241 244 12 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/12ITSALL.MP3 Just The Two Of Us Will Smith Big Willie Style Pop 5049119 315 13 2002-02-26 01:27:36-08 2002-02-26 01:27:36-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/13JUSTTH.MP3 Keith B-Real III (Interlude) Will Smith Big Willie Style Pop 1831403 114 14 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/14KEITHB.MP3 Big Willie Style (Featuring Left Eye) Will Smith Big Willie Style Pop 3448773 215 15 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/15BIGWIL.MP3 Men In Black Will Smith Big Willie Style Pop 3641845 227 16 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/WILLSMITH/BIGWILLIEST/16MENINB.MP3 Rose rouge St Germain Tourist Jazz 6729665 420 1 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/01ROSERO.MP3 Montego bay spleen St Germain Tourist Jazz 5481648 342 2 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/02MONTEG.MP3 So flute St Germain Tourist Jazz 8149888 509 3 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/03SOFLUT.MP3 Land of... St Germain Tourist Jazz 7525041 470 4 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/04LANDOF.MP3 Latin note St Germain Tourist Jazz 5717369 357 5 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/05LATINN.MP3 Sure thing St Germain Tourist Jazz 6117913 382 6 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/06SURETH.MP3 Pont Des Arts St Germain Tourist Jazz 7117116 444 7 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/07PONTDE.MP3 La goutte d'or St Germain Tourist Jazz 6047282 377 8 2002-02-26 01:27:37-08 2002-02-26 01:27:37-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/08LAGOUT.MP3 What you think about St Germain Tourist Jazz 4591955 286 9 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 128 44100 MPEG AUDIO FILE MP3016/STGERMAIN/TOURIST/09WHATYO.MP3 Oral On The Television Victor Lewis Smith N/A Comedy 3858898 426 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI003B1.MP3 Women's Trouble Victor Lewis Smith N/A Comedy 4177516 467 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI50711.MP3 Victor Breaks Radio 4 Victor Lewis Smith N/A Comedy 3854003 426 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI52951.MP3 More Buygones Victor Lewis Smith N/A Comedy 3237487 358 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI6F491.MP3 The Murpia Victor Lewis Smith N/A Comedy 3843684 429 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI90AE1.MP3 New Year's Eve Victor Lewis Smith N/A Comedy 2793206 312 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 71 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VI9AE11.MP3 Mr Crisp Victor Lewis Smith N/A Comedy 3852738 428 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIA4BC1.MP3 Pol Pot Wig On A String Victor Lewis Smith N/A Comedy 3655346 408 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIBCB11.MP3 Right To Reply Victor Lewis Smith N/A Comedy 379689 42 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIBFDD1.MP3 Antiques Victor Lewis Smith N/A Comedy 3753621 415 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTOR1.MP3 Buygones Victor Lewis Smith N/A Comedy 3836259 428 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTOR2.MP3 Finished Victor Lewis Smith N/A Comedy 3722964 412 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 72 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTOR4.MP3 Class Victor Lewis Smith N/A Comedy 3668288 412 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 71 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VICTORLE.MP3 Piss & Shit Victor Lewis Smith N/A Comedy 3601443 395 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 73 44100 MPEG AUDIO FILE MP3016/VICTORLEWIS/VIE1C21.MP3 Series1 no2 - 14th March 1965 Kenneth Horne Round The Horne Comedy 6711040 1677 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65031.MP3 Series1 no3 - 21st March 1965 Kenneth Horne Round The Horne Comedy 6709064 1677 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65032.MP3 65-03-~3.MP3 Kenneth Horne Round The Horne Comedy 5654886 1413 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65033.MP3 Series 1 no.1 - 7th March 1965 Kenneth Horne Round The Horne Comedy 6719984 1679 0 2002-02-26 01:27:38-08 2002-02-26 01:27:38-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65034.MP3 Series1 no6 - 11th April 1965 Kenneth Horne Round The Horne Comedy 6679736 1669 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65041.MP3 Round the Horne Vol5 Side1 Kenneth Horne Round The Horne Comedy 4761716 1587 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/65051.MP3 65-05-~2.MP3 Kenneth Horne Round The Horne Comedy 7239984 1809 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65052.MP3 Round the Horne Vol5 Side2 Kenneth Horne Round The Horne Comedy 4739018 1579 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/65061.MP3 65-06-~2.MP3 Kenneth Horne Round The Horne Comedy 7033336 1758 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/ROUNDT/65062.MP3 Round the Horne Vol5 Side4 Kenneth Horne Round The Horne Comedy 5106866 1702 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/65063.MP3 Round the Horne Vol6 Side1 Kenneth Horne Round The Horne Comedy 5295158 1765 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/ROUNDT/67021.MP3 N/A Blaster Bates N/A Comedy 915340 228 1 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLA88D1.MP3 N/A Blaster Bates N/A Comedy 1255940 313 2 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLAE7B1.MP3 N/A Blaster Bates N/A Comedy 1199156 299 3 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE1.MP3 N/A Blaster Bates N/A Comedy 1582708 395 4 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE2.MP3 N/A Blaster Bates N/A Comedy 1151732 287 5 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE3.MP3 N/A Blaster Bates N/A Comedy 800940 200 6 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/BLASTER/BLASTE4.MP3 1985 The Goons The Goon Show Comedy 5099456 1699 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 24 22050 MPEG AUDIO FILE MP3026/GOONS/1985.MP3 Wings Over Dagenham The Goons The Goon Show Comedy 6506160 1626 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57011.MP3 Around The World in 80 Days The Goons The Goon Show Comedy 6512712 1628 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57021.MP3 Spon The Goons The Goon Show Comedy 7635575 1908 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57091.MP3 The Great Regents Park Swim The Goons The Goon Show Comedy 6424312 1606 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57101.MP3 The Mummified Priest The Goons The Goon Show Comedy 7286160 1821 0 2002-02-26 01:27:39-08 2002-02-26 01:27:39-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57102.MP3 The Junk Affair The Goons The Goon Show Comedy 7084073 1771 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57103.MP3 The Burning Embassy The Goons The Goon Show Comedy 6397376 1599 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57104.MP3 57-11-~2.MP3 The Goons The Goon Show Comedy 6370661 1592 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57112.MP3 The Space Age The Goons The Goon Show Comedy 6380424 1595 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57113.MP3 The Policy The Goons The Goon Show Comedy 6902307 1725 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57114.MP3 The Kippered Herring Gang The Goons The Goon Show Comedy 7155268 1788 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57121.MP3 King Solomon's Mines The Goons The Goon Show Comedy 7229716 1807 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57122.MP3 The Great British Revolution The Goons The Goon Show Comedy 6472568 1618 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57123.MP3 Missing 10 Downing Street The Goons The Goon Show Comedy 5702760 1425 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/576F421.MP3 The Plasticine Man The Goons The Goon Show Comedy 7989097 1997 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/577E881.MP3 The Vanishing Room The Goons The Goon Show Comedy 6442490 1610 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/5791AD1.MP3 The Treasure in the Tower The Goons The Goon Show Comedy 7374672 1843 0 2002-02-26 01:27:40-08 2002-02-26 01:27:40-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57B1D01.MP3 The Stolen Postman The Goons The Goon Show Comedy 6392488 1598 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/57F29A1.MP3 The Mustard and Cress Shortage The Goons The Goon Show Comedy 6294728 1573 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58011.MP3 The Great String Robbery The Goons The Goon Show Comedy 7115600 1778 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58012.MP3 The Moriarity Murder Mystery The Goons The Goon Show Comedy 7432215 1858 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58013.MP3 The Curse of Frankenstein The Goons The Goon Show Comedy 6396336 1599 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58014.MP3 10 Snowballs That Shook The World The Goons The Goon Show Comedy 6394363 1598 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58021.MP3 The White Neddie Trade The Goons The Goon Show Comedy 7424272 1856 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58022.MP3 The Internal Mountain The Goons The Goon Show Comedy 6797637 1699 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58023.MP3 The Man Who Never Was The Goons The Goon Show Comedy 7057152 1764 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58024.MP3 The Evils of Bushey Spon The Goons The Goon Show Comedy 7207224 1801 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58031.MP3 Tiddleywinks The Goons The Goon Show Comedy 7023171 1755 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58032.MP3 The Great Statue Debate The Goons The Goon Show Comedy 6433152 1608 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58033.MP3 The Albert Memorial The Goons The Goon Show Comedy 5228925 1307 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58034.MP3 58-09-~1.MP3 The Goons The Goon Show Comedy 7443512 1860 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58091.MP3 The Vanishing Room (tlo65471) The Goons The Goon Show Comedy 6987716 1746 0 2002-02-26 01:27:41-08 2002-02-26 01:27:41-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58101.MP3 The Sahara Desert Statue The Goons The Goon Show Comedy 6379072 1594 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58102.MP3 Pam's Paper Insurance Policy The Goons The Goon Show Comedy 6991008 1747 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58111.MP3 The 1,000,000 Penny The Goons The Goon Show Comedy 7459561 1864 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58112.MP3 The Childe Harolde Rewarde The Goons The Goon Show Comedy 7668256 1917 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58121.MP3 The Childe Harolde Rewarde The Goons The Goon Show Comedy 7668256 1917 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58122.MP3 The Battle of Spion Kop The Goons The Goon Show Comedy 7420112 1855 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58123.MP3 Queen Anne's Rain The Goons The Goon Show Comedy 7213464 1803 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58124.MP3 The Mountain Eaters The Goons The Goon Show Comedy 7135256 1783 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58B01A1.MP3 The Dreaded Piano Clubber The Goons The Goon Show Comedy 6882076 1720 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/58B4641.MP3 Call of the West The Goons The Goon Show Comedy 7725332 1931 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59011.MP3 Who Is Pink Oboe? The Goons The Goon Show Comedy 7403758 1850 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59012.MP3 Ned's Atomic Dustbin The Goons The Goon Show Comedy 7975160 1993 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59013.MP3 Dishonoured---Again The Goons The Goon Show Comedy 6907288 1726 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59014.MP3 The Scarlet Capsule The Goons The Goon Show Comedy 6992984 1748 0 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 22050 MPEG AUDIO FILE MP3026/GOONS/59021.MP3 Bluebottle Blues The Goons The World Of The Goons Comedy 3198976 799 1 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 44100 MPEG AUDIO FILE MP3026/GOONS/BLUEBO1.MP3 I'm Walking Backwards For Christmas The Goons The World Of The Goons Comedy 3164160 791 2 2002-02-26 01:27:42-08 2002-02-26 01:27:42-08 32 44100 MPEG AUDIO FILE MP3026/GOONS/IMWAL1.MP3 Blue Collar Dollar Jeff Foxworthy Big Funny Comedy 2995931 187 15 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/BLUECOLL.MP3 House Full Of Girls Jeff Foxworthy Big Funny Comedy 4644779 290 9 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/HOUSEFUL.MP3 I Don't Need To Know That Jeff Foxworthy Big Funny Comedy 1393894 87 11 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/IDONTNEE.MP3 I'd Thought I'd Heard Every Re Jeff Foxworthy Big Funny Comedy 1886389 117 3 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/IDTHOUGH.MP3 Introduction Jeff Foxworthy Big Funny Comedy 745221 46 1 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/INTRODUC.MP3 It's A Different World Jeff Foxworthy Big Funny Comedy 4864207 304 10 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/ITSADIFF.MP3 Jeff Gordon Enunciates Jeff Foxworthy Big Funny Comedy 2135353 133 5 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/JEFFGORD.MP3 My Wife's Family Jeff Foxworthy Big Funny Comedy 5647880 352 8 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/MYWIFESF.MP3 Seeing Things On The Road Jeff Foxworthy Big Funny Comedy 3508348 219 2 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/SEEINGTH.MP3 Speaking Of Words Jeff Foxworthy Big Funny Comedy 1155379 72 6 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/SPEAKING.MP3 Telephones In The Bathroom Jeff Foxworthy Big Funny Comedy 1146184 71 4 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/TELEPHON.MP3 Thanks Y'All - Encore Jeff Foxworthy Big Funny Comedy 2196793 137 14 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/THANKSYA.MP3 The Way I Grew Up Jeff Foxworthy Big Funny Comedy 1904222 119 7 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/THEWAYIG.MP3 Women Want To Talk Jeff Foxworthy Big Funny Comedy 6045359 377 13 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/WOMENWAN.MP3 You Are Being Trained Jeff Foxworthy Big Funny Comedy 1184914 74 12 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/BIGFUNNY/YOUAREBE.MP3 I Love Being Married Jeff Foxworthy You Might Be a Redneck If... Comedy 16098948 1006 3 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/ILOVEBEI.MP3 Words In The South Jeff Foxworthy You Might Be a Redneck If... Comedy 2160570 135 1 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/WORDSINT.MP3 You Might Be a Redneck If Jeff Foxworthy You Might Be a Redneck If... Comedy 2608065 163 4 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/YOU MIGHT BE A REDNECK IF.MP3 You Might Be A Redneck If... Jeff Foxworthy You Might Be a Redneck If... Comedy 2608065 163 2 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/JEFFFOXWORT/YOUMIGHTBEA/YOUMIGHT.MP3 Abe Lincoln Versus Madison Ave Bob Newhart Bob Newhart Button Down Concer Comedy 5440295 340 7 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/ABELINCO.MP3 Bob at the Unemployment Office Bob Newhart Bob Newhart Button Down Concer Comedy 855284 53 2 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/BOBATTHE.MP3 Bus Driver's School Bob Newhart Bob Newhart Button Down Concer Comedy 4797752 299 3 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/BUSDRIVE.MP3 Driving Instructor Bob Newhart Bob Newhart Button Down Concer Comedy 7573851 473 5 2002-02-26 01:27:43-08 2002-02-26 01:27:43-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/DRIVINGI.MP3 Edison's Most Famous Invention Bob Newhart Bob Newhart Button Down Concer Comedy 1067886 66 12 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/EDISONSM.MP3 Greeting Bob Newhart Bob Newhart Button Down Concer Comedy 965904 60 1 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/GREETING.MP3 Introducing Tobacco Bob Newhart Bob Newhart Button Down Concer Comedy 5456037 341 13 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/INTRODUC.MP3 King Kong Bob Newhart Bob Newhart Button Down Concer Comedy 4322532 270 4 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/KINGKONG.MP3 Nobody Will Ever Play Baseball Bob Newhart Bob Newhart Button Down Concer Comedy 3694340 230 10 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/NOBODYWI.MP3 Retirement Party Bob Newhart Bob Newhart Button Down Concer Comedy 6786819 424 14 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/RETIREME.MP3 The Cruise of the U.S.S. Codfi Bob Newhart Bob Newhart Button Down Concer Comedy 4955322 309 8 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THECRUIS.MP3 The Grace L. Ferguson Airline Bob Newhart Bob Newhart Button Down Concer Comedy 6097744 381 6 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THEGRACE.MP3 The Nude Police Line-Up Bob Newhart Bob Newhart Button Down Concer Comedy 2951627 184 11 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THENUDEP.MP3 The One-Eyed Bullfighter Bob Newhart Bob Newhart Button Down Concer Comedy 872281 54 9 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/BOBNEWHART/BOBNEWHARTB/THEONEEY.MP3 I am a British-Columbian N/A N/A Comedy 1035843 64 4 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMABRIT.MP3 I am a dumb ass american N/A N/A Comedy 1528477 95 2 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMADUMB.MP3 I am an Albertan N/A N/A Comedy 1423987 88 5 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMANALB.MP3 I am Canadian (Original) N/A N/A Comedy 942916 58 1 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMCANAD.MP3 I am Italian N/A N/A Comedy 452018 56 8 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 64 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMITALI.MP3 I Am Torontonian N/A N/A Comedy 1102158 68 6 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3026/UNKNOWNARTI/UNKNOWNALBU/IAMTORON.MP3 Canelita Americamanta Instr. Music Of The Andes Ethnic 4118290 257 10 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/CANELITA.MP3 Carnaval Americamanta Instr. Music Of The Andes Ethnic 4114389 257 8 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/CARNAVAL.MP3 Comunidad Americamanta Instr. Music Of The Andes Ethnic 4506156 281 1 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/COMUNIDA.MP3 Cumbion Americamanta Instr. Music Of The Andes Ethnic 4664423 291 7 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/CUMBION.MP3 Huancarute Americamanta Instr. Music Of The Andes Ethnic 3213687 200 12 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/HUANCARU.MP3 La Bocina Americamanta Instr. Music Of The Andes Ethnic 3300345 206 11 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/LABOCINA.MP3 Melancolia Americamanta Instr. Music Of The Andes Ethnic 5020942 313 4 2002-02-26 01:27:44-08 2002-02-26 01:27:44-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/MELANCOL.MP3 Otavaleno Americamanta Instr. Music Of The Andes Ethnic 5000462 312 3 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/OTAVALEN.MP3 Recuerdos Americamanta Instr. Music Of The Andes Ethnic 3468224 216 2 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/RECUERDO.MP3 Serrania Americamanta Instr. Music Of The Andes Ethnic 2660308 166 6 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/SERRANIA.MP3 Suenos Americamanta Instr. Music Of The Andes Ethnic 4144204 259 9 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/SUENOS.MP3 Titicaca Americamanta Instr. Music Of The Andes Ethnic 3943582 246 5 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/AMERICAMANT/INSTR MU/TITICACA.MP3 Dance of the Sun Priest Cusco Apurimac II Ethnic 4986669 311 3 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/DANCEOFT.MP3 Goddess of the Moon Cusco Apurimac II Ethnic 4105612 256 9 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/GODDESSO.MP3 Maya Temple Cusco Apurimac II Ethnic 4057268 253 7 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/MAYATEMP.MP3 Mexica Cusco Apurimac II Ethnic 5110385 319 8 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/MEXICA.MP3 Quetzal's Feather Cusco Apurimac II Ethnic 4834114 302 2 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/QUETZALS.MP3 Tula Cusco Apurimac II Ethnic 4868805 304 4 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/TULA.MP3 Xul-Kan, King of Palemque Cusco Apurimac II Ethnic 3856090 241 6 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/XULKANKI.MP3 Yucatan Cusco Apurimac II Ethnic 5121252 320 5 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/APURIMACII/YUCATAN.MP3 Dream Catcher Cusco Aurimac III Ethnic 4896390 306 7 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/DREAMCAT.MP3 Ghost Dance Cusco Aurimac III Ethnic 5404628 337 1 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/GHOSTDAN.MP3 Kokopelli's Dream Cusco Aurimac III Ethnic 5777588 361 2 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/KOKOPELL.MP3 Little Pigeon Cusco Aurimac III Ethnic 5110385 319 5 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/LITTLEPI.MP3 Medicine Man Cusco Aurimac III Ethnic 3803845 237 4 2002-02-26 01:27:45-08 2002-02-26 01:27:45-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/MEDICINE.MP3 N/A Cusco Aurimac III Ethnic 4090705 255 3 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/NA.MP3 N/A Cusco Aurimac III Ethnic 4805275 300 8 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/NA2.MP3 N/A Cusco Aurimac III Ethnic 4513122 282 9 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/NA3.MP3 Pahrump Cusco Aurimac III Ethnic 3054027 190 6 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CUSCO/AURIMACIII/PAHRUMP.MP3 Bury Her Crash Vegas Red Earth Rock 4034281 252 11 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/BURYHER.MP3 Down To The Wire Crash Vegas Red Earth Rock 2912479 182 2 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/DOWNTOTH.MP3 I Gave You My Heart Crash Vegas Red Earth Rock 3222882 201 5 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/IGAVEYOU.MP3 Inside Out Crash Vegas Red Earth Rock 3709107 231 8 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/INSIDEOU.MP3 It's Not Funny Anymore Crash Vegas Red Earth Rock 3678597 229 10 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/ITSNOTFU.MP3 Julia Rain Crash Vegas Red Earth Rock 3179833 198 9 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/JULIARAI.MP3 Moving Too Fast Crash Vegas Red Earth Rock 3433116 214 7 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/MOVINGTO.MP3 Red Earth Crash Vegas Red Earth Rock 3935084 245 1 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/REDEARTH.MP3 Sky Crash Vegas Red Earth Rock 3674000 229 3 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/SKY.MP3 Smoke Crash Vegas Red Earth Rock 4253291 265 4 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/SMOKE.MP3 The One That Keeps Me Running Crash Vegas Red Earth Rock 4884687 305 6 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/CRASHVEGAS/REDEARTH/THEONETH.MP3 A kiss is a terrible thing to MeatLoaf The Very Best Of Meatloaf - 2 Rock 7295636 455 2 2002-02-26 01:27:46-08 2002-02-26 01:27:46-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/AKISSISA.MP3 bat out of hell MeatLoaf The Very Best Of Meatloaf - 2 Rock 9421632 588 9 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/BATOUTOF.MP3 dead ringer for love MeatLoaf The Very Best Of Meatloaf - 2 Rock 4169140 260 6 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/DEADRING.MP3 I'd do anything for love (but MeatLoaf The Very Best Of Meatloaf - 2 Rock 11494709 718 1 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/IDDOANYT.MP3 I'd lie for you (and that's th MeatLoaf The Very Best Of Meatloaf - 2 Rock 6197218 387 3 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/IDLIEFOR.MP3 midnight at the lost and found MeatLoaf The Very Best Of Meatloaf - 2 Rock 3377945 211 7 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/MIDNIGHT.MP3 nocturnal pleasure MeatLoaf The Very Best Of Meatloaf - 2 Rock 605345 37 5 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/NOCTURNA.MP3 not a dry eye in the house MeatLoaf The Very Best Of Meatloaf - 2 Rock 5681039 355 4 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/NOTADRYE.MP3 objects in the rear view mirro MeatLoaf The Very Best Of Meatloaf - 2 Rock 9367716 585 8 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/MEATLOAF/THEVERYBEST/OBJECTSI.MP3 Babaji Supertramp Even In The Quietest Moments.. Pop 4668324 291 5 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/BABAJI.MP3 Downstream Supertramp Even In The Quietest Moments.. Pop 3905827 244 4 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/DOWNSTRE.MP3 Even In The Quietest Moments Supertramp Even In The Quietest Moments.. Pop 6228843 389 3 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/EVENINTH.MP3 Fool's Overture Supertramp Even In The Quietest Moments.. Pop 10419718 651 7 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/FOOLSOVE.MP3 From Now On Supertramp Even In The Quietest Moments.. Pop 6116411 382 6 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/FROMNOWO.MP3 Give A Little Bit Supertramp Even In The Quietest Moments.. Pop 3987747 249 1 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/GIVEALIT.MP3 Lover Boy Supertramp Even In The Quietest Moments.. Pop 6601803 412 2 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/SUPERTRAMP/EVENINTHEQU/LOVERBOY.MP3 Begin The Begin R.E.M. Life's Rich Pageant Rock 3328626 208 1 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/BEGINTHE.MP3 Cuyahoga R.E.M. Life's Rich Pageant Rock 3767065 235 4 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/CUYAHOGA.MP3 Fall on Me R.E.M. Life's Rich Pageant Rock 2751007 171 3 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/FALLONME.MP3 Hyena R.E.M. Life's Rich Pageant Rock 3266490 204 5 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/HYENA.MP3 I Believe R.E.M. Life's Rich Pageant Rock 3687235 230 8 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/IBELIEVE.MP3 Just a Touch R.E.M. Life's Rich Pageant Rock 2722725 170 10 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/JUSTATOU.MP3 Superman R.E.M. Life's Rich Pageant Rock 2762431 172 12 2002-02-26 01:27:47-08 2002-02-26 01:27:47-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/SUPERMAN.MP3 Swan Swan H R.E.M. Life's Rich Pageant Rock 2698762 168 11 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/SWANSWAN.MP3 The Flowers of Guatemala R.E.M. Life's Rich Pageant Rock 3791307 236 7 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/THEFLOWE.MP3 These Days R.E.M. Life's Rich Pageant Rock 2729691 170 2 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/THESEDAY.MP3 Underneath The Bunker R.E.M. Life's Rich Pageant Rock 1389296 86 6 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/UNDERNEA.MP3 What if we give it away R.E.M. Life's Rich Pageant Rock 3436041 214 9 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 128 44100 MPEG AUDIO FILE MP3027/REM/LIFESRICHPA/WHATIFWE.MP3 (96-44S) Episode 10 Douglas Adams Hitch Hiker's Guide Vocal 21241856 1770 10 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP8A3D1.MP3 (96-44S) Episode 1 Douglas Adams Hitch Hiker's Guide Vocal 20590592 1715 1 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP96391.MP3 (96-44S) Episode 12 Douglas Adams Hitch Hiker's Guide Vocal 20051968 1670 12 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP9A351.MP3 (96-44S) Episode 11 Douglas Adams Hitch Hiker's Guide Vocal 21370725 1780 11 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EP9A391.MP3 (96-44S) Episode 7 Douglas Adams Hitch Hiker's Guide Vocal 21444608 1787 7 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPA6311.MP3 (96-44S) Episode 6 Douglas Adams Hitch Hiker's Guide Vocal 21856581 1821 6 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPA6351.MP3 (96-44S) Episode 8 Douglas Adams Hitch Hiker's Guide Vocal 20943173 1745 8 2002-02-26 01:27:48-08 2002-02-26 01:27:48-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPA63D1.MP3 (96-44S) Episode 9 Douglas Adams Hitch Hiker's Guide Vocal 21346304 1778 9 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPB6391.MP3 (96-44S) Episode 2 Douglas Adams Hitch Hiker's Guide Vocal 20173125 1681 2 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD1.MP3 (96-44S) Episode 3 Douglas Adams Hitch Hiker's Guide Vocal 19994624 1666 3 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD2.MP3 (96-44S) Episode 4 Douglas Adams Hitch Hiker's Guide Vocal 21123072 1760 4 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD3.MP3 (96-44S) Episode 5 Douglas Adams Hitch Hiker's Guide Vocal 21315584 1776 5 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 96 44100 MPEG AUDIO FILE MP3027/HITCH/EPISOD4.MP3 Battersea Hooverphonic Blue Wonder Power Milk Trip-Hop 3696581 231 1 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/01BATTER.MP3 One Way Ride Hooverphonic Blue Wonder Power Milk Trip-Hop 3244770 202 2 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/02ONEWAY.MP3 Dictionary Hooverphonic Blue Wonder Power Milk Trip-Hop 3394815 212 3 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/03DICTIO.MP3 Club Montepulciano Hooverphonic Blue Wonder Power Milk Trip-Hop 3552394 222 4 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/04CLUBMO.MP3 Eden Hooverphonic Blue Wonder Power Milk Trip-Hop 3407488 212 5 2002-02-26 01:27:49-08 2002-02-26 01:27:49-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/05EDEN.MP3 Lung Hooverphonic Blue Wonder Power Milk Trip-Hop 2633706 164 6 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/06LUNG.MP3 Electro Shock Faders Hooverphonic Blue Wonder Power Milk Trip-Hop 2992471 187 7 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/07ELECTR.MP3 Out of Tune Hooverphonic Blue Wonder Power Milk Trip-Hop 3297014 206 8 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/08OUTOFT.MP3 This Strange Effect Hooverphonic Blue Wonder Power Milk Trip-Hop 3766808 235 9 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/09THISST.MP3 Renaissance Affair Hooverphonic Blue Wonder Power Milk Trip-Hop 3293679 205 10 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/10RENAIS.MP3 Tuna Hooverphonic Blue Wonder Power Milk Trip-Hop 3662305 228 11 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/11TUNA.MP3 Magenta Hooverphonic Blue Wonder Power Milk Trip-Hop 4661648 291 12 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/12MAGENT.MP3 Blue Wonder Power Milk (Secret Song) Hooverphonic Blue Wonder Power Milk Trip-Hop 2990817 186 13 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3027/HOOVERPHONI/BLUEWONDERP/13BLUEWO.MP3 Concrete Jungle Bob Marley Babylon By Bus Reggae 5432656 339 6 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/CONCRETE.MP3 Exodus Bob Marley Babylon By Bus Reggae 7356513 459 3 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/EXODUS.MP3 Is This Love Bob Marley Babylon By Bus Reggae 7205219 450 11 2002-02-26 01:27:50-08 2002-02-26 01:27:50-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/ISTHISLO.MP3 Jamming Bob Marley Babylon By Bus Reggae 5521674 345 13 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/JAMMING.MP3 Kinky Reggae Bob Marley Babylon By Bus Reggae 4610945 288 7 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/KINKYREG.MP3 Lively Up Yourself Bob Marley Babylon By Bus Reggae 6093034 380 8 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/LIVELYUP.MP3 Positive Vibration Bob Marley Babylon By Bus Reggae 5589811 349 1 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/POSITIVE.MP3 Punky Reggae Party Bob Marley Babylon By Bus Reggae 5614889 350 2 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/PUNKYREG.MP3 Rat Race Bob Marley Babylon By Bus Reggae 3501677 218 5 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/RATRACE.MP3 Rebel Music (3 O'clock Road Bl Bob Marley Babylon By Bus Reggae 5168937 323 9 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/REBELMUS.MP3 Stir It Up Bob Marley Babylon By Bus Reggae 5124615 320 4 2002-02-26 01:27:51-08 2002-02-26 01:27:51-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/STIRITUP.MP3 The Heathen Bob Marley Babylon By Bus Reggae 4307507 269 12 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/THEHEATH.MP3 War - No More Trouble Bob Marley Babylon By Bus Reggae 5268049 329 10 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/BABYLONBYBU/WARNOMOR.MP3 Is This Love Bob Marley Kaya Reggae 3719010 232 3 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/ISTHISLO.MP3 Misty Morning Bob Marley Kaya Reggae 3419752 213 7 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/MISTYMOR.MP3 Satisfy My Soul Bob Marley Kaya Reggae 4344698 271 5 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/SATISFYM.MP3 She's Gone Bob Marley Kaya Reggae 2327204 145 6 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/SHESGONE.MP3 Sun Is Shining Bob Marley Kaya Reggae 4770597 298 4 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/KAYA/SUNISSHI.MP3 Them Belly Full (But We Hungry Bob Marley Live At The Lyceum Reggae 4420378 276 3 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/LIVEATTHELY/THEMBELL.MP3 Cry To Me Bob Marley Rastaman Vibration Reggae 2494401 155 4 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/RASTAMANVIB/CRYTOME.MP3 War Bob Marley Rastaman Vibration Reggae 3462388 216 9 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/BOBMARLEY/RASTAMANVIB/WAR.MP3 Fuji Cal Tjader Latin Jazz 'Round Midnight Jazz 2465982 154 9 2002-02-26 01:27:52-08 2002-02-26 01:27:52-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/FUJI.MP3 Hip Walk Cal Tjader Latin Jazz 'Round Midnight Jazz 2476435 154 1 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/HIPWALK.MP3 On Green Dolphin Street Cal Tjader Latin Jazz 'Round Midnight Jazz 5325260 332 10 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/ONGREEND.MP3 Pantano Cal Tjader Latin Jazz 'Round Midnight Jazz 3491238 218 6 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/PANTANO.MP3 Reza Cal Tjader Latin Jazz 'Round Midnight Jazz 3950155 246 2 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/REZA.MP3 'Round Midnight Cal Tjader Latin Jazz 'Round Midnight Jazz 3087916 192 3 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/ROUNDMID.MP3 Sally's Tomato Cal Tjader Latin Jazz 'Round Midnight Jazz 3106306 194 11 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SALLYSTO.MP3 Sone Cal Tjader Latin Jazz 'Round Midnight Jazz 3054468 190 8 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SONE.MP3 Spring Is Here Cal Tjader Latin Jazz 'Round Midnight Jazz 3892068 243 4 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SPRINGIS.MP3 Sunset Boulevard Cal Tjader Latin Jazz 'Round Midnight Jazz 2636103 164 5 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/SUNSETBO.MP3 The Loner Cal Tjader Latin Jazz 'Round Midnight Jazz 3749122 234 12 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/THELONER.MP3 Under a Blanket of Blue Cal Tjader Latin Jazz 'Round Midnight Jazz 2334343 145 7 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CALTJADER/LATINJAZZRO/UNDERABL.MP3 Eurotrash girl Chicks on Speed Chicks on Speed will save us all! Alternative 3876603 242 13 2002-02-26 01:27:53-08 2002-02-26 01:27:53-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/EUROTRAS.MP3 Floating Pyramid over Frankfurt that the taxi driver saw when he was landing Chicks on Speed Chicks on Speed will save us all! Alternative 3689419 230 12 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/FLOATING.MP3 For all the boys Chicks on Speed Chicks on Speed will save us all! Alternative 2261610 141 3 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/FORALLTH.MP3 Give Me Back My Man Chicks on Speed Chicks on Speed will save us all! Alternative 4259875 266 2 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/GIVEMEBA.MP3 Glamour Girl Chicks on Speed Chicks on Speed will save us all! Alternative 6006102 375 4 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/GLAMOURG.MP3 Kattesklareswasser Chicks on Speed Chicks on Speed will save us all! Alternative 4433745 277 8 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/KATTESKL.MP3 Little Star Chicks on Speed Chicks on Speed will save us all! Alternative 4067606 254 6 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/LITTLEST.MP3 Mind your own business Chicks on Speed Chicks on Speed will save us all! Alternative 3047380 190 11 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/MINDYOUR.MP3 Pedstang (re)issue Chicks on Speed Chicks on Speed will save us all! Alternative 1951068 121 5 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/PEDSTANG.MP3 Procrastinator Chicks on Speed Chicks on Speed will save us all! Alternative 1719098 107 10 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/PROCRAST.MP3 Stop Records Advert Chicks on Speed Chicks on Speed will save us all! Alternative 485704 30 1 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/STOPRECO.MP3 Warm Leatherette Chicks on Speed Chicks on Speed will save us all! Alternative 3515905 219 7 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/WARMLEAT.MP3 Yes I Do! Chicks on Speed Chicks on Speed will save us all! Alternative 2509034 156 9 2002-02-26 01:27:54-08 2002-02-26 01:27:54-08 128 44100 MPEG AUDIO FILE MP3032/CHICKSONSPE/CHICKSONSPE/YESIDO.MP3 Bolder To Birmingham Emmylou Harris Profile: The Best Of Emmylou Country 3366289 210 11 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/BOLDERTO.MP3 C'est La Vie You Never Can Tel Emmylou Harris Profile: The Best Of Emmylou Country 3233387 202 4 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/CESTLAVI.MP3 Easy From Now On Emmylou Harris Profile: The Best Of Emmylou Country 2969222 185 6 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/EASYFROM.MP3 Hello Stranger Emmylou Harris Profile: The Best Of Emmylou Country 3741610 233 12 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/HELLOSTR.MP3 If I Could Only Win Your Love Emmylou Harris Profile: The Best Of Emmylou Country 2418783 151 8 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/IFICOULD.MP3 Making Believe Emmylou Harris Profile: The Best Of Emmylou Country 3279346 204 5 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/MAKINGBE.MP3 One of These Days Emmylou Harris Profile: The Best Of Emmylou Country 2875601 179 1 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/ONEOFTHE.MP3 Sweet Dreams Emmylou Harris Profile: The Best Of Emmylou Country 2946231 184 2 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/SWEETDRE.MP3 To Daddy Emmylou Harris Profile: The Best Of Emmylou Country 2590125 161 3 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TODADDY.MP3 Together Again Emmylou Harris Profile: The Best Of Emmylou Country 3667212 229 7 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TOGETHER.MP3 Too Far Gone Emmylou Harris Profile: The Best Of Emmylou Country 3281852 205 9 2002-02-26 01:27:55-08 2002-02-26 01:27:55-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TOOFARGO.MP3 Two More Bottles Of Wine Emmylou Harris Profile: The Best Of Emmylou Country 2843844 177 10 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/EMMYLOUHARR/PROFILETHEB/TWOMOREB.MP3 A Day Without Rain Enya A Day Without Rain (Japan CD) Pop 2530777 158 1 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ADAYWITH.MP3 Deora Ar Mo Chroi Enya A Day Without Rain (Japan CD) Pop 2702975 168 5 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/DEORAARM.MP3 Fallen Embers Enya A Day Without Rain (Japan CD) Pop 2418341 151 7 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/FALLENEM.MP3 Floras Secret Enya A Day Without Rain (Japan CD) Pop 3961446 247 6 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/FLORASSE.MP3 Isobella Enya A Day Without Rain (Japan CD) Pop 4326321 270 11 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ISOBELLA.MP3 Lazy Days Enya A Day Without Rain (Japan CD) Pop 3563546 222 12 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/LAZYDAYS.MP3 One By One Enya A Day Without Rain (Japan CD) Pop 3755809 234 10 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ONEBYONE.MP3 Only Time Enya A Day Without Rain (Japan CD) Pop 3489985 218 3 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/ONLYTIME.MP3 Silver Inches Enya A Day Without Rain (Japan CD) Pop 1567794 97 8 2002-02-26 01:27:56-08 2002-02-26 01:27:56-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/SILVERIN.MP3 Tempus Vernum Enya A Day Without Rain (Japan CD) Pop 2309719 144 4 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/TEMPUSVE.MP3 Wild Child Enya A Day Without Rain (Japan CD) Pop 3648392 228 2 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/ENYA/ADAYWITHOUT/WILDCHIL.MP3 Antenna Hypersonik Orbit Neptuna Electronic 2982570 186 3 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/ANTENNA.MP3 Imaginary Keys Hypersonik Orbit Neptuna Electronic 2929092 183 2 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/IMAGINAR.MP3 In a Jar Hypersonik Orbit Neptuna Electronic 3875360 242 4 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/INAJAR.MP3 Jinx Delirium Hypersonik Orbit Neptuna Electronic 2156271 134 5 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/JINXDELI.MP3 Outdoor #7 Hypersonik Orbit Neptuna Electronic 2689284 168 6 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/OUTDOOR7.MP3 Recognizer Hypersonik Orbit Neptuna Electronic 3861541 241 7 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/RECOGNIZ.MP3 Subliminal Spaces Hypersonik Orbit Neptuna Electronic 4544911 284 8 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/SUBLIMIN.MP3 Velvet Tree Hypersonik Orbit Neptuna Electronic 4264063 266 1 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/VELVETTR.MP3 What Da Funk? Hypersonik Orbit Neptuna Electronic 3023118 188 9 2002-02-26 01:27:57-08 2002-02-26 01:27:57-08 128 44100 MPEG AUDIO FILE MP3032/HYPERSONIK/ORBITNEPTUN/WHATDAFU.MP3 Conc In D Maj For Harpsichord Jacques Loussier Trio The Bach Book (40th Anniv.) Jazz 8623418 538 7 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/JACQUESLOUS/THEBACHB/CONCIND1.MP3 Conc In D Maj For Harpsichord Jacques Loussier Trio The Bach Book (40th Anniv.) Jazz 5926327 370 8 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/JACQUESLOUS/THEBACHB/CONCIND2.MP3 Conc In D Maj For Harpsichord Jacques Loussier Trio The Bach Book (40th Anniv.) Jazz 5056555 316 9 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/JACQUESLOUS/THEBACHB/CONCIND3.MP3 But beautiful Lionel Hampton Mostly Ballads Jazz 3739923 233 12 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/BUTBEAUT.MP3 Danny boy Lionel Hampton Mostly Ballads Jazz 5889482 368 7 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/DANNYBOY.MP3 Dynamic duo Lionel Hampton Mostly Ballads Jazz 9203900 575 9 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/DYNAMICD.MP3 Fools rush in Lionel Hampton Mostly Ballads Jazz 5774966 360 10 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/FOOLSRUS.MP3 I know why and so do you Lionel Hampton Mostly Ballads Jazz 4049223 253 3 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/IKNOWWHY.MP3 I'll be seeing you Lionel Hampton Mostly Ballads Jazz 3156038 197 1 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/ILLBESEE.MP3 It might as well be spring Lionel Hampton Mostly Ballads Jazz 4718794 294 2 2002-02-26 01:27:58-08 2002-02-26 01:27:58-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/ITMIGHTA.MP3 Lover man Lionel Hampton Mostly Ballads Jazz 4433312 277 5 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/LOVERMAN.MP3 Pinch me Lionel Hampton Mostly Ballads Jazz 10886602 680 11 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/PINCHME.MP3 PS I love you Lionel Hampton Mostly Ballads Jazz 3585277 224 8 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/PSILOVEY.MP3 Toot toot Lionel Hampton Mostly Ballads Jazz 3793417 237 4 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/LIONELHAMPT/MOSTLYBALLA/TOOTTOOT.MP3 Airegin Miles Davis Prestige Jazz 4805703 300 7 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/AIREGIN.MP3 Bags' Groove (take 1) Miles Davis Prestige Jazz 10802595 675 1 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/BAGSGROO.MP3 Blue 'N' Boogie Miles Davis Prestige Jazz 7977603 498 5 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/BLUENBOO.MP3 But Not For Me (take 1) Miles Davis Prestige Jazz 5522519 345 9 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/BUTNOTFO.MP3 Doxy Miles Davis Prestige Jazz 4672372 292 11 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/DOXY.MP3 Oleo Miles Davis Prestige Jazz 5003395 312 8 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/OLEO.MP3 Walkin' Miles Davis Prestige Jazz 12922888 807 6 2002-02-26 01:27:59-08 2002-02-26 01:27:59-08 128 44100 MPEG AUDIO FILE MP3032/MILESDAVIS/PRESTIGE/WALKIN.MP3 Absinthe And Rue Symphony X Symphony X Metal 6984116 436 5 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/ABSINTHE.MP3 A Lesson Before Dying Symphony X Symphony X Metal 11638933 727 10 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/ALESSONB.MP3 Into The Dementia Symphony X Symphony X Metal 979298 61 1 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/INTOTHED.MP3 Masquerade Symphony X Symphony X Metal 4289945 268 4 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/MASQUERA.MP3 Premonition Symphony X Symphony X Metal 5406315 337 3 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/PREMONIT.MP3 Rapture of Pain Symphony X Symphony X Metal 4887632 305 8 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/RAPTUREO.MP3 Shades of Grey Symphony X Symphony X Metal 5464415 341 6 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/SHADESOF.MP3 Taunting The Notorious Symphony X Symphony X Metal 3208279 200 7 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/TAUNTING.MP3 The Raging Season Symphony X Symphony X Metal 4827866 301 2 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/THERAGIN.MP3 Thorns Of Sorrow Symphony X Symphony X Metal 3754128 234 9 2002-02-26 01:28:00-08 2002-02-26 01:28:00-08 128 44100 MPEG AUDIO FILE MP3032/SYMPHONYX/SYMPHONYX/THORNSOF.MP3 Bad Boy The Beatles Past Masters Volume One Rock 2249065 140 16 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/BADBOY.MP3 From Me To You The Beatles Past Masters Volume One Rock 1882939 117 2 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/FROMMETO.MP3 I Call Your Name The Beatles Past Masters Volume One Rock 2066008 129 11 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/ICALLYOU.MP3 I Feel Fine The Beatles Past Masters Volume One Rock 2239038 139 14 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/IFEELFIN.MP3 I'll Get You The Beatles Past Masters Volume One Rock 2015848 125 5 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/ILLGETYO.MP3 I'm Down The Beatles Past Masters Volume One Rock 2432132 152 18 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/IMDOWN.MP3 I Want To Hold Your Hand The Beatles Past Masters Volume One Rock 2348973 146 6 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/IWANTTOH.MP3 Komm, Gib Mir Deine Hand The Beatles Past Masters Volume One Rock 2348555 146 8 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/KOMMGIBM.MP3 Long Tall Sally The Beatles Past Masters Volume One Rock 1971548 123 10 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/LONGTALL.MP3 Love Me Do The Beatles Past Masters Volume One Rock 2303819 143 1 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/LOVEMEDO.MP3 Matchbox The Beatles Past Masters Volume One Rock 1904667 119 13 2002-02-26 01:28:01-08 2002-02-26 01:28:01-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/MATCHBOX.MP3 She Loves You The Beatles Past Masters Volume One Rock 2260773 141 4 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SHELOVES.MP3 She's A Woman The Beatles Past Masters Volume One Rock 2935778 183 15 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SHESAWOM.MP3 Sie Liebt Dich The Beatles Past Masters Volume One Rock 2236950 139 9 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SIELIEBT.MP3 Slow Down The Beatles Past Masters Volume One Rock 2822925 176 12 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/SLOWDOWN.MP3 Thank You Girl The Beatles Past Masters Volume One Rock 1992026 124 3 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/THANKYOU.MP3 This Boy The Beatles Past Masters Volume One Rock 2183863 136 7 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/THISBOY.MP3 Yes It Is The Beatles Past Masters Volume One Rock 2604332 162 17 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/PASTMASTERS/YESITIS.MP3 Sounds Like Movin' The Beatles Sounds Incorporated (CD1) Rock 1812712 113 14 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC1/SOUNDSLI.MP3 The hall Of The Mountain King The Beatles Sounds Incorporated (CD1) Rock 2244057 140 17 2002-02-26 01:28:02-08 2002-02-26 01:28:02-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC1/THEHALLO.MP3 A Hard Day's Night The Beatles Sounds Incorporated (CD2) Rock 2985584 186 11 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/AHARDDAY.MP3 Baby's In Black The Beatles Sounds Incorporated (CD2) Rock 2616444 163 9 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/BABYSINB.MP3 Can't Buy My Love The Beatles Sounds Incorporated (CD2) Rock 2410065 150 8 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/CANTBUYM.MP3 Dizzy Miss Lizzy The Beatles Sounds Incorporated (CD2) Rock 3297379 206 5 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/DIZZYMIS.MP3 Everybody's Trying to Be My Baby The Beatles Sounds Incorporated (CD2) Rock 2323919 145 7 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/EVERYBOD.MP3 Help! The Beatles Sounds Incorporated (CD2) Rock 2913604 182 12 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/HELP.MP3 I Feel Fine The Beatles Sounds Incorporated (CD2) Rock 2419163 151 4 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/IFEELFIN.MP3 I'm Down The Beatles Sounds Incorporated (CD2) Rock 2874737 179 13 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/IMDOWN.MP3 I Wanna Be Your Man The Beatles Sounds Incorporated (CD2) Rock 2568010 160 10 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/IWANNABE.MP3 She's A Woman The Beatles Sounds Incorporated (CD2) Rock 3094587 193 3 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/SHESAWOM.MP3 Ticket to Ride The Beatles Sounds Incorporated (CD2) Rock 2531179 158 6 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/TICKETTO.MP3 Twist And Shout The Beatles Sounds Incorporated (CD2) Rock 1323796 82 2 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/TWISTAND.MP3 Weird Beard - Stage Announcement The Beatles Sounds Incorporated (CD2) Rock 4198018 262 1 2002-02-26 01:28:03-08 2002-02-26 01:28:03-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/SOUNDSINC2/WEIRDBEA.MP3 Lucy in the Sky with Diamonds The Beatles N/A Rock 3336552 208 0 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/THEBEATLES/UNKNOWNALBU/LUCYINTH.MP3 All My Friends Our Lady Peace Spiritual Machines Rock 3477033 217 13 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/ALLMYFRI.MP3 Are You Sad? Our Lady Peace Spiritual Machines Rock 4936543 308 7 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/AREYOUSA.MP3 Everyone's A Junkie Our Lady Peace Spiritual Machines Rock 3497518 218 11 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/EVERYONE.MP3 If You Believe Our Lady Peace Spiritual Machines Rock 3445267 215 1 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/IFYOUBEL.MP3 In Repair Our Lady Peace Spiritual Machines Rock 3813902 238 4 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/INREPAIR.MP3 Life Our Lady Peace Spiritual Machines Rock 4211376 263 5 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/LIFE.MP3 Made To Heal Our Lady Peace Spiritual Machines Rock 3636690 227 9 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/MADETOHE.MP3 Middle of Yesterday Our Lady Peace Spiritual Machines Rock 3758323 234 6 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/MIDDLEOF.MP3 Right Behind You (Mafia) Our Lady Peace Spiritual Machines Rock 3108402 194 2 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RIGHTBEH.MP3 R.K. 1949-97 Our Lady Peace Spiritual Machines Rock 706797 44 10 2002-02-26 01:28:04-08 2002-02-26 01:28:04-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RK194997.MP3 R.K. 2029 Our Lady Peace Spiritual Machines Rock 240769 15 3 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RK2029.MP3 R.K. 2029 (pt.2) Our Lady Peace Spiritual Machines Rock 195218 12 8 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RK2029PT.MP3 R.K. On Death Our Lady Peace Spiritual Machines Rock 637417 39 12 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/SPIRITUALMA/RKONDEAT.MP3 Clumsy Our Lady Peace N/A Rock 4318320 269 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/CLUMSY.MP3 Is Anybody Home? (Live) Our Lady Peace N/A Rock 3820144 238 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/ISANYBOD.MP3 Naveed Our Lady Peace N/A Rock 4407956 275 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/NAVEED.MP3 One Man Army Our Lady Peace N/A Rock 3246693 202 0 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/OURLADYPEAC/UNKNOWNALBU/ONEMANAR.MP3 Don Juan Triumphant - Travel Through Time Misha Segal The Phantom Of The Opera Classical 1983261 123 2 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/DONJUANT.MP3 Finale - End Title Misha Segal The Phantom Of The Opera Classical 2966279 185 13 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/FINALEEN.MP3 Graveyard Violin - Pact With The Devil - Richard Gets Killed Misha Segal The Phantom Of The Opera Classical 3826899 239 10 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/GRAVEYAR.MP3 Main Title Misha Segal The Phantom Of The Opera Classical 3010573 188 1 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/MAINTITL.MP3 Music Of The Knife Misha Segal The Phantom Of The Opera Classical 2260345 141 9 2002-02-26 01:28:05-08 2002-02-26 01:28:05-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/MUSICOFT.MP3 Ride To The Cemetary - The Cursed Manuscript - What's In The Closet Misha Segal The Phantom Of The Opera Classical 3366315 210 11 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/RIDETOTH.MP3 Salon Talk Misha Segal The Phantom Of The Opera Classical 2653636 165 7 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/SALONTAL.MP3 The Phantom's Lair - Hellbound (Freddy at the Opera) - Maddie Misha Segal The Phantom Of The Opera Classical 5824743 364 3 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEHELL.MP3 The Jewel Son (From Faust) Misha Segal The Phantom Of The Opera Classical 3893737 243 8 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEJEWEL.MP3 The Phantom On Fire - The Phantom's Face Misha Segal The Phantom Of The Opera Classical 4172112 260 6 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEPHANT.MP3 The Wedding - The Intruder From Springhood Misha Segal The Phantom Of The Opera Classical 8173238 510 12 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/THEWEDDI.MP3 You Are Him - Into The Lair Misha Segal The Phantom Of The Opera Classical 3604928 225 5 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/YOUAREHI.MP3 Young Phantom's Piano Etude - Davis' Unpleasant Surprise - Carlotta's Head Misha Segal The Phantom Of The Opera Classical 4903992 306 4 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3032/MISHASEGAL/THEPHANTOMO/YOUNGPHA.MP3 Mesa Drive Jennifer Smith Code Mesa New Age 4845103 302 1 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/01MESADR.MP3 Looking for sleep Jennifer Smith Code Mesa New Age 5718227 357 2 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/02LOOKIN.MP3 Radio Bagdad Jennifer Smith Code Mesa New Age 5233947 327 3 2002-02-26 01:28:06-08 2002-02-26 01:28:06-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/03RADIOB.MP3 Return from calvery Jennifer Smith Code Mesa New Age 4940407 308 4 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/04RETURN.MP3 One more goodbye Jennifer Smith Code Mesa New Age 4670402 291 5 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/05ONEMOR.MP3 Bodycount Jennifer Smith Code Mesa New Age 4445951 277 6 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/06BODYCO.MP3 When the world began Jennifer Smith Code Mesa New Age 5003102 312 7 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/07WHENTH.MP3 Church of the higher disco Jennifer Smith Code Mesa New Age 4115781 257 8 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/08CHURCH.MP3 What's yours or mine Jennifer Smith Code Mesa New Age 4155899 259 9 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/09WHATSY.MP3 Civilization Jennifer Smith Code Mesa New Age 3540239 221 10 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/JENNIFERSMI/CODEMESA/10CIVILI.MP3 The Sweet Hereafter Mychael Danna The Sweet Hereafter Soundtrack 3450842 215 1 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/01THESWE.MP3 Procession Mychael Danna The Sweet Hereafter Soundtrack 2981605 186 2 2002-02-26 01:28:07-08 2002-02-26 01:28:07-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/02PROCES.MP3 One More Colour Mychael Danna The Sweet Hereafter Soundtrack 3860438 241 3 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/03ONEMOR.MP3 Bus Mychael Danna The Sweet Hereafter Soundtrack 807793 50 4 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/04BUS.MP3 Bus Stop Mychael Danna The Sweet Hereafter Soundtrack 1799475 112 5 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/05BUSSTO.MP3 Courage Mychael Danna The Sweet Hereafter Soundtrack 4181004 261 6 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/06COURAG.MP3 It's Important That We Talk Mychael Danna The Sweet Hereafter Soundtrack 3316267 207 7 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/07ITSIMP.MP3 Dog Track Drizzle Mychael Danna The Sweet Hereafter Soundtrack 4147717 259 8 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/08DOGTRA.MP3 Thin Ice Mychael Danna The Sweet Hereafter Soundtrack 5655287 353 9 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/09THINIC.MP3 It Was A Wonderful Time In Our Lives Mychael Danna The Sweet Hereafter Soundtrack 5318024 332 10 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/10ITWASA.MP3 Pied Piper Mychael Danna The Sweet Hereafter Soundtrack 2138026 133 11 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/11PIEDPI.MP3 A Huge Wave Mychael Danna The Sweet Hereafter Soundtrack 2136077 133 12 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/12AHUGEW.MP3 Boy Mychael Danna The Sweet Hereafter Soundtrack 4273789 267 13 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/13BOY.MP3 Why I Lied Mychael Danna The Sweet Hereafter Soundtrack 3350107 209 14 2002-02-26 01:28:08-08 2002-02-26 01:28:08-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/14WHYILI.MP3 A Different Town Mychael Danna The Sweet Hereafter Soundtrack 2726518 170 15 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/MYCHAELDANN/THESWEETHER/15ADIFFE.MP3 865 (Courage) Misfit Cafe Auburn Country 2637824 164 2 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/865COURA.MP3 Away Misfit Cafe Auburn Country 3117056 194 7 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/AWAY.MP3 George's Grill Misfit Cafe Auburn Country 3241984 202 3 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/GEORGESG.MP3 Ghostland Misfit Cafe Auburn Country 2889728 180 4 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/GHOSTLAN.MP3 Glory Misfit Cafe Auburn Country 2295808 143 8 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/GLORY.MP3 I Miss You Misfit Cafe Auburn Country 2818048 176 6 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/IMISSYOU.MP3 Jasmine Misfit Cafe Auburn Country 3297280 206 5 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/JASMINE.MP3 Lullabye Misfit Cafe Auburn Country 2566144 160 10 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/LULLABYE.MP3 The Velvet Tears of Elvis Misfit Cafe Auburn Country 3733504 233 1 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/THEVELVE.MP3 Yukon River Misfit Cafe Auburn Country 3805184 237 9 2002-02-26 01:28:09-08 2002-02-26 01:28:09-08 128 44100 MPEG AUDIO FILE MP3028/AUBURN/MISFITCAFE/YUKONRIV.MP3 Optimus_12_00(Genome-tuneup) DJ Optimus City Under Fire N/A 6926036 432 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/GENOMETU.MP3 Phazer09 DJ Optimus City Under Fire N/A 3147353 393 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 64 22050 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/PHAZER.MP3 Optimus_07_00(quickfix) DJ Optimus City Under Fire N/A 6107922 381 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/QUICKFIX.MP3 Optimus_10_00(structure) DJ Optimus City Under Fire N/A 5954427 372 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/STRUCTUR.MP3 The Shaking Fist DJ Optimus City Under Fire N/A 442309 31 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 112 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/THESHAKI.MP3 Tyrant-DjOptimus01-08-00 DJ Optimus City Under Fire N/A 6300949 393 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/DJOPTIMUS/CITYUNDERFI/TYRANT.MP3 Temptation New Order 1981 - Factus 8 - 1982 Alternative 6695008 418 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/1981FACTUS8/TEMPTATI.MP3 Brutal New Order Please Visit MUSIC DL Alternative 3216221 201 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/PLEASEVISIT/BRUTAL.MP3 The Beach New Order Power, Corruption & Lies Alternative 7004715 437 10 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/POWERCORRUP/THEBEACH.MP3 True Faith New Order Substance Alternative 5628236 351 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/SUBSTANCE/TRUEFAIT.MP3 In a Lonely Place New Order Substance 1987 (CD 2) Alternative 6020700 376 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/SUBSTANCE19/INALONEL.MP3 Murder New Order Substance 1987 (CD 2) Alternative 3772916 235 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/SUBSTANCE19/MURDER.MP3 Bizarre Love Triangle New Order N/A Alternative 6473767 404 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/BIZARREL.MP3 Confusion Instrumental New Order N/A Alternative 4797056 299 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/CONFUSIO.MP3 Fine Time New Order N/A Alternative 3019894 188 1 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/FINETIME.MP3 Love Vigilantes New Order N/A Alternative 4133197 258 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/LOVEVIGI.MP3 Mesh New Order N/A Alternative 3284880 205 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/MESH.MP3 Perfect Kiss New Order N/A Alternative 7768186 485 0 2002-02-26 01:28:10-08 2002-02-26 01:28:10-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/PERFECTK.MP3 Regret New Order N/A Alternative 3123826 195 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/REGRET.MP3 Shell Shock New Order N/A Alternative 4224034 264 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/SHELLSHO.MP3 Sister Ray (Live) New Order N/A Alternative 4205644 262 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/SISTERRA.MP3 Touched By The Hand Of God New Order N/A Alternative 5441965 340 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/NEWORDER/UNKNOWNALBU/TOUCHEDB.MP3 14 31 Global Communication 76 14 Ambient 13951890 871 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/7614/1431.MP3 4 02 Global Communication 76 14 Ambient 3877964 242 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/7614/402.MP3 9 25 Global Communication 76 14 Ambient 9052574 565 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/7614/925.MP3 Amor Real Global Communication Remotion Ambient 8625002 539 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/REMOTION/AMORREAL.MP3 Natural High Global Communication Remotion Ambient 8705667 544 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/GLOBALCOMMU/REMOTION/NATURALH.MP3 3am Eternal KLF N/A Techno 3081851 192 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/3AM ETERNAL.MP3 3 am eternal (live) KLF N/A Techno 3503891 218 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/3AMETERN.MP3 The White Room KLF N/A Techno 5041422 315 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/THEWHITE.MP3 What Time Is Love KLF N/A Techno 5223234 326 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/UNKNOWNALBU/WHATTIME.MP3 Justified & Ancient KLF w/ Tammy Wynett Techno 3488286 218 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/KLF/WTAMMYWYNET/JUSTIFIE.MP3 Hail to the Bopp Meat Beat Manifesto Actual sounds & voices Electronic 4488730 280 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ACTUALSOUND/HAILTOTH.MP3 I Am Organic Meat Beat Manifesto Original Fire Electronic 3467806 216 4 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ORIGINALFIR/IAMORGAN.MP3 Radio Babylon Meat Beat Manifesto Original Fire Electronic 6121010 382 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ORIGINALFIR/RADIO BABYLON.MP3 Radio Babylon (Orb Mix) Meat Beat Manifesto Original Fire Electronic 12776171 798 0 2002-02-26 01:28:11-08 2002-02-26 01:28:11-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/ORIGINALFIR/RADIOBAB.MP3 Mindstream Meat Beat Manifesto Satyricon Electronic 4686715 292 2 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/MINDSTRE.MP3 Original Control (version 2) Meat Beat Manifesto Satyricon Electronic 5163188 322 9 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/ORIGINAL.MP3 Placebo Meat Beat Manifesto Satyricon Electronic 4864347 304 16 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/PLACEBO.MP3 untold stories Meat Beat Manifesto Satyricon Electronic 1799732 112 13 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/UNTOLDST.MP3 Your mind belongs to me Meat Beat Manifesto Satyricon Electronic 4840384 302 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/SATYRICON/YOURMIND.MP3 Acid Again Meat Beat Manifesto N/A Electronic 5563453 347 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/ACIDAGAI.MP3 Brain Meat Beat Manifesto N/A Electronic 5280493 330 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/BRAIN.MP3 Deepsky St Meat Beat Manifesto N/A Electronic 6107755 381 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/DEEPSKYS.MP3 Euthanasia Meat Beat Manifesto N/A Electronic 4368926 273 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/EUTHANAS.MP3 mars needs women Meat Beat Manifesto N/A Electronic 3425173 214 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/MARSNEED.MP3 Mindstream (Aphex Mix) Meat Beat Manifesto N/A Electronic 9557834 2389 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 32 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/MINDSTRE.MP3 Paradise Meat Beat Manifesto N/A Electronic 5012165 313 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/PARADISE.MP3 Prime Audio Soup Meat Beat Manifesto N/A Electronic 6035050 377 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/PRIMEAUD.MP3 Radio babylon (Remix) Meat Beat Manifesto N/A Electronic 4934424 308 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/RADIOBAB.MP3 The Utterer Meat Beat Manifesto N/A Electronic 6622143 413 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/THEUTTER.MP3 Transmission Meat Beat Manifesto N/A Electronic 4027547 251 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/TRANSMIS.MP3 We Done Meat Beat Manifesto N/A Electronic 2039222 127 0 2002-02-26 01:28:12-08 2002-02-26 01:28:12-08 128 44100 MPEG AUDIO FILE MP3028/MEATBEATMAN/UNKNOWNALBU/WEDONE.MP3 Alex Vs The KLF The Orb N/A Techno 9822873 613 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/THEORB/UNKNOWNALBU/ALEXVSTH.MP3 unknown mix Prodigy N/A Techno 14250313 890 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/PRODIGY/UNKNOWNALBU/UNKNOWN MIX.MP3 unknown mix Prodigy N/A Techno 3779419 472 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 64 44100 MPEG AUDIO FILE MP3028/PRODIGY/UNKNOWNALBU/UNKNOWNM.MP3 Cocaine Sex Renegade Soundwave Biting My Nails Alternative 6633986 414 2 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/RENEGADESOU/BITINGMYNAI/COCAINES.MP3 Biting My Nails Renegade Soundwave Tonal Evidence (USA) Alternative 4296619 268 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/RENEGADESOU/TONALEVIDEN/BITINGMY.MP3 Kray Twins Renegade Soundwave N/A Alternative 5560945 347 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/RENEGADESOU/UNKNOWNALBU/KRAYTWIN.MP3 Goodbye Seventies Yaz The Best of Alternative 2453142 153 5 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/THEBESTOF/GOODBYES.MP3 Only You Yaz N/A Alternative 3128006 195 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/UNKNOWNALBU/ONLYYOU.MP3 Situation '99 Remix Yaz N/A Alternative 4447663 277 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/UNKNOWNALBU/SITUATIO.MP3 Situation Yaz N/A Alternative 3591104 224 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/UNKNOWNALBU/SITUATION.MP3 Walk Away From Love Yaz You And Me Both Alternative 3183734 198 6 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/YAZ/YOUANDMEBOT/WALKAWAY.MP3 Foil Autechre Amber Ambient 5836380 364 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/FOIL.MP3 Glitch Autechre Amber Ambient 6014429 375 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/GLITCH.MP3 Montreal Autechre Amber Ambient 6970721 435 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/MONTREAL.MP3 Nil Autechre Amber Ambient 7501529 468 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/NIL.MP3 Nine Autechre Amber Ambient 3524649 220 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/NINE.MP3 Silverside Autechre Amber Ambient 5296517 331 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/SILVERSI.MP3 Teartear Autechre Amber Ambient 6492576 405 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/AMBER/TEARTEAR.MP3 777 Autechre N/A Ambient 5598979 349 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/UNKNOWNALBU/777.MP3 Further Autechre N/A Ambient 9690798 605 0 2002-02-26 01:28:13-08 2002-02-26 01:28:13-08 128 44100 MPEG AUDIO FILE MP3028/AUTECHRE/UNKNOWNALBU/FURTHER.MP3 The Beast (Autechre Mix) Autechre A Journey Into Ambient Groove Ambient 9383936 1876 6 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 40 44100 MPEG AUDIO FILE MP3028/AUTECHRE/UNKNOWNALBU/THEBEAST.MP3 Sexy Bits (Autechre Mix) DJ Food N/A Electronic 6905241 431 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/DJFOOD/UNKNOWNALBU/SEXYBITS.MP3 Gold (Autechre mix) Lamb N/A Ambient 7208957 450 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/LAMB/UNKNOWNALBU/GOLDAUTE.MP3 Clark Co. Record Fair Saint Etienne Fairfax High Dance 3130235 195 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/FAIRFAXHIGH/CLARKCOR.MP3 People Get Real Saint Etienne Foxbase Alpha Trip-Hop 4555056 284 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/FOXBASEALPH/PEOPLEGE.MP3 Sylvie (Radio Edit) Saint Etienne Good Humor Dance 3369308 210 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/GOODHUMOR/SYLVIERA.MP3 We're In The City Saint Etienne Places To Visit Dance 4508106 281 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/PLACESTOVIS/WEREINTH.MP3 Built On Sand Saint Etienne N/A Dance 3246288 202 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/BUILTONS.MP3 Heart failed (In The Back Of A Saint Etienne N/A Dance 3544293 221 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/HEARTFAI.MP3 He's on the phone Saint Etienne N/A Dance 5807008 362 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/HESONTHE.MP3 how i learned to love the bomb Saint Etienne N/A Dance 2963748 185 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/HOWILEAR.MP3 Like A Motorway Saint Etienne N/A Ambient 8354583 522 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/LIKEAMOT.MP3 Lost In The Library Saint Etienne N/A Dance 2169764 135 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/LOSTINTH.MP3 Only Love Can Break Your heart Saint Etienne N/A Dance 4302192 268 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/ONLYLOVE.MP3 Sylvie (Faze Action remix) Saint Etienne N/A Dance 9701665 606 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/SYLVIEFA.MP3 Sylvie (Titinnabulation remix) Saint Etienne N/A Dance 7758991 484 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/SYLVIETI.MP3 The Sea Saint Etienne N/A N/A 4117733 257 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/THESEA.MP3 Uri Geller Saint Etienne N/A Ambient 3407844 212 0 2002-02-26 01:28:14-08 2002-02-26 01:28:14-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/UNKNOWNALBU/URIGELLE.MP3 Who Do You Think You are Saint Etienne w/ Aphex Twin Ambient 7806639 487 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3028/SAINTETIENN/WAPHEXTWIN/WHODOYOU.MP3 SemiDetach (Nziq vs Autechre) Stereosphere N/A Electronic 5613190 350 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3028/STEREOSPHER/UNKNOWNALBU/SEMIDETA.MP3 Adverse Camber (Autechre Mix) Tortoise N/A Ambient 5821891 363 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3028/TORTOISE/UNKNOWNALBU/ADVERSEC.MP3 Coal In Ghost Out Blip N/A Electronic 4204668 262 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BLIP/UNKNOWNALBU/COALINGH.MP3 Bizarre Love Triangle Frente! N/A Alternative 1976111 123 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/FRENTE/UNKNOWNALBU/BIZARREL.MP3 Pump Up the Volume Marrs N/A Techno 4206758 262 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/MARRS/UNKNOWNALBU/PUMP UP THE VOLUME.MP3 Pump Up the Volume (Remix) Marrs N/A Techno 3809697 238 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/MARRS/UNKNOWNALBU/PUMPUPTH.MP3 Bjork vs Depeche Mode Igor N/A Dance 7096944 443 0 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/IGOR/UNKNOWNALBU/BJORKVSD.MP3 Aeroplane Bjork Debut Avantgarde 3756756 234 8 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/AEROPLAN.MP3 Big Time Sensuality Bjork Debut Avantgarde 3796462 237 6 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/BIGTIMES.MP3 Come to me Bjork Debut Avantgarde 4721823 295 9 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/COMETOME.MP3 Crying Bjork Debut Avantgarde 4678634 292 2 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/CRYING.MP3 Human Behaviour Bjork Debut Avantgarde 4020766 251 1 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/HUMANBEH.MP3 Like Someone In love Bjork Debut Avantgarde 4452240 278 5 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/LIKESOME.MP3 One Day Bjork Debut Avantgarde 5039750 314 7 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/ONEDAY.MP3 The Anchor Song Bjork Debut Avantgarde 4352208 272 11 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/THEANCHO.MP3 Theres More to Life Than This Bjork Debut Avantgarde 3140126 196 4 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/THERESMO.MP3 Venus As A Boy Bjork Debut Avantgarde 4508524 281 3 2002-02-26 01:28:15-08 2002-02-26 01:28:15-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/VENUSASA.MP3 Violently Happy Bjork Debut Avantgarde 4784935 299 10 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/DEBUT/VIOLENTL.MP3 Army of Me Bjork Post Avantgarde 3748257 234 1 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ARMYOFME.MP3 Cover Me Bjork Post Avantgarde 2020414 126 11 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/COVERME.MP3 Enjoy Bjork Post Avantgarde 3789320 236 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ENJOY.MP3 Headphones Bjork Post Avantgarde 5442663 340 10 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/HEADPHON.MP3 Hyper-Ballad Bjork Post Avantgarde 5142986 321 2 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/HYPERBAL.MP3 I Miss You Bjork Post Avantgarde 3901230 243 9 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/IMISSYOU.MP3 Isobel Bjork Post Avantgarde 5554258 347 7 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ISOBEL.MP3 It's Oh So Quiet Bjork Post Avantgarde 3498039 218 4 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/ITSOHSOQ.MP3 Possibly Maybe Bjork Post Avantgarde 4905167 306 8 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/POSSIBLY.MP3 The Modern Things Bjork Post Avantgarde 4002098 250 3 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/THEMODER.MP3 You've Been Flirting Again Bjork Post Avantgarde 2395741 149 6 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/POST/YOUVEBEE.MP3 Big time sensuality (Remix) Bjork N/A Dance 3978134 248 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/BIGTIMES.MP3 Play Dead Bjork N/A Avantgarde 3723597 232 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/PLAYDEAD.MP3 Violently Happy (highway mix) Bjork N/A Dance 4598385 287 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/VIOLENTL.MP3 Violently Happy (w/ Fluke) Bjork N/A Avantgarde 5524999 345 0 2002-02-26 01:28:16-08 2002-02-26 01:28:16-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/HAPFLUKE.MP3 Enjoy (Further Over The Edge) Bjork N/A Avantgarde 4149205 259 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/ENJOYREMIX.MP3 You've Been Flirting Again (Fl Bjork N/A Avantgarde 3206164 200 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/YOUVEBEE.MP3 Violently Happy (Live) Bjork N/A Avantgarde 5122088 320 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/BJORK/UNKNOWNALBU/HAPLIVE.MP3 Stressed Out (Dandelions Mix) A Tribe Called Quest N/A Rap 4233229 264 0 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/ATRIBECALLE/CDSINGLESTR/STRESSED.MP3 Night and Day Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2961996 185 1 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/01NIGHTA.MP3 Imagination Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3135307 195 2 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/02IMAGIN.MP3 I'll Never Smile Again Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3091850 193 3 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/03ILLNEV.MP3 Blue Skies Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3216808 201 4 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/04BLUESK.MP3 The One I Love (Belongs to Somebody Else) Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3443791 215 5 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/05THEONE.MP3 Fools Rush In (Where Angels Fear to Tread) Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3099393 193 6 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/06FOOLSR.MP3 Stardust Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3111480 194 7 2002-02-26 01:28:17-08 2002-02-26 01:28:17-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/07STARDU.MP3 In the Blue of Evening Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2854032 178 8 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/08INTHEB.MP3 Polka Dots and Moonbeams Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3229779 201 9 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/09POLKAD.MP3 Without a Song Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 4322733 270 10 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/10WITHOU.MP3 This Love of Mine Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3603429 225 11 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/11THISLO.MP3 I Think of You Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2849986 178 12 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/12ITHINK.MP3 Once in a While Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 2991953 186 13 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/13ONCEIN.MP3 How Am I to Know Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3004075 187 14 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/14HOWAMI.MP3 The Sky Fell Down Frank Sinatra nad the Tommy Dorsey Orchesta FS & TD Greatest Hits Jazz 3097699 193 15 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/FRANKSINATR/FSTDGREATES/15THESKY.MP3 Love Is A Stranger Eurythmics Greatest Hits Rock 3536258 221 1 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/01LOVEIS.MP3 Sweet Dreams Eurythmics Greatest Hits Rock 4708070 294 2 2002-02-26 01:28:18-08 2002-02-26 01:28:18-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/02SWEETD.MP3 Who's That Girl? Eurythmics Greatest Hits Rock 3631551 226 3 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/03WHOSTH.MP3 Right By Your Side Eurythmics Greatest Hits Rock 3721832 232 4 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/04RIGHTB.MP3 Here Comes The Rain Again Eurythmics Greatest Hits Rock 4822603 301 5 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/05HERECO.MP3 There Must Be An Angel (Playing With My Heart) Eurythmics Greatest Hits Rock 4524342 282 6 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/06THEREM.MP3 Sisters Are Doin' It For Themselves Eurythmics Greatest Hits Rock 4694300 293 7 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/07SISTER.MP3 It's Alright (Baby's Coming Back) Eurythmics Greatest Hits Rock 3612202 225 8 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/08ITSALR.MP3 When Tomorrow Comes Eurythmics Greatest Hits Rock 4121402 257 9 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/09WHENTO.MP3 You Have Placed A Chill In My Heart Eurythmics Greatest Hits Rock 3665705 229 10 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/10YOUHAV.MP3 Miracle Of Love Eurythmics Greatest Hits Rock 4420241 276 11 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/11MIRACL.MP3 Sex Crime (1984) Eurythmics Greatest Hits Rock 3750671 234 12 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/12SEXCRI.MP3 Thorn In My Side Eurythmics Greatest Hits Rock 4054110 253 13 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/13THORNI.MP3 Don't Ask Me Why Eurythmics Greatest Hits Rock 4065255 254 14 2002-02-26 01:28:19-08 2002-02-26 01:28:19-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/14DONTAS.MP3 Angel Eurythmics Greatest Hits Rock 4624473 289 15 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/15ANGEL.MP3 Would I Lie To You? Eurythmics Greatest Hits Rock 4245398 265 16 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/16WOULDI.MP3 Missionary Man Eurythmics Greatest Hits Rock 3639351 227 17 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/17MISSIO.MP3 I Need A Man Eurythmics Greatest Hits Rock 4166815 260 18 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/EURYTHMICS/GREATESTHIT/18INEEDA.MP3 The Dam at Otter Creek Live Throwing Copper Rock 4530833 283 1 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/01THEDAM.MP3 Selling the Drama Live Throwing Copper Rock 3302447 206 2 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/02SELLIN.MP3 I Alone Live Throwing Copper Rock 3694482 230 3 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/03IALONE.MP3 Iris Live Throwing Copper Rock 3833241 239 4 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/04IRIS.MP3 Lightning Crashes Live Throwing Copper Rock 5208340 325 5 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/05LIGHTN.MP3 Top Live Throwing Copper Rock 2597058 162 6 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/06TOP.MP3 All Over You Live Throwing Copper Rock 3835757 239 7 2002-02-26 01:28:20-08 2002-02-26 01:28:20-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/07ALLOVE.MP3 Shit Towne Live Throwing Copper Rock 3647256 227 8 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/08SHITTO.MP3 T.B.D. Live Throwing Copper Rock 4304283 269 9 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/09TBD.MP3 Stage Live Throwing Copper Rock 3009169 188 10 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/10STAGE.MP3 Waitress Live Throwing Copper Rock 2703922 168 11 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/11WAITRE.MP3 Pillar of Davidson Live Throwing Copper Rock 6497886 406 12 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/12PILLAR.MP3 White, Discussion Live Throwing Copper Rock 5894630 368 13 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/13WHITED.MP3 ? Live Throwing Copper Rock 4072313 254 14 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LIVE/THROWINGCOP/14.MP3 Angels and Devils Love and Rockets Express Rock 5895866 368 1 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/01ANGELS.MP3 It Could Be Sunshine Love and Rockets Express Rock 4792039 299 2 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/02ITCOUL.MP3 Kundalini Express Love and Rockets Express Rock 5567350 347 3 2002-02-26 01:28:21-08 2002-02-26 01:28:21-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/03KUNDAL.MP3 All in My Mind Love and Rockets Express Rock 4538054 283 4 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/04ALLINM.MP3 Life in Laralay Love and Rockets Express Rock 3406500 212 5 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/05LIFEIN.MP3 Ball of Confusion Love and Rockets Express Rock 6028359 376 6 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/06BALLOF.MP3 Holiday on the Moon Love and Rockets Express Rock 5907571 369 7 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/07HOLIDA.MP3 Yin and Yang the Flower Pot Man (remix) Love and Rockets Express Rock 5290266 330 8 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/08YINAND.MP3 Love Me Love and Rockets Express Rock 3678723 229 9 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/09LOVEME.MP3 All In My Mind (acoustic version) Love and Rockets Express Rock 4914516 307 10 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/10ALLINM.MP3 An American Dream Love and Rockets Express Rock 5846967 365 11 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/LOVEANDROCK/EXPRESS/11ANAMER.MP3 Electricity Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3385671 211 1 2002-02-26 01:28:22-08 2002-02-26 01:28:22-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/01ELECTR.MP3 Messages Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 4572672 285 2 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/02MESSAG.MP3 Enola Gay Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3399044 212 3 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/03ENOLAG.MP3 Souvenir Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3496845 218 4 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/04SOUVEN.MP3 Joan Of Arc Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3651911 228 5 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/05JOANOF.MP3 Maid Of Orleans Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 4032816 252 6 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/06MAIDOF.MP3 Telegraph Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3582110 223 7 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/07TELEGR.MP3 Tesla Girls Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3423706 213 8 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/08TESLAG.MP3 Locomotion Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3742607 233 9 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/09LOCOMO.MP3 Talking Load And Clear Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3763937 235 10 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/10TALKIN.MP3 So In Love Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3358645 209 11 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/11SOINLO.MP3 Secret Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3794432 237 12 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/12SECRET.MP3 If You Leave Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 4335695 270 13 2002-02-26 01:28:23-08 2002-02-26 01:28:23-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/13IFYOUL.MP3 Forever Live And Die Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3438485 214 14 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/14FOREVE.MP3 Dreaming Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3812405 238 15 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/15DREAMI.MP3 Genetic Engineering Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 3454227 215 16 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/16GENETI.MP3 We Love You (12-inch version) Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 5996821 374 17 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/17WELOVE.MP3 La Femme Accident (12-inch version) Orchestral Manoeuvers in the Dark The Best Of OMD Alternative 6054784 378 18 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/ORCHESTRALM/THEBESTOFOM/18LAFEMM.MP3 Shine On You Crazy Diamond (Parts I II III IV V) Pink Floyd Wish You Were Here Rock 13055080 815 1 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/01SHINEO.MP3 Welcome To The Machine Pink Floyd Wish You Were Here Rock 7195687 449 2 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/02WELCOM.MP3 Have A Cigar Pink Floyd Wish You Were Here Rock 4919472 307 3 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/03HAVEAC.MP3 Wish You Were Here Pink Floyd Wish You Were Here Rock 5322530 332 4 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/04WISHYO.MP3 Shine On You Crazy Diamond (Parts VI VII VIII IX) Pink Floyd Wish You Were Here Rock 11981344 748 5 2002-02-26 01:28:24-08 2002-02-26 01:28:24-08 128 44100 MPEG AUDIO FILE MP3029/PINKFLOYD/WISHYOUWERE/05SHINEO.MP3 Old devil moon Tony Bennett Unplugged Jazz 2384742 149 1 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/01OLDDEV.MP3 Speak low Tony Bennett Unplugged Jazz 3043067 190 2 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/02SPEAKL.MP3 It had to be you Tony Bennett Unplugged Jazz 3089494 193 3 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/03ITHADT.MP3 I love a piano Tony Bennett Unplugged Jazz 1866517 116 4 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/04ILOVEA.MP3 It amazes me Tony Bennett Unplugged Jazz 3009215 188 5 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/05ITAMAZ.MP3 The girl I love Tony Bennett Unplugged Jazz 3837055 239 6 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/06THEGIR.MP3 Fly me to the moon Tony Bennett Unplugged Jazz 2836691 177 7 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/07FLYMET.MP3 You're all the world to me Tony Bennett Unplugged Jazz 2172915 135 8 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/08YOUREA.MP3 Rags to riches Tony Bennett Unplugged Jazz 1342397 83 9 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/09RAGSTO.MP3 When Joanna loved me Tony Bennett Unplugged Jazz 3136163 196 10 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/10WHENJO.MP3 The good life/I wanna be around Tony Bennett Unplugged Jazz 3223288 201 11 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/11THEGOO.MP3 I left my hart in San Francisco Tony Bennett Unplugged Jazz 2487284 155 12 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/12ILEFTM.MP3 Steppin'out with my baby Tony Bennett Unplugged Jazz 3077635 192 13 2002-02-26 01:28:25-08 2002-02-26 01:28:25-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/13STEPPI.MP3 Moonglow Tony Bennett Unplugged Jazz 4371620 273 14 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/14MOONGL.MP3 They can't take that away from me Tony Bennett Unplugged Jazz 3306055 206 15 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/15THEYCA.MP3 A foggy day Tony Bennett Unplugged Jazz 2167725 135 16 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/16AFOGGY.MP3 All of you Tony Bennett Unplugged Jazz 2487273 155 17 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/17ALLOFY.MP3 Body and soul Tony Bennett Unplugged Jazz 3735719 233 18 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/18BODYAN.MP3 It don't mean a thing if it ain't got that swing Tony Bennett Unplugged Jazz 3484151 217 19 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/19ITDONT.MP3 Autumn leaves/Indian summer Tony Bennett Unplugged Jazz 5596816 349 20 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/TONYBENNETT/UNPLUGGED/20AUTUMN.MP3 Let's Make Music Grey Delisle Jump Start Baby N/A 246178 15 10 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/10LETSMA.MP3 The Mulberry Bush Grey Delisle Jump Start Baby N/A 427991 26 11 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/11THEMUL.MP3 Skip to My Lou Grey Delisle Jump Start Baby N/A 429661 26 12 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/12SKIPTO.MP3 London Bridge Grey Delisle Jump Start Baby N/A 400823 25 13 2002-02-26 01:28:26-08 2002-02-26 01:28:26-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/13LONDON.MP3 Old MacDonald Had a Farm Grey Delisle Jump Start Baby N/A 461009 28 14 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/14OLDMAC.MP3 Mary Had a Little Lamb Grey Delisle Jump Start Baby N/A 479818 29 15 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/15MARYHA.MP3 Hey Diddle Diddle Grey Delisle Jump Start Baby N/A 282541 17 16 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/16HEYDID.MP3 Sing a Song of Sixpense Grey Delisle Jump Start Baby N/A 369476 23 17 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/17SINGAS.MP3 Baa Baa Black Sheep Grey Delisle Jump Start Baby N/A 478982 29 18 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/18BAABAA.MP3 Twinkle Twinkle Little Star Grey Delisle Jump Start Baby N/A 525375 32 19 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/19TWINKL.MP3 Itsy Bitsy Spider Grey Delisle Jump Start Baby N/A 374910 23 20 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/20ITSYBI.MP3 Barnyard Animals Grey Delisle Jump Start Baby N/A 324337 20 21 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/21BARNYA.MP3 Cow Grey Delisle Jump Start Baby N/A 271256 16 22 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/22COW.MP3 Pig Grey Delisle Jump Start Baby N/A 164258 10 23 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/23PIG.MP3 Horse Grey Delisle Jump Start Baby N/A 216921 13 24 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/24HORSE.MP3 Cat Grey Delisle Jump Start Baby N/A 279197 17 25 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/25CAT.MP3 Rooster Grey Delisle Jump Start Baby N/A 172200 10 26 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/26ROOSTE.MP3 Dog Grey Delisle Jump Start Baby N/A 234476 14 27 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/27DOG.MP3 Sheep Grey Delisle Jump Start Baby N/A 291736 18 28 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/28SHEEP.MP3 Duck Grey Delisle Jump Start Baby N/A 189754 11 29 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/29DUCK.MP3 Frog Grey Delisle Jump Start Baby N/A 186410 11 30 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/30FROG.MP3 Owl Grey Delisle Jump Start Baby N/A 180141 11 31 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/31OWL.MP3 Goat Grey Delisle Jump Start Baby N/A 274182 17 32 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/32GOAT.MP3 Donkey Grey Delisle Jump Start Baby N/A 234894 14 33 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3029/KNOWLEDGEAD/JUMPSTARTBA/33DONKEY.MP3 Part a: Saor / Free / Part b: News From Nowhere Afro Celt Sound System Volume 1 Sound Magic Ethnic 8049678 503 1 2002-02-26 01:28:27-08 2002-02-26 01:28:27-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/01PARTAS.MP3 Whirl-Y-Reel 1 (Beard and Sandals Mix) Afro Celt Sound System Volume 1 Sound Magic Ethnic 7081258 442 2 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/02WHIRLY.MP3 Inion / Daughter Afro Celt Sound System Volume 1 Sound Magic Ethnic 4120413 257 3 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/03INIOND.MP3 Part a: Sure-As-Not / Part b: Sure-As-Knot (Jungle Segue) Afro Celt Sound System Volume 1 Sound Magic Ethnic 9629156 601 4 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/04PARTAS.MP3 Nil Cead Againn Dul Abhaile / We Cannot Go Home Afro Celt Sound System Volume 1 Sound Magic Ethnic 7079177 442 5 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/05NILCEA.MP3 Dark Moon, High Tide (including Farewell to Eireann) Afro Celt Sound System Volume 1 Sound Magic Ethnic 4096625 256 6 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/06DARKMO.MP3 Whirl-Y-Reel 2 (Folk Police Mix) Afro Celt Sound System Volume 1 Sound Magic Ethnic 5279430 329 7 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/07WHIRLY.MP3 House Of The Ancestors Afro Celt Sound System Volume 1 Sound Magic Ethnic 7730750 483 8 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/08HOUSEO.MP3 Part a: Eistigh Liomsa Sealad / Listen To Me / Part b: Saor Reprise Afro Celt Sound System Volume 1 Sound Magic Ethnic 10461740 653 9 2002-02-26 01:28:28-08 2002-02-26 01:28:28-08 128 44100 MPEG AUDIO FILE MP3030/AFROCELTSOU/VOLUME1SOUN/09PARTAE.MP3 1B Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3875946 242 1 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/011B.MP3 Misty Moonlight Waltz Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4584406 286 2 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/02MISTYM.MP3 Hard Times Come Again No More Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3577968 223 3 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/03HARDTI.MP3 Indecision Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4297257 268 4 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/04INDECI.MP3 Limerock Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 2376314 148 5 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/05LIMERO.MP3 Benjamin Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3391537 211 6 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/06BENJAM.MP3 Fisher's Hornpipe Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3589659 224 7 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/07FISHER.MP3 Duet for Cello and Bass Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 5663578 353 8 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/08DUETFO.MP3 Emily's Reel Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 2693549 168 9 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/09EMILYS.MP3 Cloverfoot Reel Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4237078 264 10 2002-02-26 01:28:29-08 2002-02-26 01:28:29-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/10CLOVER.MP3 Poem for Carlita Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 7261013 453 11 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/11POEMFO.MP3 Caprice for Three Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 3648175 228 12 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/12CAPRIC.MP3 Second Time Around Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4345750 271 13 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/13SECOND.MP3 Slumber My Darling Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 4682207 292 14 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/14SLUMBE.MP3 Vistas Yo-Yo Ma Edgar Meyer Mark O'Connor Appalachian Journey Classical 9558525 597 15 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/YOYOMAEDGAR/APPALACHIAN/15VISTAS.MP3 Aching To Sneeze Crash Test Dummies Give Yourself a Hand Rock 3250060 203 11 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/ACHINGTO.MP3 A Little Something Crash Test Dummies Give Yourself a Hand Rock 4412544 275 9 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/ALITTLES.MP3 Get You In The Morning Crash Test Dummies Give Yourself a Hand Rock 2829180 176 6 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/GETYOUIN.MP3 Give Yourself A Hand Crash Test Dummies Give Yourself a Hand Rock 2882677 180 5 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/GIVEYOUR.MP3 I Love Your Goo Crash Test Dummies Give Yourself a Hand Rock 3382552 211 10 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/ILOVEYOU.MP3 I Want To Par-tay! Crash Test Dummies Give Yourself a Hand Rock 2391155 149 4 2002-02-26 01:28:30-08 2002-02-26 01:28:30-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/IWANTTOP.MP3 Just Chillin' Crash Test Dummies Give Yourself a Hand Rock 3396341 212 3 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/JUSTCHIL.MP3 Just Shoot Me, Baby Crash Test Dummies Give Yourself a Hand Rock 3431456 214 8 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/JUSTSHOO.MP3 Keep A Lid On Things Crash Test Dummies Give Yourself a Hand Rock 2636081 164 1 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/KEEPALID.MP3 Pissed With Me Crash Test Dummies Give Yourself a Hand Rock 3026867 189 7 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/PISSEDWI.MP3 Playing Dead Crash Test Dummies Give Yourself a Hand Rock 3126758 195 12 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/CRASHTESTDU/GIVEYOURSEL/PLAYINGD.MP3 almost gothic Steely Dan Two Against Nature Pop 3998750 249 5 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/ALMOSTGO.MP3 cousin dupree Steely Dan Two Against Nature Pop 5254159 328 7 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/COUSINDU.MP3 gaslighting abbie Steely Dan Two Against Nature Pop 5662091 353 1 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/GASLIGHT.MP3 jack of speed Steely Dan Two Against Nature Pop 6042848 377 6 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/JACKOFSP.MP3 janie runaway Steely Dan Two Against Nature Pop 3987325 249 4 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/JANIERUN.MP3 negative girl Steely Dan Two Against Nature Pop 5358231 334 8 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/NEGATIVE.MP3 two against nature Steely Dan Two Against Nature Pop 6047450 377 3 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/TWOAGAIN.MP3 west of hollywood Steely Dan Two Against Nature Pop 8023281 501 9 2002-02-26 01:28:31-08 2002-02-26 01:28:31-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/WESTOFHO.MP3 what a shame about me Steely Dan Two Against Nature Pop 5079878 317 2 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/STEELYDAN/TWOAGAINSTN/WHATASHA.MP3 And She Was Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3508355 219 3 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/ANDSHEWA.MP3 Blind Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4801933 300 10 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/BLIND.MP3 City Of Dreams Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4930673 308 8 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/CITYOFDR.MP3 Gangster Of Love Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4305827 269 13 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/GANGSTER.MP3 Girlfriend Is Better (Live) Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3471173 216 2 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/GIRLFRIE.MP3 Life During Wartime (Live) Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4872587 304 1 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/LIFEDURI.MP3 Lifetime Piling Up Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3734061 233 14 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/LIFETIME.MP3 Love For Sale Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4361969 272 7 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/LOVEFORS.MP3 Mr. Jones Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4167893 260 9 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/MRJONES.MP3 (Nothing But) Flowers Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 5352401 334 11 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/NOTHINGB.MP3 Popsicle Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 5117495 319 15 2002-02-26 01:28:32-08 2002-02-26 01:28:32-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/POPSICLE.MP3 Road To Nowhere Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 4167063 260 5 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/ROADTONO.MP3 Sex And Violins Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 5092425 318 12 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/SEXANDVI.MP3 Stay Up Late Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3731546 233 4 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/STAYUPLA.MP3 Wild Wild Life Talking Heads Sand In The Vaseline 1976-1992 (Disc 2) Rock 3521315 220 6 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/TALKINGHEAD/SANDINTHEVA/WILDWILD.MP3 Exodus U2 The New Year's Concert Rock 874774 54 5 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/EXODUS.MP3 Intro U2 The New Year's Concert Rock 2815774 175 1 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/INTRO.MP3 I Still Haven't Found What I'm U2 The New Year's Concert Rock 3965604 247 4 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/ISTILLHA.MP3 I Will Follow U2 The New Year's Concert Rock 4272787 267 3 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/IWILLFOL.MP3 MLK U2 The New Year's Concert Rock 1800968 112 6 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/MLK.MP3 One The Ill U2 The New Year's Concert Rock 4676534 292 7 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/ONETHEIL.MP3 Where The Streets Have No Name U2 The New Year's Concert Rock 4367681 272 2 2002-02-26 01:28:33-08 2002-02-26 01:28:33-08 128 44100 MPEG AUDIO FILE MP3030/U2/THENEWYEARS/WHERETHE.MP3 Descramble N/A N/A Comedy 6307140 450 0 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 112 44100 MPEG AUDIO FILE MP3030/VARIOUS/DESCRAMB.MP3 Arriving Ufo Yes Tormato Rock 5814623 363 5 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/ARRIVING.MP3 Circus Of Heaven Yes Tormato Rock 4309697 269 6 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/CIRCUSOF.MP3 Don't Kill The Whale Yes Tormato Rock 3780843 236 2 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/DONTKILL.MP3 Future Times - Rejoice Yes Tormato Rock 6478770 404 1 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/FUTURETI.MP3 Madrigal Yes Tormato Rock 2296240 143 3 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/MADRIGAL.MP3 On The Silent Wings Of Freedom Yes Tormato Rock 7466415 466 8 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/ONTHESIL.MP3 Onward Yes Tormato Rock 3875287 242 7 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/ONWARD.MP3 Release, Release Yes Tormato Rock 5547133 346 4 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/YES/TORMATO/RELEASER.MP3 A Certain Slant Of Light The Tea Party Splendor Solis Rock 4808625 300 3 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/ACERTAIN.MP3 Dreams Of Reason The Tea Party Splendor Solis Rock 6058732 378 8 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/DREAMSOF.MP3 Haze On The Hills The Tea Party Splendor Solis Rock 2297103 143 10 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/HAZEONTH.MP3 In This Time The Tea Party Splendor Solis Rock 4743551 296 7 2002-02-26 01:28:34-08 2002-02-26 01:28:34-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/INTHISTI.MP3 Midsummer Day The Tea Party Splendor Solis Rock 5719486 357 2 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/MIDSUMME.MP3 Raven Skies The Tea Party Splendor Solis Rock 5063149 316 9 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/RAVENSKI.MP3 Save Me The Tea Party Splendor Solis Rock 6068476 379 5 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/SAVEME.MP3 Sun Going Down The Tea Party Splendor Solis Rock 6293205 393 6 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/SUNGOING.MP3 The Majestic Song The Tea Party Splendor Solis Rock 4430924 276 11 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/THEMAJES.MP3 The River The Tea Party Splendor Solis Rock 5481106 342 1 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/THERIVER.MP3 Winter Solstice The Tea Party Splendor Solis Rock 2628542 164 4 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/THETEAPARTY/SPLENDORSOL/WINTERSO.MP3 Angry Chair Alice in Chains Dirt Grunge 4591616 286 6 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/ALICEINCHAI/06ANG1.MP3 Them Bones Alice in Chains Dirt Grunge 4200722 150 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 224 44100 MPEG AUDIO FILE MP3030/ALICEINCHAI/ALICEI1.MP3 Je T'Aime, Moi Non Plus (W/ Jane Birkin) Serge Gainsbourg N/A Rock 4069465 254 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/JANEBI1.MP3 Soixante neuf annee erotique Serge Gainsbourg N/A Rock 3205248 200 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SE20141.MP3 La javanaise Serge Gainsbourg N/A Rock 2360761 147 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SE3D171.MP3 La chanson de Prevert Serge Gainsbourg De Gainsbourg EGainsbarre Rock 2895902 180 0 2002-02-26 01:28:35-08 2002-02-26 01:28:35-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SE44751.MP3 Black Trombone Serge Gainsbourg N/A Rock 2528363 158 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG1.MP3 Dieu est un fumeur de havane Serge Gainsbourg N/A Rock 3702784 231 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG2.MP3 Je suis venu te dire que je m' Serge Gainsbourg N/A Rock 4076156 203 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 160 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG3.MP3 Serge Gainsbourg - Requiem Pour Un Con Serge Gainsbourg N/A Rock 2791424 174 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/SERGEG4.MP3 Baudelaire Serge Gainsbourg Bonnie and Clyde (1967) Other 2352728 147 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/BONNIEANDCL/BAUDELAI.MP3 Pauvre Lola Serge Gainsbourg Bonnie and Clyde (1967) Other 2256180 141 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/BONNIEANDCL/PAUVRELO.MP3 Aux enfants de la chance Serge Gainsbourg De Gainsbourg EGainsbarre Other 3944315 246 1 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/DEGAINSBOUR/AUXENFAN.MP3 Le poinonneur des Lilas Serge Gainsbourg De Gainsbourg EGainsbarre Other 2613939 163 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/DEGAINSBOUR/LEPOINON.MP3 Qui est in qui est out Serge Gainsbourg De Gainsbourg EGainsbarre Other 2114894 132 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/DEGAINSBOUR/QUIESTIN.MP3 Contact (John Zorn) Serge Gainsbourg Great Jewish Music Other 2244881 140 16 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/GREATJEWISH/CONTACTJ.MP3 Ford Mustang (Mike Patton) Serge Gainsbourg Great Jewish Music Other 2575063 160 0 2002-02-26 01:28:36-08 2002-02-26 01:28:36-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/GREATJEWISH/FORDMUST.MP3 Couleur cafE(live) Serge Gainsbourg N/A Other 4236020 264 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/NONDFINI/COULEURC.MP3 Aux armes et caetera Serge Gainsbourg N/A Other 2970847 185 2 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/AUXARMES.MP3 Bonnie and Clyde Serge Gainsbourg N/A Other 4041670 252 1 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/BONNIEAN.MP3 Cha cha cha du loup Serge Gainsbourg N/A Other 1872438 117 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/CHACHACH.MP3 Charleston des dmnageurs de piano Serge Gainsbourg N/A Other 2332209 145 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/CHARLEST.MP3 Chez max, coiffeur pour homme Serge Gainsbourg N/A Other 1918423 119 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/CHEZMAXC.MP3 Docteur Jekyll Et Monsieur Hyde Serge Gainsbourg N/A Other 1901289 118 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/DOCTEURJ.MP3 Douzes Belles Dans La Peau Serge Gainsbourg N/A Other 1854472 115 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/DOUZESBE.MP3 Est-ce Si Bon? Serge Gainsbourg N/A Other 3140109 196 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/ESTCEEST.MP3 Flash Forward Serge Gainsbourg N/A Other 2521940 157 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/FLASHFOR.MP3 Harley David (son of a bitch) Serge Gainsbourg N/A Other 2858413 178 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/HARLEYDA.MP3 Je t'Aime Moi Non Plus Serge Gainsbourg N/A Other 4136970 258 0 2002-02-26 01:28:37-08 2002-02-26 01:28:37-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/JETAIMEM.MP3 La Ballade de Mlody Nelson Serge Gainsbourg N/A Other 1929706 120 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LABALLAD.MP3 La Chanson de Prvert (Les Feuilles Mortes) Serge Gainsbourg N/A Other 2890610 180 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LACHANSO.MP3 La Jambe De Bois "Friedland" Serge Gainsbourg N/A Other 2484339 155 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LAJAMBED.MP3 L'Ami Caouette Serge Gainsbourg N/A Other 3038957 189 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LAMICAOU.MP3 La Poupe Qui Fait Serge Gainsbourg N/A Other 2924858 182 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LAPOUPEQ.MP3 L'eau a la bouche (Brigitte Bardo) Serge Gainsbourg N/A Other 2363973 147 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LEAUALAB.MP3 Le Chanson de Slogan Serge Gainsbourg N/A Other 3629134 226 15 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LECHANSO.MP3 Lemon Incest Serge Gainsbourg N/A Other 5019663 313 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LEMONINC.MP3 Love On The Beat Serge Gainsbourg N/A Other 7784885 486 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/LOVEONTH.MP3 Marilou Reggae Serge Gainsbourg N/A Other 2088935 130 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/MARILOUR.MP3 Mister Iceberg Serge Gainsbourg N/A Other 3436018 214 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/MISTERIC.MP3 My Lady Heroine Serge Gainsbourg N/A Other 3067867 191 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/MYLADYHE.MP3 Nazi Rock Serge Gainsbourg N/A Other 3041041 190 0 2002-02-26 01:28:38-08 2002-02-26 01:28:38-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/NAZIROCK.MP3 No Comment Serge Gainsbourg N/A Other 4965326 310 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/NOCOMMEN.MP3 Overseas Telegram Serge Gainsbourg N/A Other 3452739 215 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/OVERSEAS.MP3 Panpan Culcul Serge Gainsbourg N/A Other 2636461 164 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/PANPANCU.MP3 Par Hasard Et Pas Rase Serge Gainsbourg N/A Other 2404085 150 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/PARHASAR.MP3 Sea sex and sun Serge Gainsbourg N/A Other 3532149 220 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SEASEXAN.MP3 Sensuelle et sans suite Serge Gainsbourg N/A Other 2938655 183 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SENSUELL.MP3 Sex Shop Serge Gainsbourg N/A Other 2772711 173 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SEXSHOP.MP3 Sois belle et tais toi Serge Gainsbourg N/A Other 1934297 120 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SOISBELL.MP3 Sorry Angel Serge Gainsbourg N/A Other 3807579 237 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SORRYANG.MP3 Sous Le Soleil Exactement Serge Gainsbourg N/A Other 2689554 168 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/SOUSLESO.MP3 Vieille Canaille (Eddy Mitchell) Serge Gainsbourg N/A Other 2754762 172 0 2002-02-26 01:28:39-08 2002-02-26 01:28:39-08 128 44100 MPEG AUDIO FILE MP3030/SERGEGAINSB/UNKNOWNALBU/VIEILLEC.MP3 Come To Me (Hueristix Mix) Bjork N/A Drum & Bass 5006833 312 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/BJORK/UNKNOWNALBU/COMETOME.MP3 Walking Wounded (Omni Trio remix) Everything but the Girl N/A Trip-Hop 6462068 403 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/EVERYTHINGB/UNKNOWNALBU/WALKINGW.MP3 Meltdown Omni Trio N/A Drum & Bass 7640263 477 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/MELTDOWN#2.MP3 Meltdown Omni Trio N/A Drum & Bass 2858456 178 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/MELTDOWN.MP3 Not Available Omni Trio N/A Drum & Bass 4271991 266 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/NOTAVAIL.MP3 Nu Birth Of Cool Omni Trio N/A Drum & Bass 4166132 260 0 2002-02-26 01:28:41-08 2002-02-26 01:28:41-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/NUBIRTHO.MP3 Renegade Snares Omni Trio N/A Drum & Bass 5455148 340 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/OMNITRIO/UNKNOWNALBU/RENEGADE.MP3 American Pie Madonna N/A Pop 4372713 273 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/AMERICAN.MP3 Beautiful Stranger Madonna N/A Pop 4187936 261 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/BEAUTIFU.MP3 Hey Mr. DJ (Remix) Madonna N/A Pop 3483242 217 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/HEYMRDJR.MP3 Ray Of Light Madonna N/A Pop 5131682 320 0 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MADONNA/UNKNOWNALBU/RAYOFLIG.MP3 Gasoline Moist Creature Alternative 3097904 193 12 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/GASOLINE.MP3 Leave It Alone. Moist Creature Alternative 4245208 265 4 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/LEAVEITA.MP3 Ophelia Moist Creature Alternative 3712303 232 11 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/OPHELIA.MP3 Resurrection Moist Creature Alternative 3826007 239 3 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/RESURREC.MP3 Tangerine Moist Creature Alternative 3912088 244 8 2002-02-26 01:28:42-08 2002-02-26 01:28:42-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/CREATURE/TANGERIN.MP3 Breathe (TLA Mix) Moist Mercedes Five and Dime Alternative 4524435 282 3 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/BREATHET.MP3 Comes and Goes Moist Mercedes Five and Dime Alternative 3746595 234 5 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/COMESAND.MP3 Place Moist Mercedes Five and Dime Alternative 3814297 238 11 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/PLACE.MP3 Underground Moist Mercedes Five and Dime Alternative 4706227 294 1 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/MERCEDESFIV/UNDERGRO.MP3 Believe Me Moist Silver Alternative 3751606 234 2 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/BELIEVEM.MP3 Break Her Down Moist Silver Alternative 4302047 268 6 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/BREAKHER.MP3 Machine Punch Through Moist Silver Alternative 4273633 267 9 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/MACHINEP.MP3 Push Moist Silver Alternative 3680532 230 1 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/PUSH.MP3 Silver Moist Silver Alternative 4082611 255 4 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/SILVER.MP3 This Shrieking Love Moist Silver Alternative 5058977 316 10 2002-02-26 01:28:43-08 2002-02-26 01:28:43-08 128 44100 MPEG AUDIO FILE MP3033/MOIST/SILVER/THISSHRI.MP3 Moist Vagina Nirvana N/A Alternative 3395047 212 0 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/UNKNOWNALBU/MOISTVAG.MP3 All Apologies Nirvana In Utero Alternative 3680061 230 12 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/ALLAPOLO.MP3 Dumb Nirvana In Utero Alternative 2436623 152 6 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/DUMB.MP3 Frances Farmer Will Have Her Revenge On Settle Nirvana In Utero Alternative 3996070 249 5 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/FRANCESF.MP3 Heart-Shaped Box Nirvana In Utero Alternative 4507622 281 3 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/HEARTSHA.MP3 Milk It Nirvana In Utero Alternative 3759466 234 8 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/MILKIT.MP3 Pennyroyal Tea Nirvana In Utero Alternative 3478187 217 9 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/PENNYROY.MP3 Radio Friendly Unit Shifter Nirvana In Utero Alternative 4661443 291 10 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/RADIOFRI.MP3 Rape Me Nirvana In Utero Alternative 2720002 170 4 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/RAPEME.MP3 Scentless Apprentice Nirvana In Utero Alternative 3646212 227 2 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/SCENTLES.MP3 Serve The Servants Nirvana In Utero Alternative 3473175 217 1 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/SERVETHE.MP3 tourette's Nirvana In Utero Alternative 1525061 95 11 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/TOURETTE.MP3 Very Ape Nirvana In Utero Alternative 1853992 115 7 2002-02-26 01:28:44-08 2002-02-26 01:28:44-08 128 44100 MPEG AUDIO FILE MP3033/NIRVANA/INUTERO/VERYAPE.MP3 Moist Vagina (Nirvana Cover) Sonic Youth N/A Alternative 2911070 181 0 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/SONICYOUTH/UNKNOWNALBU/MOISTVAG.MP3 Aerial Tour (Instrumental) The Beatles Anthology Plus Rock 2019598 126 8 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/AERIALTO.MP3 Back In The USSR The Beatles Anthology Plus Rock 2846730 177 13 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/BACKINTH.MP3 Christmas Time Is Here Again The Beatles Anthology Plus Rock 2947053 184 10 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/CHRISTMA.MP3 Get Back (Rehearsal) The Beatles Anthology Plus Rock 2018339 126 20 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/GETBACKR.MP3 Goodbye The Beatles Anthology Plus Rock 2312986 144 18 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/GOODBYE.MP3 Good Morning, Good Morning The Beatles Anthology Plus Rock 1069995 66 5 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/GOODMORN.MP3 Happiness Is A Warm Gun (Studio) The Beatles Anthology Plus Rock 2614361 163 16 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/HAPPINES.MP3 Heather The Beatles Anthology Plus Rock 1789703 111 17 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/HEATHER.MP3 Here, There And Everywhere The Beatles Anthology Plus Rock 2318439 144 2 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/HERETHER.MP3 It's All Too Much The Beatles Anthology Plus Rock 7854299 490 6 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/ITSALLTO.MP3 I Want You The Beatles Anthology Plus Rock 4384396 274 23 2002-02-26 01:28:45-08 2002-02-26 01:28:45-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/IWANTYOU.MP3 Lady Madonna (Demo) The Beatles Anthology Plus Rock 1060793 66 9 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/LADYMADO.MP3 Let It Be The Beatles Anthology Plus Rock 4617633 288 22 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/LETITBES.MP3 Not Guilty (Demo) The Beatles Anthology Plus Rock 3048606 190 14 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/NOTGUILT.MP3 Revolution The Beatles Anthology Plus Rock 3922133 245 12 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/REVOLUTI.MP3 Strawberry Fields Forever (Orchestral) The Beatles Anthology Plus Rock 3365857 210 4 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/STRAWBER.MP3 Suzy Parker The Beatles Anthology Plus Rock 1884583 117 21 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/SUZYPARK.MP3 The End (Instrumental) The Beatles Anthology Plus Rock 2382802 148 24 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/THEENDIN.MP3 The Inner Light (Instrumental) The Beatles Anthology Plus Rock 2417500 151 11 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/THEINNER.MP3 Two Of Us (Rehearsal) The Beatles Anthology Plus Rock 1928897 120 19 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/TWOOFUSR.MP3 Weird Album The Beatles Anthology Plus Rock 4750958 296 15 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/WEIRDALB.MP3 Yellow Submarine The Beatles Anthology Plus Rock 2714654 169 1 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/YELLOWSU.MP3 Yesterday (Live) The Beatles Anthology Plus Rock 2574220 160 3 2002-02-26 01:28:46-08 2002-02-26 01:28:46-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/YESTERDA.MP3 Your Mother Should Know The Beatles Anthology Plus Rock 2388653 149 7 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/THEBEATLES/ANTHOLOGYPL/YOURMOTH.MP3 All I Want Is You U2 N/A Pop 9470919 591 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/ALLIWANT.MP3 Even Better Than The Real Thin U2 N/A Pop 3544704 221 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/EVENBETT.MP3 Mysterious Ways U2 N/A Pop 3892012 243 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/MYSTERIO.MP3 Numb U2 N/A Pop 4210472 263 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/NUMB.MP3 One U2 N/A Pop 4416107 276 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/ONE.MP3 One U2 N/A Pop 5120786 320 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/ONE2.MP3 U2 - Unchained Melody U2 N/A Pop 4733774 295 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/U2UNCHAI.MP3 With or without you (Acoustic) U2 N/A Pop 5109946 319 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/WITHORW1.MP3 With Or Without You U2 N/A Pop 4737534 296 0 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/UNKNOWNALBU/WITHORW2.MP3 bullet the blue sky U2 The Joshua Tree Pop 4357175 272 4 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/BULLETTH.MP3 exit U2 The Joshua Tree Pop 4056217 253 10 2002-02-26 01:28:47-08 2002-02-26 01:28:47-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/EXIT.MP3 in god's country U2 The Joshua Tree Pop 2832457 177 7 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/INGODSCO.MP3 mothers of the disappeared U2 The Joshua Tree Pop 5015874 313 11 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/MOTHERSO.MP3 one tree hill U2 The Joshua Tree Pop 5174684 323 9 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/ONETREEH.MP3 red hill mining town U2 The Joshua Tree Pop 4698649 293 6 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/REDHILLM.MP3 running to stand still U2 The Joshua Tree Pop 4125629 257 5 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/RUNNINGT.MP3 trip through your wires U2 The Joshua Tree Pop 3400470 212 8 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/THEJOSHUATR/TRIPTHRO.MP3 Acrobat U2 Achtung Baby Rock 915270 57 11 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/ACROBAT.MP3 So Cruel U2 Achtung Baby Rock 5589713 349 6 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/SOCRUEL.MP3 The Fly U2 Achtung Baby Rock 4306995 269 7 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/THEFLY.MP3 Tryin' To Throw Your Arms Around The World U2 Achtung Baby Rock 3723559 232 9 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/TRYINTOT.MP3 Ultra Violet U2 Achtung Baby Rock 5292131 330 10 2002-02-26 01:28:48-08 2002-02-26 01:28:48-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/ULTRAVIO.MP3 Until The End Of The World U2 Achtung Baby Rock 4459151 278 4 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/UNTILTHE.MP3 Who's Gonna Ride Your Wild Horses U2 Achtung Baby Rock 5070632 316 5 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/WHOSGONN.MP3 Zoo Station U2 Achtung Baby Rock 4422774 276 1 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/U2/U2ACHTUNGBA/ZOOSTATI.MP3 Big Saddle Fila Brazillia Mess Trip-Hop 4774359 298 2 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/BIGSADDL.MP3 Blood Fila Brazillia Mess Trip-Hop 5341108 333 13 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/BLOOD.MP3 But Momma Fila Brazillia Mess Trip-Hop 4730890 295 5 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/BUTMOMMA.MP3 DP's R Us Fila Brazillia Mess Trip-Hop 2432182 152 10 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/DPSRUS.MP3 Hairy Insides Fila Brazillia Mess Trip-Hop 6563645 410 9 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/HAIRYINS.MP3 Half Man Half Granary Thorax Fila Brazillia Mess Trip-Hop 1597051 99 4 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/HALFMANH.MP3 Howard Dan Ryan Fila Brazillia Mess Trip-Hop 5344879 334 12 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/HOWARDDA.MP3 Laying Down the Law ofthe Land Fila Brazillia Mess Trip-Hop 4861731 303 6 2002-02-26 01:28:49-08 2002-02-26 01:28:49-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/LAYINGDO.MP3 On Yer Haunches Fila Brazillia Mess Trip-Hop 4664442 291 11 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/ONYERHAU.MP3 Soft Music Under Stars Fila Brazillia Mess Trip-Hop 9773163 610 8 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/SOFTMUSI.MP3 Space Hearse Fila Brazillia Mess Trip-Hop 5878609 367 3 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/SPACEHEA.MP3 The LastOfThe Red Hot Brethren Fila Brazillia Mess Trip-Hop 2162134 135 1 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/THELASTO.MP3 TheReturnOfThe RedHot Brethren Fila Brazillia Mess Trip-Hop 2137476 133 14 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/THERETUR.MP3 Wavy Gravy Fila Brazillia Mess Trip-Hop 4437066 277 7 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/FILABRAZILL/MESS/WAVYGRAV.MP3 The Chimney Song Bob Rivers Twisted Tunes Albums Comedy 2104872 131 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/BOBRIVER.MP3 Thank God I'm a Pubic Hair ( John Denver Parody) Bob Rivers Twisted Tunes Albums Comedy 920395 57 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/DRDEMENT.MP3 Take A Whack On The U.S. Side Bob Rivers Twisted Tunes Albums Comedy 2742246 171 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TAKEAWHA.MP3 Take Baseball And Shove It Bob Rivers Twisted Tunes Albums Comedy 1731618 108 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TAKEBASE.MP3 Take Some Lessons Bob Rivers Twisted Tunes Albums Comedy 2251967 140 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TAKESOME.MP3 Tanning Lotion Bob Rivers Twisted Tunes Albums Comedy 1633803 102 0 2002-02-26 01:28:50-08 2002-02-26 01:28:50-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TANNINGL.MP3 Teachers Bob Rivers Twisted Tunes Albums Comedy 2753927 172 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TEACHERS.MP3 Teddy The Red-Nosed Senator Bob Rivers Twisted Tunes Albums Comedy 1373009 85 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TEDDYTHE.MP3 That's The Sound Of Men Bob Rivers Twisted Tunes Albums Comedy 2295859 143 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THATSTHE.MP3 The Angel & Who Put The Stu Bob Rivers Twisted Tunes Albums Comedy 3286426 205 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEANGEL.MP3 The AOL Song Bob Rivers Twisted Tunes Albums Comedy 1765183 110 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 32000 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEAOLSO.MP3 The Day My Lemon Died Bob Rivers Twisted Tunes Albums Comedy 2497731 156 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEDAYMY.MP3 The Dot Coms They Are A Closin' Bob Rivers Twisted Tunes Albums Comedy 2124922 132 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEDOTCO.MP3 The Fondler Bob Rivers Twisted Tunes Albums Comedy 2022920 126 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEFONDL.MP3 The Frederick & Nelson Song Bob Rivers Twisted Tunes Albums Comedy 1741649 108 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEFREDE.MP3 The Handicap Can Bob Rivers Twisted Tunes Albums Comedy 1820633 113 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEHANDI.MP3 The Long And Boring Show Bob Rivers Twisted Tunes Albums Comedy 1778845 111 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THELONGA.MP3 Them Beans Bob Rivers Twisted Tunes Albums Comedy 1369231 85 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEMBEAN.MP3 The NAFTA Anthem Bob Rivers Twisted Tunes Albums Comedy 2191780 136 0 2002-02-26 01:28:51-08 2002-02-26 01:28:51-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THENAFTA.MP3 The No Smoking Song Bob Rivers Twisted Tunes Albums Comedy 2121984 132 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THENOSMO.MP3 The Ol' Man Is On The Commode Bob Rivers Twisted Tunes Albums Comedy 1651372 103 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEOLMAN.MP3 The Police Stopped My Car Bob Rivers Twisted Tunes Albums Comedy 1745409 109 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEPOLIC.MP3 There's Another Santa Claus.mp Bob Rivers Twisted Tunes Albums Comedy 1938929 121 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THERESAN.MP3 The Restroom Door Said, Gentlemen Bob Rivers Twisted Tunes Albums Comedy 1503837 93 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THERESTR.MP3 The Water Police Bob Rivers Twisted Tunes Albums Comedy 1913002 119 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEWATER.MP3 The What's It To Ya Chorus Bob Rivers Twisted Tunes Albums Comedy 2526591 157 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEWHATS.MP3 The Wreck of The Ship New Carissa Bob Rivers Twisted Tunes Albums Comedy 1730370 108 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEWRECK.MP3 They Call Him Vedder Bob Rivers Twisted Tunes Albums Comedy 1846132 115 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THEYCALL.MP3 This Ain't No Barney Bob Rivers Twisted Tunes Albums Comedy 2459696 153 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THISAINT.MP3 Three Inch Tool Bob Rivers Twisted Tunes Albums Comedy 2103874 131 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 32000 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/THREEINC.MP3 Ticket To The Eagles Bob Rivers Twisted Tunes Albums Comedy 2290005 143 0 2002-02-26 01:28:52-08 2002-02-26 01:28:52-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TICKETTO.MP3 Toy Sack Bob Rivers Twisted Tunes Albums Comedy 2461356 153 0 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TOYSACK.MP3 Trick Or Treatin' Blues Bob Rivers Twisted Tunes Albums Comedy 1587836 99 0 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/BOBRIVERS/TWISTEDTUNE/TRICKORT.MP3 Intro Offspring Conspiracy of One Rock 84178 5 1 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/01INTRO.MP3 Come Out Swinging Offspring Conspiracy of One Rock 2676791 167 2 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/02COMEOU.MP3 Original Prankster Offspring Conspiracy of One Rock 3536534 221 3 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/03ORIGIN.MP3 Want You Bad Offspring Conspiracy of One Rock 3242703 202 4 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/04WANTYO.MP3 Million Miles Away Offspring Conspiracy of One Rock 3517726 219 5 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/05MILLIO.MP3 Dammit, I Changed Again Offspring Conspiracy of One Rock 2703546 168 6 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/06DAMMIT.MP3 Living In Chaos Offspring Conspiracy of One Rock 3334239 208 7 2002-02-26 01:28:53-08 2002-02-26 01:28:53-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/07LIVING.MP3 Special Delivery Offspring Conspiracy of One Rock 2888277 180 8 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/08SPECIA.MP3 One Fine Day Offspring Conspiracy of One Rock 2643767 165 9 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/09ONEFIN.MP3 All Along Offspring Conspiracy of One Rock 1579224 98 10 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/10ALLALO.MP3 Denial, Revisited Offspring Conspiracy of One Rock 4365348 272 11 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/11DENIAL.MP3 Vultures Offspring Conspiracy of One Rock 3428275 214 12 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/12VULTUR.MP3 Conspiracy of One Offspring Conspiracy of One Rock 2193632 137 13 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/OFFSPRING/CONSPIRACYO/13CONSPI.MP3 Daddy's Getting Married Bif Naked Bif Naked Rock 3823851 238 3 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/DADDYSGE.MP3 Everything Bif Naked Bif Naked Rock 2936511 183 1 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/EVERYTHI.MP3 Make Like A Tree Bif Naked Bif Naked Rock 4347547 271 2 2002-02-26 01:28:54-08 2002-02-26 01:28:54-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/MAKELIKE.MP3 My Bike Bif Naked Bif Naked Rock 4446595 277 10 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/MYBIKE.MP3 My Whole Life Bif Naked Bif Naked Rock 3804197 237 8 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/MYWHOLEL.MP3 Never Alone Bif Naked Bif Naked Rock 3568048 223 5 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/NEVERALO.MP3 Over You Bif Naked Bif Naked Rock 4095510 255 6 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/OVERYOU.MP3 Succulent Bif Naked Bif Naked Rock 3021773 188 7 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/SUCCULEN.MP3 Tell On You Bif Naked Bif Naked Rock 3939614 246 4 2002-02-26 01:28:55-08 2002-02-26 01:28:55-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/TELLONYO.MP3 The Gross, Gross Man Bif Naked Bif Naked Rock 1298958 81 11 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/THEGROSS.MP3 The Letter Bif Naked Bif Naked Rock 4909696 306 9 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/BIFNAKED/BIFNAKED/THELETTE.MP3 Airbag Radiohead O.k. Computer Rock 4553595 284 1 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/AIRBAG.MP3 Climbing Up the Walls Radiohead O.k. Computer Rock 4566149 285 9 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/CLIMBING.MP3 Electioneering Radiohead O.k. Computer Rock 3693443 230 8 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/ELECTION.MP3 Exit Music (for a Film) Radiohead O.k. Computer Rock 4239724 264 4 2002-02-26 01:28:56-08 2002-02-26 01:28:56-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/EXITMUSI.MP3 Fitter Happier Radiohead O.k. Computer Rock 1880399 117 7 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/FITTERHA.MP3 Karma Police Radiohead O.k. Computer Rock 4189140 261 6 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/KARMAPOL.MP3 Let Down Radiohead O.k. Computer Rock 4791416 299 5 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/LETDOWN.MP3 Lucky Radiohead O.k. Computer Rock 4156952 259 11 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/LUCKY.MP3 No Surprises Radiohead O.k. Computer Rock 3659587 228 10 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/NOSURPRI.MP3 Paranoid Android Radiohead O.k. Computer Rock 6138924 383 2 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/PARANOID.MP3 Subterranean Homesick Alien Radiohead O.k. Computer Rock 4286540 267 3 2002-02-26 01:28:57-08 2002-02-26 01:28:57-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/SUBTERRA.MP3 The Tourist Radiohead O.k. Computer Rock 5195586 324 12 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/RADIOHEAD/OKCO/THETOURI.MP3 #1 Crush Garbage Music From The Motion Picture "Romeo + Juliet" Soundtrack 4586647 286 1 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/1CRUSH.MP3 Angel Gavin Friday Music From The Motion Picture "Romeo + Juliet" Soundtrack 4149045 259 3 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/ANGEL.MP3 Everybody's Free (To Feel Good) Quindon Traver Music From The Motion Picture "Romeo + Juliet" Soundtrack 1655529 103 9 2002-02-26 01:28:58-08 2002-02-26 01:28:58-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/EVERYBOD.MP3 Kissing You (Love Theme From Romeo + Juliet) Des'ree Music From The Motion Picture "Romeo + Juliet" Soundtrack 4768495 298 5 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/KISSINGY.MP3 Little Star Stina Nordenstam Music From The Motion Picture "Romeo + Juliet" Soundtrack 3512087 219 12 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/LITTLEST.MP3 Local God Everclear Music From The Motion Picture "Romeo + Juliet" Soundtrack 3777481 236 2 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/LOCALGOD.MP3 Lovefool The Cardigans Music From The Motion Picture "Romeo + Juliet" Soundtrack 3181056 198 7 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/LOVEFOOL.MP3 Pretty Piece Of Flesh One Inch Punch Music From The Motion Picture "Romeo + Juliet" Soundtrack 4689485 293 4 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/PRETTYPI.MP3 Talk Show Host Radiohead Music From The Motion Picture "Romeo + Juliet" Soundtrack 4118541 257 11 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/TALKSHOW.MP3 To You I Bestow Mundy Music From The Motion Picture "Romeo + Juliet" Soundtrack 3820533 238 10 2002-02-26 01:28:59-08 2002-02-26 01:28:59-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/TOYOUIBE.MP3 Whatever (I Had A Dream) Butthole Surfers Music From The Motion Picture "Romeo + Juliet" Soundtrack 3988990 249 6 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/WHATEVER.MP3 You And Me Song The Wannadles Music From The Motion Picture "Romeo + Juliet" Soundtrack 2771882 173 13 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/YOUANDME.MP3 Young Hearts Run Free Kym Mazelle Music From The Motion Picture "Romeo + Juliet" Soundtrack 4097233 256 8 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3033/VARIOUSARTI/ROMEOANDJUL/YOUNGHEA.MP3 Old MacDonald Had A Farm Baby Reflections If You're Happy and You Know It, Sing Along Kids 2804727 175 1 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/01OLDMAC.MP3 Pop Goes The Weasel / Two Green And Speckled Frogs Baby Reflections If You're Happy and You Know It, Sing Along Kids 3020421 188 2 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/02POPGOE.MP3 Alphabet Song / Baa, Baa, B;acl Sheep Baby Reflections If You're Happy and You Know It, Sing Along Kids 3796977 237 3 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/03ALPHAB.MP3 The Eensy, Weensy Spider Baby Reflections If You're Happy and You Know It, Sing Along Kids 1745202 109 4 2002-02-26 01:29:00-08 2002-02-26 01:29:00-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/04THEEEN.MP3 Head And Shoulders, knees And Toes Baby Reflections If You're Happy and You Know It, Sing Along Kids 2001839 125 5 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/05HEADAN.MP3 If You're Happy And you Know It Baby Reflections If You're Happy and You Know It, Sing Along Kids 2376745 148 6 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/06IFYOUR.MP3 Three Blind Mice Baby Reflections If You're Happy and You Know It, Sing Along Kids 4994827 312 7 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/07THREEB.MP3 B-I-N-G-O Baby Reflections If You're Happy and You Know It, Sing Along Kids 2217481 138 8 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/08BINGO.MP3 Down By The Bay Baby Reflections If You're Happy and You Know It, Sing Along Kids 5332953 333 9 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/09DOWNBY.MP3 It's Raining, It's Pouring Baby Reflections If You're Happy and You Know It, Sing Along Kids 2635877 164 10 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/10ITSRAI.MP3 London Bridge Baby Reflections If You're Happy and You Know It, Sing Along Kids 2833559 177 11 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/11LONDON.MP3 The Ants Go Marching Baby Reflections If You're Happy and You Know It, Sing Along Kids 3160828 197 12 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/12THEANT.MP3 There's A Hole In My Bucket Baby Reflections If You're Happy and You Know It, Sing Along Kids 3319659 207 13 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BABYREFLECT/IFYOUREHAPP/13THERES.MP3 Allegro con brio Beethoven Symphonies 1 & 3 Classical 15394297 962 5 2002-02-26 01:29:01-08 2002-02-26 01:29:01-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/ALLEGROC.MP3 Finale- Allegro motto Beethoven Symphonies 1 & 3 Classical 11056303 691 8 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/FINALEAL.MP3 Marcia funebre- Adagio assa Beethoven Symphonies 1 & 3 Classical 14048479 878 6 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/MARCIAFU.MP3 Scherzo- Allegro vivace Beethoven Symphonies 1 & 3 Classical 5456070 341 7 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONIES1/SCHERZOA.MP3 [6-1] Allegro ma non troppo Beethoven Symphony No6 Classical 10086625 630 5 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/61ALLEGR.MP3 [6-2] Adante molto messo Beethoven Symphony No6 Classical 11830766 739 6 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/62ADANTE.MP3 [6-3] Allegro Beethoven Symphony No6 Classical 4681563 292 7 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/63ALLEGR.MP3 [6-4] Allegro Beethoven Symphony No6 Classical 3614931 225 8 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/64ALLEGR.MP3 [6-5] Allegretto Beethoven Symphony No6 Classical 9462601 591 9 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO6/65ALLEGR.MP3 Allegro ma non troppo, un poco maestoso Beethoven Symphony No9 Classical 13416518 838 1 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO9/ALLEGROM.MP3 Molto vivace - Presto Beethoven Symphony No9 Classical 13067086 816 2 2002-02-26 01:29:02-08 2002-02-26 01:29:02-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVEN/SYMPHONYNO9/MOLTOVIV.MP3 Adagio motto - Allegro con Beethoven-Harnoncourt Symphonies 1 & 3 Classical 9121169 570 1 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/ADAGIOMO.MP3 Andante cantabile con moto Beethoven-Harnoncourt Symphonies 1 & 3 Classical 7459364 466 2 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/ANDANTEC.MP3 Finale- Adagio - Allegro mo Beethoven-Harnoncourt Symphonies 1 & 3 Classical 5424322 339 4 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/FINALEAD.MP3 Menuetto- Allegro motto e v Beethoven-Harnoncourt Symphonies 1 & 3 Classical 3893337 243 3 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BEETHOVENHA/SYMPHONIES1/MENUETTO.MP3 Beat Bowery Electric Beat Ambient 7016850 438 1 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/01BEAT.MP3 Empty Words Bowery Electric Beat Ambient 3641001 227 2 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/02EMPTYW.MP3 Without Stopping Bowery Electric Beat Ambient 5011912 313 3 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/03WITHOU.MP3 Under the Sun Bowery Electric Beat Ambient 3414887 213 4 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/04UNDERT.MP3 Fear of Flying Bowery Electric Beat Ambient 5429451 339 5 2002-02-26 01:29:03-08 2002-02-26 01:29:03-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/05FEAROF.MP3 Looped Bowery Electric Beat Ambient 2555556 159 6 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/06LOOPED.MP3 Black Light Bowery Electric Beat Ambient 6622304 413 7 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/07BLACKL.MP3 Inside Out Bowery Electric Beat Ambient 7028559 439 8 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/08INSIDE.MP3 Coming Down Bowery Electric Beat Ambient 4416315 276 9 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/09COMING.MP3 Postscript Bowery Electric Beat Ambient 16024296 1001 10 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/10POSTSC.MP3 Low Density Bowery Electric Beat Ambient 6969212 435 11 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/BOWERYELECT/BEAT/11LOWDEN.MP3 London Calling Clash London Calling Rock 3264059 204 1 2002-02-26 01:29:04-08 2002-02-26 01:29:04-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/01LONDON.MP3 Brand New Cadillac Clash London Calling Rock 2084582 130 2 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/02BRANDN.MP3 Jimmy Jazz Clash London Calling Rock 3795699 237 3 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/03JIMMYJ.MP3 Hateful Clash London Calling Rock 2658847 166 4 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/04HATEFU.MP3 Rudie Can't Fail Clash London Calling Rock 3390284 211 5 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/05RUDIEC.MP3 Spanish Bombs Clash London Calling Rock 3223516 201 6 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/06SPANIS.MP3 The Right Profile Clash London Calling Rock 3804065 237 7 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/07THERIG.MP3 Lost in the Supermarket Clash London Calling Rock 3682445 230 8 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/08LOSTIN.MP3 Clampdown Clash London Calling Rock 3715867 232 9 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/09CLAMPD.MP3 The Guns of Brixton Clash London Calling Rock 3088105 193 10 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/10THEGUN.MP3 Wrong 'Em Boyo Clash London Calling Rock 3091442 193 11 2002-02-26 01:29:05-08 2002-02-26 01:29:05-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/11WRONGE.MP3 Death or Glory Clash London Calling Rock 3797794 237 12 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/12DEATHO.MP3 Koka Kola Clash London Calling Rock 1752715 109 13 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/13KOKAKO.MP3 The Card Cheat Clash London Calling Rock 3728831 233 14 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/14THECAR.MP3 Lover's Rock Clash London Calling Rock 3937391 246 15 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/15LOVERS.MP3 Four Horsemen Clash London Calling Rock 2840667 177 16 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/16FOURHO.MP3 I'm Not Down Clash London Calling Rock 2994475 187 17 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/17IMNOTD.MP3 Revolution Rock Clash London Calling Rock 5406520 337 18 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/18REVOLU.MP3 Train in Vain Clash London Calling Rock 3090189 193 19 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CLASH/LONDONCALLI/19TRAINI.MP3 Sacrifice Contention House of Contention Rock 3953237 247 1 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/01SACRIF.MP3 Kitchen Window Contention House of Contention Rock 3960348 247 2 2002-02-26 01:29:06-08 2002-02-26 01:29:06-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/02KITCHE.MP3 Loadsock Contention House of Contention Rock 1876815 117 3 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/03LOADSO.MP3 The Bus Song Contention House of Contention Rock 4528352 283 4 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/04THEBUS.MP3 Tom Caruthers Shoes Contention House of Contention Rock 6343138 396 5 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/05TOMCAR.MP3 Mythical Proportions Contention House of Contention Rock 3978744 248 6 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/06MYTHIC.MP3 New House Contention House of Contention Rock 2425179 151 7 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/07NEWHOU.MP3 Take Time Contention House of Contention Rock 3669443 229 8 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/08TAKETI.MP3 Caps & Gown Contention House of Contention Rock 4378722 273 9 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/09CAPSGO.MP3 These Days Contention House of Contention Rock 4122932 257 10 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/10THESED.MP3 last Trip Home Contention House of Contention Rock 3703305 231 11 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/11LASTTR.MP3 Desist Contention House of Contention Rock 3976642 248 12 2002-02-26 01:29:07-08 2002-02-26 01:29:07-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/12DESIST.MP3 Bye Bye Babe Contention House of Contention Rock 3299136 206 13 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/CONTENTION/HOUSEOFCONT/13BYEBYE.MP3 Angels Weep Enigma ENIGMA & D-Emotion Project New Age 5389611 336 11 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/ANGELSWE.MP3 Beyond the Invisible (radio edit) Enigma ENIGMA & D-Emotion Project New Age 4355184 272 14 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/BEYONDTH.MP3 Brazil Enigma ENIGMA & D-Emotion Project New Age 4126532 257 5 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/BRAZIL.MP3 Cang Ding Enigma ENIGMA & D-Emotion Project New Age 4572080 285 1 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/CANGDING.MP3 Close to Heaven Enigma ENIGMA & D-Emotion Project New Age 3716105 232 6 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/CLOSETOH.MP3 Evolution Enigma ENIGMA & D-Emotion Project New Age 4985442 311 12 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/EVOLUTIO.MP3 Flatlands Enigma ENIGMA & D-Emotion Project New Age 6676504 417 3 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/FLATLAND.MP3 Indian Spirits Reprise Enigma ENIGMA & D-Emotion Project New Age 3380492 211 10 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/INDIANSP.MP3 June Enigma ENIGMA & D-Emotion Project New Age 4822014 301 4 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/JUNE.MP3 November Enigma ENIGMA & D-Emotion Project New Age 4771445 298 8 2002-02-26 01:29:08-08 2002-02-26 01:29:08-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/NOVEMBER.MP3 Paradox Enigma ENIGMA & D-Emotion Project New Age 4590051 286 13 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/PARADOX.MP3 Planinata Enigma ENIGMA & D-Emotion Project New Age 3306080 206 2 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/PLANINAT.MP3 Return to Innocence (long) Enigma ENIGMA & D-Emotion Project New Age 6819045 426 9 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/RETURNTO.MP3 Sunless Sea Enigma ENIGMA & D-Emotion Project New Age 3846923 240 7 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/ENIGMA/ENIGMADEMOT/SUNLESSS.MP3 Alla breve Rachmaninoff Concerto No3 Classical 5218656 326 3 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/CONCERTONO3/ALLABREV.MP3 Allegro Ma Non Tanto Rachmaninoff Concerto No3 Classical 16854216 1053 1 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/CONCERTONO3/ALLEGROM.MP3 Intermezzo-Adagio Rachmaninoff Concerto No3 Classical 20047421 1252 2 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/CONCERTONO3/INTERMEZ.MP3 Sonata No. 2 the B flat m.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 4768956 298 10 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/BFLATNO3.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 4452558 278 5 2002-02-26 01:29:09-08 2002-02-26 01:29:09-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/FOUREL.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 2748540 171 4 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/LUDEIN.MP3 Piano Concerto No. 3: Fin.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 13509735 844 3 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/NO3FIN.MP3 Piano Concerto No. 3: Int.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 10097098 631 2 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/NO3INT.MP3 Piano Concerto No. 3: All.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 16753516 1047 1 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/PIANOCON.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 4103146 256 7 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/PRE4.MP3 Four Preludes: Prelude in.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 2547084 159 6 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/PRELU3.MP3 Sonata No. 2 the B flat m.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 5412194 338 9 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/SONATANO.MP3 Sonata No. 2 the B flat m.. Rachmaninoff David Helfgott Plays Rachmaninoff Classical 7521216 470 8 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/DAVIDHELFGO/THEBFLAT.MP3 Allegro Rachmaninoff Symphony No1 Classical 7433821 464 2 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/SYMPHONYNO1/ALLEGRO.MP3 Grave Rachmaninoff Symphony No1 Classical 13230495 826 1 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/SYMPHONYNO1/GRAVE.MP3 Larghetto Rachmaninoff Symphony No1 Classical 8788847 549 3 2002-02-26 01:29:10-08 2002-02-26 01:29:10-08 128 44100 MPEG AUDIO FILE MP3034/RACHMANINOF/SYMPHONYNO1/LARGHETT.MP3 Descramble, the DeCSS Song N/A N/A Comedy 3604225 450 0 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 44100 MPEG AUDIO FILE MP3034/UNKNOWNARTI/UNKNOWNALBU/DESCRAMB.MP3 01 Woody Allen Night Club Years Comedy 12431845 1553 1 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/01.MP3 02 Woody Allen Night Club Years Comedy 10535997 1316 2 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/02.MP3 03 Woody Allen Night Club Years Comedy 11669920 1458 3 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/03.MP3 04 Woody Allen Night Club Years Comedy 10007697 1250 4 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 64 22050 MPEG AUDIO FILE MP3034/WOODYALLEN/NIGHTCLUBYE/04.MP3 Asking For It Hole Live Through This Rock 3350714 209 4 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/ASKINGFO.MP3 Credit In The Straight World Hole Live Through This Rock 3058994 191 7 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/CREDITIN.MP3 Doll Parts Hole Live Through This Rock 3385402 211 6 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/DOLLPART.MP3 Gutless Hole Live Through This Rock 2165377 135 11 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/GUTLESS.MP3 I Think That I Would Die Hole Live Through This Rock 3463157 216 10 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/ITHINKTH.MP3 Jennifer's Body Hole Live Through This Rock 3547575 221 5 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/JENNIFER.MP3 Miss World Hole Live Through This Rock 2883851 180 2 2002-02-26 01:29:11-08 2002-02-26 01:29:11-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/MISSWORL.MP3 Plump Hole Live Through This Rock 2472992 154 3 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/PLUMP.MP3 Rock Star Hole Live Through This Rock 2590862 161 12 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/ROCKSTAR.MP3 She Walks On Me Hole Live Through This Rock 3263781 203 9 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/SHEWALKS.MP3 Softer, Softest Hole Live Through This Rock 3330236 208 8 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/SOFTERSO.MP3 Violet Hole Live Through This Rock 3270877 204 1 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3034/HOLE/LIVETHROUGH/VIOLET.MP3 Finger Lickin' Good Beastie Boys Check Your Head Hip-Hop 3522089 220 6 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/FINGERLI.MP3 Funky Boss Beastie Boys Check Your Head Hip-Hop 1536774 96 2 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/FUNKYBOS.MP3 Gratitude Beastie Boys Check Your Head Hip-Hop 2653559 165 4 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/GRATITUD.MP3 Groove Holmes Beastie Boys Check Your Head Hip-Hop 2456288 153 15 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/GROOVEHO.MP3 In 3's Beastie Boys Check Your Head Hip-Hop 2294529 143 19 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/IN3S.MP3 Jimmy James Beastie Boys Check Your Head Hip-Hop 3114988 194 1 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/JIMMYJAM.MP3 Lighten Up Beastie Boys Check Your Head Hip-Hop 2587105 161 5 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/LIGHTENU.MP3 Live at P.J.'s Beastie Boys Check Your Head Hip-Hop 3173089 198 16 2002-02-26 01:29:12-08 2002-02-26 01:29:12-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/LIVEATPJ.MP3 Mark on the Bus Beastie Boys Check Your Head Hip-Hop 1051724 65 17 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/MARKONTH.MP3 Namaste' Beastie Boys Check Your Head Hip-Hop 3861043 241 20 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/NAMASTE.MP3 Pass the Mic Beastie Boys Check Your Head Hip-Hop 4115584 257 3 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/PASSTHEM.MP3 POW Beastie Boys Check Your Head Hip-Hop 2146152 134 13 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/POW.MP3 Professor Booty Beastie Boys Check Your Head Hip-Hop 4055819 253 18 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/PROFESSO.MP3 Something's Got to Give Beastie Boys Check Your Head Hip-Hop 3332340 208 10 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/SOMETHIN.MP3 So What'cha Want Beastie Boys Check Your Head Hip-Hop 3476110 217 7 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/SOWHATCH.MP3 Stand Together Beastie Boys Check Your Head Hip-Hop 2681987 167 12 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/STANDTOG.MP3 The Biz vs. The Nuge Beastie Boys Check Your Head Hip-Hop 540787 33 8 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/THEBIZVS.MP3 The Blue Nun Beastie Boys Check Your Head Hip-Hop 517792 32 11 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/THEBLUEN.MP3 The Maestro Beastie Boys Check Your Head Hip-Hop 2758052 172 14 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/THEMAEST.MP3 Time for Livin' Beastie Boys Check Your Head Hip-Hop 1743250 108 9 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BEASTIEBOYS/CHECKYOURHE/TIMEFORL.MP3 Beautiful Way Beck Midnite Vultures Rock 5533296 345 9 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/BEAUTIFU.MP3 Broken Train Beck Midnite Vultures Rock 4029060 251 7 2002-02-26 01:29:13-08 2002-02-26 01:29:13-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/BROKENTR.MP3 Debra Beck Midnite Vultures Rock 13197406 824 11 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/DEBRA.MP3 Get Real Paid Beck Midnite Vultures Rock 4175765 260 4 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/GETREALP.MP3 Hollywood Freaks Beck Midnite Vultures Rock 3834713 239 5 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/HOLLYWOO.MP3 Milk & Honey Beck Midnite Vultures Rock 5105723 319 8 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/MILKHONE.MP3 Mixed Bizness Beck Midnite Vultures Rock 4016940 251 3 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/MIXEDBIZ.MP3 Nicotine & Gravy Beck Midnite Vultures Rock 5005835 312 2 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/NICOTINE.MP3 Peaches & Cream Beck Midnite Vultures Rock 4708665 294 6 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/PEACHESC.MP3 Pressure Zone Beck Midnite Vultures Rock 2991695 186 10 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/PRESSURE.MP3 Sexx Laws Beck Midnite Vultures Rock 3518311 219 1 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BECK/MIDNITEVULT/SEXXLAWS.MP3 Afrodiziak Bran Van 3000 Glee Trip-Hop 3715178 232 8 2002-02-26 01:29:14-08 2002-02-26 01:29:14-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/AFRODIZI.MP3 Ceci n'est pas une chanson Bran Van 3000 Glee Trip-Hop 6515103 407 13 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/CECINEST.MP3 Drinking in L.A. Bran Van 3000 Glee Trip-Hop 3773698 235 3 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/DRINKING.MP3 Everywhere Bran Van 3000 Glee Trip-Hop 3779126 236 12 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/EVERYWHE.MP3 Exactly like me! Bran Van 3000 Glee Trip-Hop 3418016 213 11 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/EXACTLYL.MP3 Forest Bran Van 3000 Glee Trip-Hop 4051213 253 6 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/FOREST.MP3 Lucknow Bran Van 3000 Glee Trip-Hop 2379377 148 9 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/LUCKNOW.MP3 Problems Bran Van 3000 Glee Trip-Hop 1635829 102 4 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/BRANVAN3000/GLEE/PROBLEMS.MP3 3 lil' putos Cypress Hill Black Sunday Hip-Hop 3527938 220 8 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/3LILPUTO.MP3 A to the k Cypress Hill Black Sunday Hip-Hop 3327317 207 12 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/ATOTHEK.MP3 Break 'em off some Cypress Hill Black Sunday Hip-Hop 2664441 166 14 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/BREAKEMO.MP3 Cock the hammer Cypress Hill Black Sunday Hip-Hop 4245159 265 6 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/COCKTHEH.MP3 Hand on the glock Cypress Hill Black Sunday Hip-Hop 3403810 212 13 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/HANDONTH.MP3 Hits from the bong Cypress Hill Black Sunday Hip-Hop 2582103 161 10 2002-02-26 01:29:15-08 2002-02-26 01:29:15-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/HITSFROM.MP3 I ain't goin' out like that Cypress Hill Black Sunday Hip-Hop 4297416 268 2 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/IAINTGOI.MP3 Insane in the brain Cypress Hill Black Sunday Hip-Hop 3350312 209 3 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/INSANEIN.MP3 Interlude Cypress Hill Black Sunday Hip-Hop 1232921 77 7 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/INTERLUD.MP3 I wanna get high Cypress Hill Black Sunday Hip-Hop 2796094 174 1 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/IWANNAGE.MP3 Legalize it Cypress Hill Black Sunday Hip-Hop 746419 46 9 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/LEGALIZE.MP3 Lick a shot Cypress Hill Black Sunday Hip-Hop 3258771 203 5 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/LICKASHO.MP3 What go around come around, kid Cypress Hill Black Sunday Hip-Hop 3558469 222 11 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/WHATGOAR.MP3 When the sh__ goes down Cypress Hill Black Sunday Hip-Hop 3023472 188 4 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/CYPRESSHILL/BLACKSUNDAY/WHENTHES.MP3 Beautiful Love Helmet Betty Rock 1976457 123 10 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/BEAUTIFU.MP3 Biscuits For Smut Helmet Betty Rock 2782284 173 3 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/BISCUITS.MP3 Clean Helmet Betty Rock 2345921 146 8 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/CLEAN.MP3 I Know Helmet Betty Rock 3542123 221 2 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/IKNOW.MP3 Milquetoast Helmet Betty Rock 3743584 233 4 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/MILQUETO.MP3 Overrated Helmet Betty Rock 2567446 160 13 2002-02-26 01:29:16-08 2002-02-26 01:29:16-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/OVERRATE.MP3 Rollo Helmet Betty Rock 2531496 158 6 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/ROLLO.MP3 Sam Hell Helmet Betty Rock 2070073 129 14 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/SAMHELL.MP3 Speechless Helmet Betty Rock 2867124 179 11 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/SPEECHLE.MP3 Street Crab Helmet Betty Rock 3393334 212 7 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/STREETCR.MP3 The Silver Hawaiian Helmet Betty Rock 2050858 128 12 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/THESILVE.MP3 Tic Helmet Betty Rock 3529999 220 5 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/TIC.MP3 Vaccination Helmet Betty Rock 2946954 184 9 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/VACCINAT.MP3 Wilma's Rainbow Helmet Betty Rock 3744006 234 1 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/HELMET/BETTY/WILMASRA.MP3 Had A Dad Jane's Addiction Nothing's Shocking Alternative 3606514 225 3 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/HADADAD.MP3 Idiots Rule Jane's Addiction Nothing's Shocking Alternative 2901419 181 8 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/IDIOTSRU.MP3 Jane Says Jane's Addiction Nothing's Shocking Alternative 4689029 293 9 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/JANESAYS.MP3 Mountain Song Jane's Addiction Nothing's Shocking Alternative 3905777 244 7 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/MOUNTAIN.MP3 Ocean Size Jane's Addiction Nothing's Shocking Alternative 4157802 259 2 2002-02-26 01:29:17-08 2002-02-26 01:29:17-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/OCEANSIZ.MP3 Pigs In Zen Jane's Addiction Nothing's Shocking Alternative 4335020 270 11 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/PIGSINZE.MP3 Standing In The Shower... Thinking Jane's Addiction Nothing's Shocking Alternative 2963300 185 5 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/STANDING.MP3 Summertime Rolls Jane's Addiction Nothing's Shocking Alternative 6087945 380 6 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/SUMMERTI.MP3 Ted, Just Admit It... Jane's Addiction Nothing's Shocking Alternative 7084365 442 4 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/TEDJUSTA.MP3 Thank You Boys Jane's Addiction Nothing's Shocking Alternative 1036489 64 10 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/THANKYOU.MP3 Up The Beach Jane's Addiction Nothing's Shocking Alternative 2898912 181 1 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/JANESADDICT/NOTHINGSSHO/UPTHEBEA.MP3 All I Ever Wanted Lenny Kravitz Mama Said Rock 4070446 254 11 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/ALLIEVER.MP3 Always On The Run Lenny Kravitz Mama Said Rock 3732316 233 2 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/ALWAYSON.MP3 Butterfly Lenny Kravitz Mama Said Rock 1795486 112 14 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/BUTTERFL.MP3 Fields Of Joy Lenny Kravitz Mama Said Rock 3802529 237 1 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/FIELDSOF.MP3 Flowers For Zoe Lenny Kravitz Mama Said Rock 2623050 163 9 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/FLOWERSF.MP3 More Than Anything In This World Lenny Kravitz Mama Said Rock 3333180 208 5 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/MORETHAN.MP3 Stand By My Woman Lenny Kravitz Mama Said Rock 4169501 260 3 2002-02-26 01:29:18-08 2002-02-26 01:29:18-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/STANDBYM.MP3 Stop Draggin' Around Lenny Kravitz Mama Said Rock 2550747 159 8 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/STOPDRAG.MP3 The Difference Is Why Lenny Kravitz Mama Said Rock 4688193 293 7 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/THEDIFFE.MP3 What Goes Around Comes Around Lenny Kravitz Mama Said Rock 4643061 290 6 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/WHATGOES.MP3 What The .... are We Saying? Lenny Kravitz Mama Said Rock 5023404 313 13 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/WHATTHEA.MP3 When The Morning Turns To Night Lenny Kravitz Mama Said Rock 2873425 179 12 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LENNYKRAVIT/MAMASAID/WHENTHEM.MP3 Alice Springs Liz Phair Whip-Smart Alternative 1773753 110 13 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/ALICESPR.MP3 Chopsticks Liz Phair Whip-Smart Alternative 2012822 125 1 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/CHOPSTIC.MP3 Cinco de Mayo Liz Phair Whip-Smart Alternative 2624299 164 8 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/CINCODEM.MP3 Crater Lake Liz Phair Whip-Smart Alternative 2028705 126 12 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/CRATERLA.MP3 Dogs of L.A. Liz Phair Whip-Smart Alternative 2262764 141 9 2002-02-26 01:29:19-08 2002-02-26 01:29:19-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/DOGSOFLA.MP3 Go West Liz Phair Whip-Smart Alternative 3170148 198 7 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/GOWEST.MP3 Jealousy Liz Phair Whip-Smart Alternative 3482365 217 11 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/JEALOUSY.MP3 May Queen Liz Phair Whip-Smart Alternative 2597547 162 14 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/MAYQUEEN.MP3 Nashville Liz Phair Whip-Smart Alternative 4525592 282 6 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/NASHVILL.MP3 Shane Liz Phair Whip-Smart Alternative 4046188 252 5 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/SHANE.MP3 Supernova Liz Phair Whip-Smart Alternative 2704543 169 2 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/SUPERNOV.MP3 Support System Liz Phair Whip-Smart Alternative 2858775 178 3 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/SUPPORTS.MP3 Whip-Smart Liz Phair Whip-Smart Alternative 4140235 258 10 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/WHIPSMAR.MP3 X-Ray Man Liz Phair Whip-Smart Alternative 2140299 133 4 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/LIZPHAIR/WHIPSMART/XRAYMAN.MP3 Bad Shit Porno for Pyros Porno For Pyros Alternative 2874663 179 7 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/BADSHIT.MP3 Black Girlfriend Porno for Pyros Porno For Pyros Alternative 4398550 274 9 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/BLACKGIR.MP3 Blood Rag Porno for Pyros Porno For Pyros Alternative 3387919 211 10 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/BLOODRAG.MP3 Cursed Female Porno for Pyros Porno For Pyros Alternative 3287194 205 4 2002-02-26 01:29:20-08 2002-02-26 01:29:20-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/CURSEDFE.MP3 Cursed Male Porno for Pyros Porno For Pyros Alternative 3711420 231 5 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/CURSEDMA.MP3 Meija Porno for Pyros Porno For Pyros Alternative 3099522 193 3 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/MEIJA.MP3 Orgasm Porno for Pyros Porno For Pyros Alternative 4305754 269 11 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/ORGASM.MP3 Packin' .25 Porno for Pyros Porno For Pyros Alternative 4009843 250 8 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/PACKIN25.MP3 Pets Porno for Pyros Porno For Pyros Alternative 3477356 217 6 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/PETS.MP3 Porno for Pyros Porno for Pyros Porno For Pyros Alternative 2998804 187 2 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/PORNOFOR.MP3 Sadness Porno for Pyros Porno For Pyros Alternative 2455449 153 1 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/PORNOFORPYR/PORNOFORPYR/SADNESS.MP3 Bouquet For A Siren Sebadoh Bubble & Scrape Rock 2825766 176 15 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/BOUQUETF.MP3 Cliche Sebadoh Bubble & Scrape Rock 2359309 147 7 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/CLICHE.MP3 Elixir Is Zog Sebadoh Bubble & Scrape Rock 2027457 126 9 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/ELIXIRIS.MP3 Emma Get Wild Sebadoh Bubble & Scrape Rock 1300209 81 10 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/EMMAGETW.MP3 Fantastic Disaster Sebadoh Bubble & Scrape Rock 3418430 213 4 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/FANTASTI.MP3 Flood Sebadoh Bubble & Scrape Rock 1510852 94 17 2002-02-26 01:29:21-08 2002-02-26 01:29:21-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/FLOOD.MP3 Forced Love Sebadoh Bubble & Scrape Rock 3196069 199 13 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/FORCEDLO.MP3 Happily Divided Sebadoh Bubble & Scrape Rock 2257754 141 5 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/HAPPILYD.MP3 Homemade Sebadoh Bubble & Scrape Rock 4844079 302 12 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/HOMEMADE.MP3 No Way Out Sebadoh Bubble & Scrape Rock 2172486 135 14 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/NOWAYOUT.MP3 Sacred Attention Sebadoh Bubble & Scrape Rock 2684491 167 8 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SACREDAT.MP3 Sister Sebadoh Bubble & Scrape Rock 2615936 163 6 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SISTER.MP3 Sixteen Sebadoh Bubble & Scrape Rock 1439383 89 11 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SIXTEEN.MP3 Soul And Fire Sebadoh Bubble & Scrape Rock 3628658 226 1 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/SOULANDF.MP3 Telecosmic Alchemy Sebadoh Bubble & Scrape Rock 2166224 135 3 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/TELECOSM.MP3 Think (Let Tomorrow Bee) Sebadoh Bubble & Scrape Rock 3085741 192 16 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/THINKLET.MP3 Two Years Two Days Sebadoh Bubble & Scrape Rock 3002560 187 2 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SEBADOH/BUBBLESCRAP/TWOYEARS.MP3 Androgynous Mind Sonic Youth Experimental Jet Set, Trash And No Star Rock 3377496 211 8 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/ANDROGYN.MP3 Bone Sonic Youth Experimental Jet Set, Trash And No Star Rock 3815087 238 7 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/BONE.MP3 Bull In The Heather Sonic Youth Experimental Jet Set, Trash And No Star Rock 2960793 185 2 2002-02-26 01:29:22-08 2002-02-26 01:29:22-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/BULLINTH.MP3 Doctor's Orders Sonic Youth Experimental Jet Set, Trash And No Star Rock 4168274 260 11 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/DOCTORSO.MP3 In The Mind Of The Bourgeois Reader Sonic Youth Experimental Jet Set, Trash And No Star Rock 2452572 153 13 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/INTHEMIN.MP3 Quest For The Cup Sonic Youth Experimental Jet Set, Trash And No Star Rock 2404906 150 9 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/QUESTFOR.MP3 Screaming Skull Sonic Youth Experimental Jet Set, Trash And No Star Rock 2553279 159 5 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SCREAMIN.MP3 Self-Obsessed And Sexxee Sonic Youth Experimental Jet Set, Trash And No Star Rock 4330033 270 6 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SELFOBSE.MP3 Skink Sonic Youth Experimental Jet Set, Trash And No Star Rock 4037442 252 4 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SKINK.MP3 Starfield Road Sonic Youth Experimental Jet Set, Trash And No Star Rock 2164158 135 3 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/STARFIEL.MP3 Sweet Shine Sonic Youth Experimental Jet Set, Trash And No Star Rock 7529498 470 14 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/SWEETSHI.MP3 Tokyo Eye Sonic Youth Experimental Jet Set, Trash And No Star Rock 3758249 234 12 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/TOKYOEYE.MP3 Waist Sonic Youth Experimental Jet Set, Trash And No Star Rock 2711677 169 10 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/WAIST.MP3 Winner's Blues Sonic Youth Experimental Jet Set, Trash And No Star Rock 2036263 127 1 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/SONICYOUTH/EXPERIMENTA/WINNERSB.MP3 Atlanta Stone Temple Pilots No. 4 Rock 5104469 319 11 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/ATLANTA.MP3 Church On Tuesday Stone Temple Pilots No. 4 Rock 2890548 180 4 2002-02-26 01:29:23-08 2002-02-26 01:29:23-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/CHURCHON.MP3 Down Stone Temple Pilots No. 4 Rock 3665850 229 1 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/DOWN.MP3 Glide Stone Temple Pilots No. 4 Rock 4803953 300 8 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/GLIDE.MP3 Heaven & Hot Rods Stone Temple Pilots No. 4 Rock 3299312 206 2 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/HEAVENHO.MP3 I Got You Stone Temple Pilots No. 4 Rock 4090919 255 9 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/IGOTYOU.MP3 MC5 Stone Temple Pilots No. 4 Rock 2602143 162 10 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/MC5.MP3 No Way Out Stone Temple Pilots No. 4 Rock 4157376 259 6 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/NOWAYOUT.MP3 Pruno Stone Temple Pilots No. 4 Rock 3118742 194 3 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/PRUNO.MP3 Sex & Violence Stone Temple Pilots No. 4 Rock 2790235 174 7 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/SEXVIOLE.MP3 Sour Girl Stone Temple Pilots No. 4 Rock 4104294 256 5 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/NO4/SOURGIRL.MP3 Adhesive Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 5354449 334 9 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/ADHESIVE.MP3 And So I know Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3807169 237 6 2002-02-26 01:29:24-08 2002-02-26 01:29:24-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/ANDSOIKN.MP3 Art School Girl Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3448562 215 8 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/ARTSCHOO.MP3 Big Bang Baby Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3262568 203 4 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/BIGBANGB.MP3 Daisy Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 2221843 138 11 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/DAISY.MP3 Lady Picture Show Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3983969 248 5 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/LADYPICT.MP3 Pop's Love Suicide Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3575206 223 2 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/POPSLOVE.MP3 Press Play Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 1299411 81 1 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/PRESSPLA.MP3 Ride The Cliche Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3168112 198 10 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/RIDETHEC.MP3 Seven Caged Tigers Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 4118136 257 12 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/SEVENCAG.MP3 Trippin' On A Hole In A Paper Heart Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 2829166 176 7 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/TRIPPINO.MP3 Tumble In The Rough Stone Temple Pilots Tiny Music...Songs From The Vatican Gift Shop Alternative 3182744 198 3 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/STONETEMPLE/TINYMUSISON/TUMBLEIN.MP3 Bankrobber The Clash The Singles Rock 4407730 275 11 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/BANKROBB.MP3 Clash City Rockers The Clash The Singles Rock 3673801 229 4 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/CLASHCIT.MP3 Complete Control The Clash The Singles Rock 3113316 194 3 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/COMPLETE.MP3 English Civil War The Clash The Singles Rock 2529846 158 7 2002-02-26 01:29:25-08 2002-02-26 01:29:25-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/ENGLISHC.MP3 Hitsville UK The Clash The Singles Rock 4214217 263 13 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/HITSVILL.MP3 I Fought The Law The Clash The Singles Rock 2581252 161 8 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/IFOUGHTT.MP3 Know Your Rights The Clash The Singles Rock 3553010 222 16 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/KNOWYOUR.MP3 London Calling The Clash The Singles Rock 3219893 201 9 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/LONDONCA.MP3 Magnificent Seven The Clash The Singles Rock 4313696 269 14 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/MAGNIFIC.MP3 Remote Control The Clash The Singles Rock 2917709 182 2 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/REMOTECO.MP3 Rock The Casbah The Clash The Singles Rock 3578504 223 17 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/ROCKTHEC.MP3 Should I Stay Or Should I Go The Clash The Singles Rock 3001733 187 18 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/SHOULDIS.MP3 The Call Up The Clash The Singles Rock 5232782 327 12 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/THECALLU.MP3 This Is Radio Clash The Clash The Singles Rock 4020291 251 15 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/THISISRA.MP3 Tommy Gun The Clash The Singles Rock 3153015 197 6 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/TOMMYGUN.MP3 Train In Vain The Clash The Singles Rock 3062321 191 10 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/TRAININV.MP3 (White Man) In Hammersmith Palais The Clash The Singles Rock 3866495 241 5 2002-02-26 01:29:26-08 2002-02-26 01:29:26-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/WHITEMAN.MP3 White Riot The Clash The Singles Rock 1907497 119 1 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THECLASH/THESINGLES/WHITERIO.MP3 Bobcaygeon The Tragically Hip Phantom Power Rock 4729151 295 4 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/BOBCAYGE.MP3 Chagrin Falls The Tragically Hip Phantom Power Rock 4014862 250 10 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/CHAGRINF.MP3 Emperor Penguin The Tragically Hip Phantom Power Rock 3983100 248 12 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/EMPERORP.MP3 Escape Is At Hand For The Travelin' Man The Tragically Hip Phantom Power Rock 5653288 353 11 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/ESCAPEIS.MP3 Fireworks The Tragically Hip Phantom Power Rock 3784980 236 7 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/FIREWORK.MP3 Membership The Tragically Hip Phantom Power Rock 4490914 280 6 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/MEMBERSH.MP3 Poets The Tragically Hip Phantom Power Rock 3833877 239 1 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/POETS.MP3 Save the Planet The Tragically Hip Phantom Power Rock 3489071 218 3 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/SAVETHEP.MP3 Something On The Tragically Hip Phantom Power Rock 3227425 201 2 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/SOMETHIN.MP3 The Rules The Tragically Hip Phantom Power Rock 3624484 226 9 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/THERULES.MP3 Thompson Girl The Tragically Hip Phantom Power Rock 3402551 212 5 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/THOMPSON.MP3 Vapour Trail The Tragically Hip Phantom Power Rock 4333763 270 8 2002-02-26 01:29:27-08 2002-02-26 01:29:27-08 128 44100 MPEG AUDIO FILE MP3035/THETRAGICAL/PHANTOMPOWE/VAPOURTR.MP3 Calling All The People 4 Non Blondes Bigger, Better, Faster, More! Rock 3165170 197 8 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/CALLINGA.MP3 Dear Mr. President 4 Non Blondes Bigger, Better, Faster, More! Rock 4536908 283 9 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/DEARMRPR.MP3 Drifting 4 Non Blondes Bigger, Better, Faster, More! Rock 3379153 211 10 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/DRIFTING.MP3 Morphine & Chocolate 4 Non Blondes Bigger, Better, Faster, More! Rock 4546941 284 5 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/MORPHINE.MP3 No Place Like Home 4 Non Blondes Bigger, Better, Faster, More! Rock 3023479 188 11 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/NOPLACEL.MP3 Old Mr. Heffer 4 Non Blondes Bigger, Better, Faster, More! Rock 2189646 136 7 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/OLDMRHEF.MP3 Pleasantly Blue 4 Non Blondes Bigger, Better, Faster, More! Rock 2378564 148 4 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/PLEASANT.MP3 Spaceman 4 Non Blondes Bigger, Better, Faster, More! Rock 3526273 220 6 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/SPACEMAN.MP3 Superfly 4 Non Blondes Bigger, Better, Faster, More! Rock 4442022 277 2 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/SUPERFLY.MP3 Train 4 Non Blondes Bigger, Better, Faster, More! Rock 3561379 222 1 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/TRAIN.MP3 What's Up 4 Non Blondes Bigger, Better, Faster, More! Rock 4731668 295 3 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/4NONBLONDES/BIGGERBETTE/WHATSUP.MP3 Bad Things L7 The Beauty Process:Triple Platinum Rock 3089920 193 8 2002-02-26 01:29:28-08 2002-02-26 01:29:28-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/BADTHING.MP3 Bitter Wine L7 The Beauty Process:Triple Platinum Rock 4086335 255 6 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/BITTERWI.MP3 Drama L7 The Beauty Process:Triple Platinum Rock 3331077 208 2 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/DRAMA.MP3 I Need L7 The Beauty Process:Triple Platinum Rock 2827437 176 4 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/INEED.MP3 Lorenza, Giada, Alessandra L7 The Beauty Process:Triple Platinum Rock 4250191 265 12 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/LORENZAG.MP3 Me, Myself & I L7 The Beauty Process:Triple Platinum Rock 3627420 226 11 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/MEMYSELF.MP3 Moonshine L7 The Beauty Process:Triple Platinum Rock 3253341 203 5 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/MOONSHIN.MP3 Must Have More L7 The Beauty Process:Triple Platinum Rock 2803622 175 9 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/MUSTHAVE.MP3 Non-Existent Patricia L7 The Beauty Process:Triple Platinum Rock 4327509 270 10 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/NONEXIST.MP3 Off The Wagon L7 The Beauty Process:Triple Platinum Rock 3311859 206 3 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/OFFTHEWA.MP3 The Beauty Process L7 The Beauty Process:Triple Platinum Rock 923645 57 1 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/THEBEAUT.MP3 The Masses Are Asses L7 The Beauty Process:Triple Platinum Rock 4179967 261 7 2002-02-26 01:29:29-08 2002-02-26 01:29:29-08 128 44100 MPEG AUDIO FILE MP3036/L7/THEBEAUTYPR/THEMASSE.MP3 Don't Look Back Luscious Jackson Fever In Fever Out Alternative 3070697 191 2 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/DONTLOOK.MP3 Door Luscious Jackson Fever In Fever Out Alternative 104847 6 3 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/DOOR.MP3 Electric Luscious Jackson Fever In Fever Out Alternative 3047284 190 6 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/ELECTRIC.MP3 Faith Luscious Jackson Fever In Fever Out Alternative 2967034 185 13 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/FAITH.MP3 Mood Swing Luscious Jackson Fever In Fever Out Alternative 3225337 201 4 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/MOODSWIN.MP3 Naked Eye Luscious Jackson Fever In Fever Out Alternative 4494260 280 1 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/NAKEDEYE.MP3 One Thing Luscious Jackson Fever In Fever Out Alternative 2951573 184 11 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/ONETHING.MP3 Parade Luscious Jackson Fever In Fever Out Alternative 193040 12 12 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/PARADE.MP3 Soothe Yourself Luscious Jackson Fever In Fever Out Alternative 4077142 254 9 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/SOOTHEYO.MP3 Stardust Luscious Jackson Fever In Fever Out Alternative 3673388 229 14 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/STARDUST.MP3 Take A Ride Luscious Jackson Fever In Fever Out Alternative 6523871 407 7 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/TAKEARID.MP3 Under Your Skin Luscious Jackson Fever In Fever Out Alternative 3810902 238 5 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/UNDERYOU.MP3 Water Your Garden Luscious Jackson Fever In Fever Out Alternative 4226774 264 8 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/WATERYOU.MP3 Why Do I Lie? Luscious Jackson Fever In Fever Out Alternative 3198591 199 10 2002-02-26 01:29:30-08 2002-02-26 01:29:30-08 128 44100 MPEG AUDIO FILE MP3036/LUSCIOUSJAC/FEVERINFEVE/WHYDOILI.MP3 Denied Our Lady Peace Naveed Rock 4813145 300 7 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/DENIED.MP3 Dirty Walls Our Lady Peace Naveed Rock 3633252 227 6 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/DIRTYWAL.MP3 Hope Our Lady Peace Naveed Rock 5044693 315 4 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/HOPE.MP3 Is It Safe? Our Lady Peace Naveed Rock 3657493 228 8 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/ISITSAFE.MP3 Julia Our Lady Peace Naveed Rock 3827597 239 9 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/JULIA.MP3 Naveed Our Lady Peace Naveed Rock 5628584 351 5 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/NAVEED.MP3 Neon Crossing Our Lady Peace Naveed Rock 3063576 191 11 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/NEONCROS.MP3 Starseed Our Lady Peace Naveed Rock 3962601 247 3 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/STARSEED.MP3 Supersatellite Our Lady Peace Naveed Rock 3597728 224 2 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/SUPERSAT.MP3 The Birdman Our Lady Peace Naveed Rock 5023384 313 1 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/THEBIRDM.MP3 Under Zenith Our Lady Peace Naveed Rock 3612356 225 10 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/OURLADYPEAC/NAVEED/UNDERZEN.MP3 Dance To The Music Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2878042 179 7 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/DANCETOT.MP3 Everybody Is A Star Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2896853 181 2 2002-02-26 01:29:31-08 2002-02-26 01:29:31-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/EVERYBOD.MP3 Everyday People Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2277015 142 8 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/EVERYDAY.MP3 Fun Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2266136 141 5 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/FUN.MP3 Hot Fun In The Summertime Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2534906 158 9 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/HOTFUNIN.MP3 I Want To Take You Higher Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 5181841 323 1 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/IWANTTOT.MP3 Life Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2889822 180 4 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/LIFE.MP3 M'Lady Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2654424 165 10 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/MLADY.MP3 Sing A Simple Song Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 3791777 236 11 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/SINGASIM.MP3 Stand! Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 2991716 186 3 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/STAND.MP3 Thank You (Fa Lettin Me Be Mice Elf Agin) Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 4636840 289 12 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/THANKYOU.MP3 You Can Make It If You Try Sly & The Family Stone Sly & The Family Stone Greatest Hits Disco 3501647 218 6 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/SLYTHEFAMIL/SLYTHEFAMIL/YOUCANMA.MP3 Cannonball The breeders The Last Splash Alternative 3423860 213 2 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/CANNONBA.MP3 Divine Hammer The breeders The Last Splash Alternative 2583766 161 10 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/DIVINEHA.MP3 Do You Love Me? The breeders The Last Splash Alternative 2913537 182 6 2002-02-26 01:29:32-08 2002-02-26 01:29:32-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/DOYOULOV.MP3 Drivin' On 9 The breeders The Last Splash Alternative 3238707 202 14 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/DRIVINON.MP3 Flipside The breeders The Last Splash Alternative 1915026 119 7 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/FLIPSIDE.MP3 Hag The breeders The Last Splash Alternative 2816558 176 12 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/HAG.MP3 I Just Wanna Get Along The breeders The Last Splash Alternative 1671787 104 8 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/IJUSTWAN.MP3 Invisible Man The breeders The Last Splash Alternative 2695360 168 3 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/INVISIBL.MP3 Mad Lucas The breeders The Last Splash Alternative 4431977 276 9 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/MADLUCAS.MP3 New Year The breeders The Last Splash Alternative 1856093 116 1 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/NEWYEAR.MP3 No Aloha The breeders The Last Splash Alternative 2038324 127 4 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/NOALOHA.MP3 Roi The breeders The Last Splash Alternative 4028640 251 5 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/ROI.MP3 Roi (Reprise) The breeders The Last Splash Alternative 676201 42 15 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/ROIREPRI.MP3 Saints The breeders The Last Splash Alternative 2437056 152 13 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/SAINTS.MP3 S.O.S. The breeders The Last Splash Alternative 1470734 91 11 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/THEBREEDERS/THELASTSPLA/SOS.MP3 Dead Presidents Theme (Music from the "Dead Presidents" Original Score) Danny Elfman Dead Presidents (Vol. 1) Soundtrack 4184617 261 14 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/DEADPRES.MP3 Do Right Woman, Do Right Man Aretha Franklin Dead Presidents (Vol. 1) Soundtrack 3127557 195 9 2002-02-26 01:29:33-08 2002-02-26 01:29:33-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/DORIGHTW.MP3 Get Up & Get Down The Dramatics Dead Presidents (Vol. 1) Soundtrack 3065686 191 7 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/GETUPGET.MP3 If There's Hell Below Curtis Mayfield Dead Presidents (Vol. 1) Soundtrack 7432530 464 8 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/IFTHERES.MP3 If You Want Me To Stay Sly & The Family Stone Dead Presidents (Vol. 1) Soundtrack 2852123 178 1 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/IFYOUWAN.MP3 I'll Be Around The Spinners Dead Presidents (Vol. 1) Soundtrack 3053143 190 4 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/ILLBEARO.MP3 I Miss You Harold Melvin & The Blue Notes Dead Presidents (Vol. 1) Soundtrack 8132197 508 6 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/IMISSYOU.MP3 Love Train The O'Jays Dead Presidents (Vol. 1) Soundtrack 2854190 178 12 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/LOVETRAI.MP3 Never Gonna Give You Up Barry White Dead Presidents (Vol. 1) Soundtrack 7661151 478 5 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/NEVERGON.MP3 The Look Of Love Isaac Hayes Dead Presidents (Vol. 1) Soundtrack 10783300 673 13 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/THELOOKO.MP3 The Payback James Brown Dead Presidents (Vol. 1) Soundtrack 7381107 461 3 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/THEPAYBA.MP3 Tired Of Being Alone Al Green Dead Presidents (Vol. 1) Soundtrack 2701225 168 11 2002-02-26 01:29:34-08 2002-02-26 01:29:34-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/TIREDOFB.MP3 Walk On By Isaac Hayes Dead Presidents (Vol. 1) Soundtrack 4389354 274 2 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/WALKONBY.MP3 Where Is The Love Jessis & Trina Dead Presidents (Vol. 1) Soundtrack 4037025 252 10 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL1/WHEREIST.MP3 Ain't That a Groove James Brown Dead Presidents (Vol. 2) Soundtrack 3398801 212 12 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/AINTTHAT.MP3 Cowboys to Girls The Intruders Dead Presidents (Vol. 2) Soundtrack 2546162 159 6 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/COWBOYST.MP3 I got the Feelin' James Brown Dead Presidents (Vol. 2) Soundtrack 2564551 160 1 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/IGOTTHEF.MP3 I was made to love her Stevie Wonder Dead Presidents (Vol. 2) Soundtrack 2524852 157 8 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/IWASMADE.MP3 Just my Imagination (Running away with me) The Temptations Dead Presidents (Vol. 2) Soundtrack 3736956 233 5 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/JUSTMYIM.MP3 Keep on Pushing The Impressions Dead Presidents (Vol. 2) Soundtrack 2462571 153 2 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/KEEPONPU.MP3 (Man Oh Man) I want to go back The Impressions Dead Presidents (Vol. 2) Soundtrack 2977094 186 9 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/MANOHMAN.MP3 Never Gonna Give You Up Jerry Butler Dead Presidents (Vol. 2) Soundtrack 2842919 177 7 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/NEVERGON.MP3 Right on for the Darkness Curtis Mayfield Dead Presidents (Vol. 2) Soundtrack 7130767 445 4 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/RIGHTONF.MP3 Smiling Faces Sometimes The Undisputed Truth Dead Presidents (Vol. 2) Soundtrack 3153471 197 3 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/SMILINGF.MP3 We People Darker than Blue Curtis Mayfield Dead Presidents (Vol. 2) Soundtrack 8396767 524 11 2002-02-26 01:29:35-08 2002-02-26 01:29:35-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/WEPEOPLE.MP3 When Something Is Wrong with my Baby Sam & Dave Dead Presidents (Vol. 2) Soundtrack 3137174 196 10 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/VARIOUSARTI/DPVOL2/WHENSOME.MP3 When The Body Speaks Depeche Mode Exciter Alternative 5779913 361 4 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/WHENTHEB.MP3 Shine Depeche Mode Exciter Alternative 5323905 332 2 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/SHINE.MP3 The Dead Of Night Depeche Mode Exciter Alternative 4647659 290 5 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/THEDEADO.MP3 The Sweetest Condition Depeche Mode Exciter Alternative 3565149 222 3 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/THESWEET.MP3 I Am You Depeche Mode Exciter Alternative 4970733 310 12 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/IAMYOU.MP3 I Feel Loved Depeche Mode Exciter Alternative 4175360 260 9 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/IFEELLOV.MP3 Lovetheme Depeche Mode Exciter Alternative 1963935 122 6 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/LOVETHEM.MP3 Comatose Depeche Mode Exciter Alternative 3269638 204 8 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/COMATOSE.MP3 Freelove Depeche Mode Exciter Alternative 5934964 370 7 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/FREELOVE.MP3 Goodnight Lovers Depeche Mode Exciter Alternative 3661275 228 13 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/GOODNIGH.MP3 Breathe Depeche Mode Exciter Alternative 5086507 317 10 2002-02-26 01:29:36-08 2002-02-26 01:29:36-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/BREATHE.MP3 Dream On Depeche Mode Exciter Alternative 4161563 260 1 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/DREAMON.MP3 Easy Tiger Depeche Mode Exciter Alternative 2009912 125 11 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/DEPECHEMODE/EXCITER/EASYTIGE.MP3 Amnesiac-Morning Bell Radiohead Amnesiac Rock 3110912 194 7 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Amnesiac-Morning Bell.mp3 Dollars & Cents Radiohead Amnesiac Rock 4669440 291 8 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Dollars & Cents.mp3 Hunting Bears Radiohead Amnesiac Rock 1941504 121 9 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Hunting Bears.mp3 I Might Be Wrong Radiohead Amnesiac Rock 4702208 293 5 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/I Might Be Wrong.mp3 Knives Out Radiohead Amnesiac Rock 4079616 254 6 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Knives Out.mp3 Life In A Glass House Radiohead Amnesiac Rock 4397056 274 11 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Life In A Glass House.mp3 Like Spinning Plates Radiohead Amnesiac Rock 3801088 237 10 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Like Spinning Plates.mp3 Packt Like Sardines In A Crushd Tin Box Radiohead Amnesiac Rock 3848192 240 1 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Packt Like Sardines In A Crushd Tin Box.mp3 Pullk-Pull Revolving Doors Radiohead Amnesiac Rock 3958784 247 3 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Pullk-Pull Revolving Doors.mp3 Pyramid Song Radiohead Amnesiac Rock 4622336 288 2 2002-02-26 01:29:37-08 2002-02-26 01:29:37-08 128 44100 MPEG AUDIO FILE MP3036/Radiohead/Amnesiac/Pyramid Song.mp3 Outside - Live Staind N/A Rock 5467232 341 0 2002-02-26 01:29:38-08 2002-02-26 01:29:38-08 128 44100 MPEG AUDIO FILE MP3036/Staind/Unknown Album/Outside - Live.mp3 ŏI