[tracker] Imported data-generation scripts from old repo



commit 578f233777ac728307e2ca35df837ee868fb3103
Author: Ivan Frade <ivan frade nokia com>
Date:   Thu Nov 5 13:19:41 2009 +0200

    Imported data-generation scripts from old repo
    
    Some of them might need an update to the new ontology changes.

 utils/data-generators/README.tracker               |   82 +
 utils/data-generators/all_generate_and_import.sh   |    7 +
 utils/data-generators/atom2ttl.py                  |   77 +
 utils/data-generators/barnum/LICENSE               |  278 +
 utils/data-generators/barnum/README                |  171 +
 utils/data-generators/barnum/convert_data.py       |  100 +
 utils/data-generators/barnum/gen_data.py           |  188 +
 utils/data-generators/barnum/gen_vcard.py          |   34 +
 utils/data-generators/barnum/gencc.py              |  177 +
 utils/data-generators/barnum/genpw.py              |   59 +
 .../barnum/source-data/area-codes.txt              |   52 +
 .../barnum/source-data/company-names.txt           |   63 +
 .../barnum/source-data/company-types.txt           |   11 +
 .../barnum/source-data/email-domains.txt           |    9 +
 .../barnum/source-data/female-first-name.txt       | 1501 +
 .../barnum/source-data/female-prefix.txt           |    3 +
 .../barnum/source-data/job-titles.txt              | 4225 ++
 .../barnum/source-data/last-name.txt               | 5001 ++
 .../barnum/source-data/latin-words.txt             |  132 +
 .../barnum/source-data/male-first-name.txt         | 1219 +
 .../barnum/source-data/male-prefix.txt             |    2 +
 .../barnum/source-data/street-names.txt            | 1048 +
 .../barnum/source-data/street-types.txt            |    9 +
 .../barnum/source-data/zip-codes.txt               | 5575 ++
 utils/data-generators/bookmarks.in                 |   11 +
 utils/data-generators/gen_bookmarks.py             |   30 +
 utils/data-generators/gen_contacts_messages.py     |  283 +
 utils/data-generators/gen_gossip.py                |  250 +
 utils/data-generators/gen_music.py                 |  161 +
 utils/data-generators/gen_webhistory.py            |   48 +
 utils/data-generators/generate_all.sh              |   22 +
 utils/data-generators/get-fresh-planets.sh         |    3 +
 utils/data-generators/id32nmmTurtle.py             |  172 +
 utils/data-generators/id32ttl.py                   |  150 +
 utils/data-generators/internals/id3reader.py       |    1 +
 utils/data-generators/internals/tools.py           |   82 +
 utils/data-generators/songlist.ttl                 |60207 ++++++++++++++++++++
 37 files changed, 81443 insertions(+), 0 deletions(-)
---
diff --git a/utils/data-generators/README.tracker b/utils/data-generators/README.tracker
new file mode 100644
index 0000000..82e0ac7
--- /dev/null
+++ b/utils/data-generators/README.tracker
@@ -0,0 +1,82 @@
+What is this
+============
+
+ We have created some scripts using the "barnum" code, to generate
+ data according to the Nepomuk ontology serialized in turtle format.
+
+ There is also an script to import that data into tracker.
+
+
+How to use it
+=============
+
+ There are two options, the easy and the detailed:
+
+Easy method:
+
+./all_generate_and_import.sh
+
+That's it. All turtle file generators are run, and their contents 
+are imported to tracker.
+
+
+
+
+Detailed method:
+
+
+*  To generate information from _N_ contacts and mails:
+
+  ./gen_contacts_messages.py _N_
+
+   This will write a 'contacts.ttl' file.
+
+
+
+*  To generate information about music:
+
+  ./id32ttl.py directory/
+
+  This script will crawl "directory" extracting the id3 information of
+  the files there.
+
+	* To generate information about music according to nmm specification:
+
+		python id32nmmTurtle.py dir_of_music_files/
+
+		The output is 'songlist.ttl'
+
+* To generate a collection of bookmarks:
+
+  ./gen_bookmarks.py > bookmarks.ttl
+
+  This script uses bookmarks.in to get the data and prints the output in the stdout.
+
+
+
+* To generate some feeds information:
+
+  ./get-fresh-planets.sh  (This script gets the atom feeds of planet.maemo and planet.gnome. 
+                           Be sure you have internet connection, the proxy correctly setted, ...)
+
+  ./atom2ttl.py planet-gnome.atom > planet-gnome.ttl (Turn the retrieved atom files into TTL)
+  ./atom2ttl.py planet-maemo.atom > planet-maemo.ttl
+
+
+
+*  To import a generated ttl file:
+
+ ./import_ttl.sh file.ttl
+
+
+
+Other files
+===========
+
+Dont touch these files, they are included in the generation scripts described before:
+
+* tools.py: some common functionality
+* bookmarks.in: Input information to generate bookmarks
+* songlist.ttl: The id3 information is harvested from mp3 files in the filesystem. This is a file
+                with pre-generated information, so can be used to test even when you dont have
+                a huge mp3 collection in your computer.
diff --git a/utils/data-generators/all_generate_and_import.sh b/utils/data-generators/all_generate_and_import.sh
new file mode 100755
index 0000000..afab753
--- /dev/null
+++ b/utils/data-generators/all_generate_and_import.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+# generate and import all local .ttl files
+# takes as one parameter the number of entries that should be 
+# generated in each category
+
+./generate_all.sh $1
+./import_ttl.sh *.ttl
diff --git a/utils/data-generators/atom2ttl.py b/utils/data-generators/atom2ttl.py
new file mode 100644
index 0000000..6bd8b08
--- /dev/null
+++ b/utils/data-generators/atom2ttl.py
@@ -0,0 +1,77 @@
+#!/usr/bin/env python2.5
+import feedparser
+import re, sys
+from internals.tools import print_namespaces, print_property
+
+
+
+def get_self_link (d):
+    rel_link = filter (lambda e: "rel" in e and e["rel"] == "self", d.feed.links)
+    if (rel_link and len (rel_link)):
+        return rel_link[0]["href"]
+    raise Exception ("Invalid feed channel (no 'self' link")
+
+
+def parse_author_contact (author_line):
+    """ Ivan Frade <ivan frade nokia com> --> ('Ivan Frade', 'ivan frade nokia com')
+    """
+    if (not author_line or author_line == ''):
+        return (author_line, '')
+    
+    AUTHOR_PATTERN = "(.*)<(\S+@(\w+\.)+\w+)>"
+    m = re.search (AUTHOR_PATTERN, author_line)
+    if (m):
+        return (m.group(1).strip(), m.group(2).strip())
+    else:
+        AUTHOR_PATTERN_2 = "(.*)\((\S+@(\w+\.)+\w+)\)"
+        m = re.search (AUTHOR_PATTERN_2, author_line)
+        if (m):
+            return (m.group(1).strip(), m.group(2).strip())
+        else:
+            print >> sys.stderr, "Assuming '%s' as author name" % (author_line)
+            return (author_line, '')
+            
+def process_atom_feed (d):
+    atom_uri =  get_self_link (d)
+    print '<%s> a nmo:FeedChannel;' % atom_uri
+    print_property ("nie:title", d.feed.title)
+    print_property ("nie:description", d.feed.get('subtitle', None))
+    print_property ("nie:contentLastModified", d.feed.updated.replace('Z', "+00:00"), final=True)
+    print ""
+    
+    for entry in d.entries:
+        process_atom_entries (entry, atom_uri)
+
+def process_atom_entries (entry, atom_uri):
+    print '<%s> a nmo:FeedMessage;' % entry.id
+    print_property ("nie:title", entry.title)
+    date =  entry.updated or entry.published
+    if (date):
+        print_property ("nie:contentLastModified", date.replace('Z', "+00:00"))
+    print_property ("nmo:communicationChannel", atom_uri, "uri")
+    #print_property ("nmo:htmlMessageContent", entry.summary.encode ('utf8'))
+    author, email = parse_author_contact (entry.get('author', None))
+    if (email and not email == ''):
+        print '\tnco:contributor [a nco:Contact; nco:fullname "%s"; nco:hasEmailAddress <mailto:%s>];' % (author.encode ('utf8'),
+                                                                                                           email.encode ('utf8')) 
+        print ""
+    else:
+        if (author):
+            print '\tnco:contributor [a nco:Contact; nco:fullname "%s"];' % (author.encode ('utf8'))
+            print ""
+        
+    print_property ("nie:links", entry.link, "uri", final=True)
+
+if __name__ == "__main__":
+
+    if (len(sys.argv) < 2):
+        print "USAGE: %s ATOM_FEED"
+    
+    PLANET_MAEMO_ATOM = "http://maemo.org/news/planet-maemo/atom.xml";
+    PLANET_MAEMO_ATOM_LOCAL = "./planet-maemo.atom"
+    PLANET_GNOME_ATOM_LOCAL = "./planet-gnome.atom"
+    #sys.stderr = open ('planetmaemo2ttl.log', 'w')
+    d = feedparser.parse (sys.argv[1])
+    print_namespaces ()
+    process_atom_feed (d)
+    
diff --git a/utils/data-generators/barnum/LICENSE b/utils/data-generators/barnum/LICENSE
new file mode 100755
index 0000000..e91851c
--- /dev/null
+++ b/utils/data-generators/barnum/LICENSE
@@ -0,0 +1,278 @@
+	    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  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
+this service 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 make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  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.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+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
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the 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 a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE 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.
\ No newline at end of file
diff --git a/utils/data-generators/barnum/README b/utils/data-generators/barnum/README
new file mode 100755
index 0000000..f36bb83
--- /dev/null
+++ b/utils/data-generators/barnum/README
@@ -0,0 +1,171 @@
+What is Barnum?
+===============
+
+Barnum is a python-based application for quickly and easily creating 
+pseudo-random data typically used for application testing.
+
+Why did you create Barnum?
+==========================
+
+I am developing a shopping cart application in Django and realized that I 
+needed a bunch of data to simulate the store's behavior under somewhat normal 
+production usage.  
+
+I got tired of always trying to think of names and addresses for customers and 
+so decided to automate the process a little bit.  Such was born Barnum.
+
+Why is Barnum unique?
+=====================
+
+I was able to find some online systems for generating large amounts of test 
+data.  I could not find any application that had the breadth of data generation 
+capabilities nor the ability to easily interface with Django in the way I 
+wanted to.
+
+One of the most unique aspects of Barnum is that the data is what I'll call
+"plausible."  For example, here's an example "identity" randomly generated
+from Barnum -
+    Sid Seymour
+    10 Kimbrough Grove Drive
+    Arthur ND, 58006
+    (701)642-6471
+
+    Who works at:
+    Network Hardware Co as a Personnel Clerk Senior
+
+You should notice a couple of things about this data.
+ - There's a realistic first and last name
+ - The street names are also plausible
+ - Arthur, ND is a real city and the zip code is 58006
+ - 701 is an area code used for North Dakota 
+ - The fictional company is somewhat reasonable.
+ - The job position also makes sense.
+
+Why not just use Random to create strings of letters?
+=====================================================
+
+Well, I find that when testing applications, if it's just a random string
+of numbers of letters, it gets hard to tell if something is out of place
+or "looks wrong."  If you'd like to just generate totally random information,
+then you probably don't need Barnum!
+
+What type of information does Barnum generate?
+==============================================
+
+Here's a list of types of dummy data Barnum can create:
+ - First name and/or last name in either gender
+ - Job title
+ - Phone number
+ - Street number and name
+ - Zip code plus city & state
+ - Company name
+ - Credit card number and type (with valid checksum)
+ - Dates
+ - Email addresses
+ - Sample password
+ - Words (latin)
+ - Sentences and/or paragraphs of random latin words
+
+How do I use it?
+================
+
+The gen_data.py script is the primary showcase for how to create random data
+using Barnum.  If you run it from the command line:
+
+ python gen_data.py
+ 
+You'll see some sample data output.
+
+If you'd like to call it from another script, here's an example or two from the
+interpreter:
+
+Python 2.4.2 (#1, Feb  9 2006, 05:29:30)
+[GCC 3.4.4 (Gentoo 3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8)] on linux2
+Type "help", "copyright", "credits" or "license" for more information.
+>>> import barnum.gen_data as gen_data
+>>> gen_data.create_name()
+('Danilo', 'Rendon')
+>>> gen_data.create_name()
+('Melodie', 'Kraft')
+>>> gen_data.create_name()
+('Laverne', 'Hopson')
+>>> gen_data.create_city_state_zip()
+('36475', 'Repton', 'AL')
+>>> gen_data.create_city_state_zip()
+('01090', 'West Springfield', 'MA')
+>>> gen_data.create_phone()
+'(907)339-3308'
+>>> gen_data.create_phone('38138')
+'(901)606-5635'
+>>> gen_data.create_sentence()
+'Delenitaugue iriure zzril euismod dolore vulputate iriuredolor iriure eu.'
+>>> gen_data.create_sentence()
+'Consequatvel in blandit praesent veniam in ex illum vulputate feugait molestie.'
+>>> gen_data.cc_number()
+('visa', ['4532837148746906'])
+>>> gen_data.cc_number()
+('mastercard', ['5417967544412568'])
+
+
+You can see that it should be trivial to incorporate this data into any python script.
+The possibilities of creating CSV's, raw SQL, Python Objects, etc are practically
+endless!
+
+Where does the data come from?
+==============================
+
+I pulled sample data and existing scripts from a bunch of different sources.  
+- The names are from 1990 US Census data http://www.census.gov/genealogy/names/names_files.html
+- The street names are from real us streets in a few locales.
+- Company names are randomly generated by me.
+- Job Titles were taken from another census site that I can't seem to find now.
+- Zip Codes from http://www.cfdynamics.com/cfdynamics/zipbase/index.cfm
+- Random latin text came from http://www.4guysfromrolla.com/webtech/052800-1.shtml
+- Credit Card generator is from Graham King - http://www.darkcoding.net/index.php/credit-card-numbers/
+- Password generator is from Pradeep Kishore Gowda via the Python Cookbook
+
+How can I add more data?
+========================
+
+If all you'd like to do is add some more seed data to an existing source, edit the appropriate
+file in the source-data directory and execute the convert_data.py script to create a new
+pickle file.
+
+How can I contribute?
+=====================
+
+Just ask. I can't forsee this script needing it's own mailing list so right now, use the ticket
+system on google code to submit a ticket with your suggestion/patch.
+
+Why is this so US focused?
+==========================
+
+I needed info for the US only.  I had access to this data and knew what I wanted.  If you
+would like to add other countries or info, feel free to contribute!
+
+
+Can this be used for evil?
+==========================
+
+Ummm.  Probably not.  All of the data is random.  The credit card numbers conform to the
+Luhn 10 checksum formula but are not necessarily valid numbers.  Even if they were, you would
+need to know the real name, address and phone number before you could do anything illegal
+with the data.  I think we're all pretty safe.
+
+Where did this name come from?
+==============================
+
+Choosing names for projects is kind of fun but kind of a hassle.  There needs to be a name
+but it can't be anything too stupid.  I started off thinking of an acronym and ended up with
+PT ("Python Testing") and immediately thought of P.T. Barnum.  I really liked the name 
+because I was using this for Satchmo and project made in Django.  Single word names seemed
+cool.  Also, I like the fact that P.T. Barnum was really a master at making people think
+something was real that wasn't.  Which is exactly what this little script does.
+
+
+Why is it licensed under the GPL?
+=================================
+
+I use a couple of other python scripts that were licensed under the GPL.  So, I figured it
+was best to just release under the GPL.  If you would like another license arrangement,
+let me know and I'll see if there's something we can do.
diff --git a/utils/data-generators/barnum/__init__.py b/utils/data-generators/barnum/__init__.py
new file mode 100755
index 0000000..e69de29
diff --git a/utils/data-generators/barnum/convert_data.py b/utils/data-generators/barnum/convert_data.py
new file mode 100755
index 0000000..e7915cb
--- /dev/null
+++ b/utils/data-generators/barnum/convert_data.py
@@ -0,0 +1,100 @@
+#!/usr/bin/python2.5
+"""
+This application converts the various text files stored in the source-data 
+directory into a pickled python object to be used by the random data
+generator scripts
+
+Copyright (C) 2007 Chris Moffitt
+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 2 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, write to the Free Software Foundation, Inc.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+"""
+
+
+import csv
+import string
+import cPickle as pickle
+import random
+import os
+
+data_dir = "barnum/source-data"
+simple_files_to_process = ['street-names.txt', 'street-types.txt', 'latin-words.txt', 
+                            'email-domains.txt', 'job-titles.txt', 'company-names.txt',
+                            'company-types.txt']
+                            
+def load_files():
+    # Process Zip Codes
+    all_zips = {}
+    reader = csv.reader(open(os.path.join(data_dir,"zip-codes.txt"), "rb"))
+    for row in reader:
+        data = [string.capwords(row[3]), row[4]]
+        all_zips[row[0]] = data
+    output = open('source-data.pkl', 'wb')
+    pickle.dump(all_zips, output)
+
+    #Process area codes
+    area_code_file = open(os.path.join(data_dir,"area-codes.txt"), "rb")
+    state_area_codes = {}
+    for line in area_code_file:
+        clean_line = line.replace(' ','').rstrip('\n')
+        state_area_codes[line.split(':')[0]] = clean_line[3:].split(',') 
+    pickle.dump(state_area_codes, output)
+    area_code_file.close()
+
+    #Process Last Names
+    last_names = []
+    last_name_file = open(os.path.join(data_dir,"last-name.txt"),"rb")
+    for line in last_name_file:
+        clean_line = line.rstrip('\n')
+        last_names.append(string.capwords(clean_line.split(' ')[0]))
+    pickle.dump(last_names, output)
+    last_name_file.close()
+
+    #Process Male First Names
+    male_first_names = []
+    male_first_name_file = open(os.path.join(data_dir,"male-first-name.txt"),"rb")
+    for line in male_first_name_file:
+        clean_line = line.rstrip('\n')
+        male_first_names.append(string.capwords(clean_line.split(' ')[0]))
+    pickle.dump(male_first_names, output)
+    male_first_name_file.close()
+
+    #Process Female First Names
+    female_first_names = []
+    female_first_name_file = open(os.path.join(data_dir,"female-first-name.txt"),"rb")
+    for line in female_first_name_file:
+        clean_line = line.rstrip('\n')
+        female_first_names.append(string.capwords(clean_line.split(' ')[0]))
+    pickle.dump(female_first_names, output)
+    female_first_name_file.close()
+
+    #Process the simple files
+    for f in simple_files_to_process:
+        temp = []
+        sample_file = open(os.path.join(data_dir, f), "rb")
+        for line in sample_file:
+            clean_line = line.rstrip('\n')
+            temp.append(clean_line)
+        pickle.dump(temp, output)
+        sample_file.close()
+        temp = []
+    output.close()
+
+if __name__ == "__main__":
+    response = string.lower(raw_input("Type 'yes' to reload the data from source files and create a new source file: "))
+    if response == 'yes':
+        load_files()
+        
+    
+
diff --git a/utils/data-generators/barnum/gen_data.py b/utils/data-generators/barnum/gen_data.py
new file mode 100755
index 0000000..f4941e6
--- /dev/null
+++ b/utils/data-generators/barnum/gen_data.py
@@ -0,0 +1,188 @@
+#!/usr/bin/python2.5
+"""
+Barnum is a python-based test data generator.
+Copyright (C) 2007 Chris Moffitt
+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 2 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, write to the Free Software Foundation, Inc.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+"""
+
+import cPickle as pickle
+import random
+import string
+import gencc
+import calendar
+import datetime
+import genpw
+import os
+import convert_data
+import subprocess
+
+DIRNAME = os.path.dirname(__file__)
+
+gender_options=('Male','Female')
+company_type = ('LawFirm', 'Generic', 'Short')
+card_types = ('mastercard', 'visa', 'discover', 'amex')
+usernames = ('%.1s%s', '%s.%s')
+# was inconsistent with convert_data behaviour.
+# I dont know whether we should use DIRNAME as base for
+# source-data.pkl the way this file did, or current directory, the way
+# convert_data does it
+#source_path = os.path.join(DIRNAME,"source-data.pkl")
+source_path = "source-data.pkl"
+if not os.path.exists(source_path):
+    convert_data.load_files()
+source_file = open(source_path,'rb')
+
+all_zips = pickle.load(source_file)
+state_area_codes = pickle.load(source_file)
+last_names = pickle.load(source_file)
+male_first_names = pickle.load(source_file)
+female_first_names = pickle.load(source_file)
+street_names = pickle.load(source_file)
+street_types = pickle.load(source_file)
+latin_words = pickle.load(source_file)
+email_domains = pickle.load(source_file)
+job_titles = pickle.load(source_file)
+company_names = pickle.load(source_file)
+company_types = pickle.load(source_file)
+
+source_file.close()
+
+def create_name(full_name=True, gender=None):
+    if not gender:
+        gender = random.choice(gender_options)
+    if gender == "Male":
+        first_name = random.choice(male_first_names)
+    else:
+        first_name = random.choice(female_first_names)
+    if full_name:
+        return(first_name, random.choice(last_names))
+    else:
+        return(first_name)
+
+def create_job_title():
+    return random.choice(job_titles)
+    
+def create_phone(zip_code=None):
+    if not zip_code:
+        zip_code = random.choice(all_zips.keys())
+    area_code = random.choice(state_area_codes[all_zips[zip_code][1]])
+    output = "(%s)%s-%s" % (area_code, random.randint(111,999), random.randint(1111,9999))
+    return(output)
+
+def create_street():
+    number = random.randint(1,9999)
+    name = string.capwords(random.choice(street_names))
+    street_type = string.capwords(random.choice(street_types))
+    return("%s %s %s" % (number, name, street_type))
+
+
+def create_city_state_zip(zip_code=None):
+    if not zip_code:
+        zip_code = random.choice(all_zips.keys())
+    return(zip_code, all_zips[zip_code][0], all_zips[zip_code][1])
+
+def create_sentence(min=4, max=15):
+    sentence = []
+    sentence.append(string.capitalize(random.choice(latin_words)))
+    for word in range(1, random.randint(min, max-1)):
+        sentence.append(random.choice(latin_words))
+    return " ".join(sentence) + "."
+    
+def create_paragraphs(num=1, min_sentences=4, max_sentences=7):
+    paragraphs = []
+    for para in range(0, num):
+        for sentence in range(1, random.randint(min_sentences, max_sentences)):
+            paragraphs.append(create_sentence()+" ")
+        paragraphs.append("\n\n")
+    return "".join(paragraphs)
+
+def create_date(numeric=True, past=False, max_years_future=10, max_years_past=10):
+    """
+    Create a random valid date
+    If past, then dates can be in the past
+    If into the futrue, then no more than max_years into the future
+    If it's not, then it can't be any older than max_years_past
+    """
+    if past:
+        start = datetime.datetime.today() - datetime.timedelta(days=max_years_past * 365)
+        #Anywhere between 1980 and today plus max_ears
+        num_days = (max_years_future * 365) + start.day
+    else:
+        start = datetime.datetime.today()
+        num_days = max_years_future * 365
+        
+    random_days = random.randint(1, num_days)
+    random_date = start + datetime.timedelta(days=random_days)    
+    return(random_date)
+
+def create_birthday(age=random.randint (16, 80)):
+    start = datetime.date.today() - datetime.timedelta(days=random.randint(0, 365))
+    return start - datetime.timedelta(days=age*365)
+
+def create_email(tld=None, name=create_name()):
+    if not tld:
+        tld = random.choice(email_domains)
+    user = random.choice(usernames) % tuple(map(lambda n: n.lower(), name))
+    domain = random.choice(latin_words) + random.choice(latin_words)
+    return ("%s %s %s" % (user, domain, tld))
+
+def create_company_name(biz_type=None):
+    name = []
+    if not biz_type:
+        biz_type = random.choice(company_type)
+    if biz_type == "LawFirm":
+        name.append( random.choice(last_names)+ ", " + random.choice(last_names) + " & " + 
+                     random.choice(last_names))
+        name.append('LLP')
+    else:
+        for i in range(1,random.randint(2,4)):
+            rand_name = random.choice(company_names)
+            if rand_name not in name:
+                name.append(rand_name)
+        if biz_type == 'Generic':
+            name.append(random.choice(company_types))
+        elif len(name) < 3:
+            name.append(random.choice(company_names))
+    return " ".join(name)
+
+def cc_number(card_type=None, length=None, num=1):
+    if not card_type:
+        card_type = random.choice(card_types)
+    prefix_list = "gencc." + card_type + "PrefixList"
+    length = 16
+    return(card_type, gencc.credit_card_number(eval(prefix_list), length, num))
+
+if __name__ == "__main__":
+    first, last = create_name()
+    add = create_street()
+    zip, city, state = create_city_state_zip()
+    phone = create_phone(zip)
+    print first, last
+    print add
+    print "%s %s, %s" % (city, state,zip)
+    print phone
+    print create_sentence(), "\n"
+    print create_paragraphs(num=3)
+    cc = cc_number()
+    print cc
+    expiry = create_date(max_years_future=3)
+    print expiry.strftime("%m/%y")
+    print create_email()
+    print "Password: ", genpw.nicepass()
+    print create_company_name()
+    print create_job_title()
+
+
+
diff --git a/utils/data-generators/barnum/gen_vcard.py b/utils/data-generators/barnum/gen_vcard.py
new file mode 100755
index 0000000..b666629
--- /dev/null
+++ b/utils/data-generators/barnum/gen_vcard.py
@@ -0,0 +1,34 @@
+#! /usr/bin/python
+
+import sys, random
+import gen_data
+
+try:
+    count = int (sys.argv[1])
+except:
+    count = 1
+
+vcard = """BEGIN:VCARD
+VERSION:3.0
+UID:barnum-%d
+FN:%s
+N:%s;%s;;;
+BDAY:%s
+EMAIL;TYPE=WORK:%s
+X-JABBER;TYPE=HOME:%s
+ADR;TYPE=HOME:;;%s;%s;%s;%s;USA
+END:VCARD"""
+
+for dummy in range (0, count):
+    name = gen_data.create_name()
+    adr = gen_data.create_city_state_zip()
+
+    print vcard % (random.randint(0, sys.maxint),
+                   ' '.join(name),
+                   name[1], name[0],
+                   gen_data.create_birthday(),
+                   gen_data.create_email(name=name),
+                   gen_data.create_email(name=name),
+                   gen_data.create_street(),
+                   adr[1], adr[2], adr[0],
+                   )
diff --git a/utils/data-generators/barnum/gencc.py b/utils/data-generators/barnum/gencc.py
new file mode 100755
index 0000000..85dc268
--- /dev/null
+++ b/utils/data-generators/barnum/gencc.py
@@ -0,0 +1,177 @@
+#!/usr/bin/python
+
+"""
+gencc: A simple program to generate credit card numbers that pass the MOD 10 check
+(Luhn formula).
+Usefull for testing e-commerce sites during development.
+
+Copyright 2003 Graham King
+
+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 2 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, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+"""
+
+import random
+import sys
+import copy
+
+visaPrefixList = [ 	['4', '5', '3', '9'], 
+                    ['4', '5', '5', '6'], 
+                    ['4', '9', '1', '6'],
+                    ['4', '5', '3', '2'], 
+                    ['4', '9', '2', '9'],
+                    ['4', '0', '2', '4', '0', '0', '7', '1'],
+                    ['4', '4', '8', '6'],
+                    ['4', '7', '1', '6'],
+                    ['4'] ]
+
+mastercardPrefixList = [    ['5', '1'],
+                            ['5', '2'],
+                            ['5', '3'],
+                            ['5', '4'],
+                            ['5', '5'] ]
+
+amexPrefixList = [  ['3', '4'],
+                    ['3', '7'] ]
+
+discoverPrefixList = [ ['6', '0', '1', '1'] ]
+
+dinersPrefixList = [    ['3', '0', '0'],
+                        ['3', '0', '1'],
+                        ['3', '0', '2'],
+                        ['3', '0', '3'],
+                        ['3', '6'],
+                        ['3', '8'] ]
+
+enRoutePrefixList = [   ['2', '0', '1', '4'],
+                        ['2', '1', '4', '9'] ]
+
+jcbPrefixList16 = [   ['3', '0', '8', '8'],
+                    ['3', '0', '9', '6'],
+                    ['3', '1', '1', '2'],
+                    ['3', '1', '5', '8'],
+                    ['3', '3', '3', '7'],
+                    ['3', '5', '2', '8'] ]
+
+jcbPrefixList15 = [ ['2', '1', '0', '0'],
+                    ['1', '8', '0', '0'] ]
+
+voyagerPrefixList = [ ['8', '6', '9', '9'] ]                    
+                    
+
+"""
+'prefix' is the start of the CC number as a string, any number of digits.
+'length' is the length of the CC number to generate. Typically 13 or 16
+"""
+def completed_number(prefix, length):
+
+    ccnumber = prefix
+
+    # generate digits
+
+    while len(ccnumber) < (length - 1):
+        digit = random.choice(['0',  '1', '2', '3', '4', '5', '6', '7', '8', '9'])
+        ccnumber.append(digit)
+
+
+    # Calculate sum 
+
+    sum = 0
+    pos = 0
+
+    reversedCCnumber = []
+    reversedCCnumber.extend(ccnumber)
+    reversedCCnumber.reverse()
+
+    while pos < length - 1:
+
+        odd = int( reversedCCnumber[pos] ) * 2
+        if odd > 9:
+            odd -= 9
+
+        sum += odd
+
+        if pos != (length - 2):
+
+            sum += int( reversedCCnumber[pos+1] )
+
+        pos += 2
+
+    # Calculate check digit
+
+    checkdigit = ((sum / 10 + 1) * 10 - sum) % 10
+
+    ccnumber.append( str(checkdigit) )
+    
+    return ''.join(ccnumber)
+
+def credit_card_number(prefixList, length, howMany):
+
+    result = []
+
+    for i in range(howMany):
+   
+        ccnumber = copy.copy( random.choice(prefixList) )
+
+        result.append( completed_number(ccnumber, length) )
+
+    return result
+
+def output(title, numbers):
+
+    result = []
+    result.append(title)
+    result.append( '-' * len(title) )
+    result.append( '\n'.join(numbers) )
+    result.append( '' )
+
+    return '\n'.join(result)
+
+#
+# Main
+#
+if __name__ == "__main__":
+
+    mastercard = credit_card_number(mastercardPrefixList, 16, 10)
+    print output("Mastercard", mastercard)
+
+    visa16 = credit_card_number(visaPrefixList, 16, 10)
+    print output("VISA 16 digit", visa16)
+
+    visa13 = credit_card_number(visaPrefixList, 13, 5)
+    print output("VISA 13 digit", visa13)
+
+    amex = credit_card_number(amexPrefixList, 15, 5)
+    print output("American Express", amex)
+
+    # Minor cards
+
+    discover = credit_card_number(discoverPrefixList, 16, 3)
+    print output("Discover", discover)
+
+    diners = credit_card_number(dinersPrefixList, 14, 3)
+    print output("Diners Club / Carte Blanche", diners)
+
+    enRoute = credit_card_number(enRoutePrefixList, 15, 3)
+    print output("enRoute", enRoute)
+
+    jcb15 = credit_card_number(jcbPrefixList15, 15, 3)
+    print output("JCB 15 digit", jcb15)
+
+    jcb16 = credit_card_number(jcbPrefixList16, 16, 3)
+    print output("JCB 16 digit", jcb16)
+
+    voyager = credit_card_number(voyagerPrefixList, 15, 3)
+    print output("Voyager", voyager)
+
diff --git a/utils/data-generators/barnum/genpw.py b/utils/data-generators/barnum/genpw.py
new file mode 100755
index 0000000..446ea0c
--- /dev/null
+++ b/utils/data-generators/barnum/genpw.py
@@ -0,0 +1,59 @@
+#!/usr/bin/python2.5
+## Generate a human readable 'random' password
+## password  will be generated in the form 'word'+digits+'word' 
+## eg.,nice137pass
+## parameters: number of 'characters' , number of 'digits'
+## Pradeep Kishore Gowda <pradeep at btbytes.com >
+## License : GPL 
+## Date : 2005.April.15
+## Revision 1.2 
+## ChangeLog: 
+## 1.1 - fixed typos 
+## 1.2 - renamed functions _apart & _npart to a_part & n_part as zope does not allow functions to 
+## start with _
+
+def nicepass(alpha=6,numeric=2):
+    """
+    returns a human-readble password (say rol86din instead of 
+    a difficult to remember K8Yn9muL ) 
+    """
+    import string
+    import random
+    vowels = ['a','e','i','u', 'y']
+    consonants = [a for a in string.ascii_lowercase if a not in vowels]
+    digits = string.digits
+    
+    ####utility functions
+    def a_part(slen):
+        ret = ''
+        for i in range(slen):			
+            if i%2 ==0:
+                randid = random.randint(0,20) #number of consonants
+                ret += consonants[randid]
+            else:
+                randid = random.randint(0,4) #number of vowels
+                ret += vowels[randid]
+        return ret
+    
+    def n_part(slen):
+        ret = ''
+        for i in range(slen):
+            randid = random.randint(0,9) #number of digits
+            ret += digits[randid]
+        return ret
+        
+    #### 	
+    fpl = alpha/2		
+    if alpha % 2 :
+        fpl = int(alpha/2) + 1 					
+    lpl = alpha - fpl	
+    
+    start = a_part(fpl)
+    mid = n_part(numeric)
+    end = a_part(lpl)
+    
+    return "%s%s%s" % (start,mid,end)
+    
+if __name__ == "__main__":
+    for i in range(10):
+        print nicepass(6,2)
diff --git a/utils/data-generators/barnum/source-data/area-codes.txt b/utils/data-generators/barnum/source-data/area-codes.txt
new file mode 100755
index 0000000..e561ee1
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/area-codes.txt
@@ -0,0 +1,52 @@
+AL:205,251,256,334
+AK:907
+AZ:480,520,602,623,928
+AR:479,501,870
+CA:209, 213, 310, 323, 408, 415, 424, 510, 530, 559, 562, 619, 626, 650, 661, 707, 714, 760, 805, 818, 831, 858, 909, 916, 925, 949
+CO:303, 719, 720, 970
+CT:203, 475, 860, 959
+DE:302
+FL:239, 305, 321, 352, 386, 407, 561, 727, 754, 772, 786, 813, 850, 863, 904, 941, 954
+GA:229, 404, 470, 478, 678, 706, 770, 912
+HI:808
+ID:208
+IL:217, 224, 309, 312, 331, 464, 618, 630, 708, 773, 815, 847, 872
+IN:219, 260, 317, 574, 765, 812
+IA:319, 515, 563, 641, 712
+KS:316, 620, 785, 913
+KY:270, 502, 606, 859
+LA:225, 318, 337, 504, 985
+ME:207
+MD:227, 240, 301, 410, 443, 667
+MA:339, 351, 413, 508, 617, 774, 781, 857, 978
+MI:231, 248, 269, 313, 517, 586, 616, 734, 810, 906, 947, 989
+MN:218, 320, 507, 612, 651, 763, 952
+MS:228, 601, 662
+MO:314, 417, 557, 573, 636, 660, 816, 975
+MT:406
+NE:308, 402
+NE:702, 775
+NH:603
+NJ:201, 551, 609, 732, 848, 856, 862, 908, 973
+NM:505
+NY:212, 315, 347, 516, 518, 585, 607, 631, 646, 716, 718, 845, 914, 917
+NC:252, 336, 704, 828, 910, 919, 980, 984
+ND:701
+NV:702, 775
+OH:216, 234, 283, 330, 419, 440, 513, 567, 614, 740, 937
+OK:405, 580, 918
+OR:503, 541, 971
+PA:215, 267, 412, 445, 484, 570, 610, 717, 724, 814, 835, 878
+RI:401
+SC:803, 843, 864
+SD:605
+TN:423, 615, 731, 865, 901, 931
+TX:210, 214, 254, 281, 361, 409, 469, 512, 682, 713, 737, 806, 817, 830, 832, 903, 915, 936, 940, 956, 972, 979
+UT:435, 801
+VT:802
+VA:276, 434, 540, 571, 703, 757, 804
+WA:206, 253, 360, 425, 509, 564
+DC:202
+WV:304
+WI:262, 414, 608, 715, 920
+WY:307
diff --git a/utils/data-generators/barnum/source-data/company-names.txt b/utils/data-generators/barnum/source-data/company-names.txt
new file mode 100755
index 0000000..efbac2c
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/company-names.txt
@@ -0,0 +1,63 @@
+Telecom
+Software
+Technology
+Hardware
+Electronics
+Consulting
+General
+Frontier
+Alpha
+Industries
+Net
+People
+Star
+Bell
+Research
+Architecture
+Building
+Construction
+Medicine
+Hill
+Graphics
+Analysis
+Vision
+Contract
+Solutions
+Advanced
+Venture
+Innovation
+Systems
+Solutions
+Provider
+Design
+Internet
+Virtual
+Vision
+Application
+Signal
+Network
+Net
+Data
+Electronic
+Max
+Adventure
+Atlantic
+Pacific
+North
+East
+South
+West
+Speed
+Universal
+Galaxy
+Future
+Digital
+Studio
+Interactive
+Source
+Omega
+Direct
+Resource
+Power
+Federated
+Star
diff --git a/utils/data-generators/barnum/source-data/company-types.txt b/utils/data-generators/barnum/source-data/company-types.txt
new file mode 100755
index 0000000..71cc8af
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/company-types.txt
@@ -0,0 +1,11 @@
+Corporation
+Incorporated
+Inc
+Co
+Industries
+LLC
+Limited
+Group
+Organization
+Agency
+International
diff --git a/utils/data-generators/barnum/source-data/email-domains.txt b/utils/data-generators/barnum/source-data/email-domains.txt
new file mode 100755
index 0000000..cf7dee8
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/email-domains.txt
@@ -0,0 +1,9 @@
+com
+edu
+us
+eu
+org
+net
+tv
+info
+gov
diff --git a/utils/data-generators/barnum/source-data/female-first-name.txt b/utils/data-generators/barnum/source-data/female-first-name.txt
new file mode 100755
index 0000000..13327cb
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/female-first-name.txt
@@ -0,0 +1,1501 @@
+mary           2.629  2.629      1
+patricia       1.073  3.702      2
+linda          1.035  4.736      3
+barbara        0.980  5.716      4
+elizabeth      0.937  6.653      5
+jennifer       0.932  7.586      6
+maria          0.828  8.414      7
+susan          0.794  9.209      8
+margaret       0.768  9.976      9
+dorothy        0.727 10.703     10
+lisa           0.704 11.407     11
+nancy          0.669 12.075     12
+karen          0.667 12.742     13
+betty          0.666 13.408     14
+helen          0.663 14.071     15
+sandra         0.629 14.700     16
+donna          0.583 15.282     17
+carol          0.565 15.848     18
+ruth           0.562 16.410     19
+sharon         0.522 16.932     20
+michelle       0.519 17.451     21
+laura          0.510 17.961     22
+sarah          0.508 18.469     23
+kimberly       0.504 18.973     24
+deborah        0.494 19.467     25
+jessica        0.490 19.958     26
+shirley        0.482 20.439     27
+cynthia        0.469 20.908     28
+angela         0.468 21.376     29
+melissa        0.462 21.839     30
+brenda         0.455 22.293     31
+amy            0.451 22.745     32
+anna           0.440 23.185     33
+rebecca        0.430 23.615     34
+virginia       0.430 24.044     35
+kathleen       0.424 24.468     36
+pamela         0.416 24.884     37
+martha         0.412 25.297     38
+debra          0.408 25.704     39
+amanda         0.404 26.108     40
+stephanie      0.400 26.508     41
+carolyn        0.385 26.893     42
+christine      0.382 27.275     43
+marie          0.379 27.655     44
+janet          0.379 28.034     45
+catherine      0.373 28.408     46
+frances        0.370 28.777     47
+ann            0.364 29.141     48
+joyce          0.364 29.505     49
+diane          0.359 29.864     50
+alice          0.357 30.221     51
+julie          0.348 30.568     52
+heather        0.337 30.905     53
+teresa         0.336 31.241     54
+doris          0.335 31.577     55
+gloria         0.335 31.912     56
+evelyn         0.322 32.233     57
+jean           0.315 32.548     58
+cheryl         0.315 32.863     59
+mildred        0.313 33.176     60
+katherine      0.313 33.489     61
+joan           0.306 33.795     62
+ashley         0.303 34.098     63
+judith         0.297 34.395     64
+rose           0.296 34.691     65
+janice         0.285 34.975     66
+kelly          0.283 35.258     67
+nicole         0.281 35.539     68
+judy           0.276 35.815     69
+christina      0.275 36.090     70
+kathy          0.272 36.362     71
+theresa        0.271 36.633     72
+beverly        0.267 36.900     73
+denise         0.264 37.164     74
+tammy          0.259 37.423     75
+irene          0.252 37.675     76
+jane           0.250 37.925     77
+lori           0.248 38.173     78
+rachel         0.242 38.415     79
+marilyn        0.241 38.657     80
+andrea         0.236 38.893     81
+kathryn        0.234 39.127     82
+louise         0.229 39.356     83
+sara           0.229 39.584     84
+anne           0.228 39.812     85
+jacqueline     0.228 40.040     86
+wanda          0.226 40.266     87
+bonnie         0.223 40.489     88
+julia          0.223 40.711     89
+ruby           0.221 40.932     90
+lois           0.220 41.153     91
+tina           0.220 41.372     92
+phyllis        0.219 41.591     93
+norma          0.218 41.809     94
+paula          0.217 42.026     95
+diana          0.216 42.242     96
+annie          0.216 42.458     97
+lillian        0.211 42.669     98
+emily          0.208 42.877     99
+robin          0.208 43.085    100
+peggy          0.208 43.293    101
+crystal        0.207 43.500    102
+gladys         0.205 43.705    103
+rita           0.204 43.908    104
+dawn           0.202 44.111    105
+connie         0.200 44.311    106
+florence       0.200 44.511    107
+tracy          0.197 44.708    108
+edna           0.197 44.904    109
+tiffany        0.195 45.100    110
+carmen         0.195 45.295    111
+rosa           0.194 45.489    112
+cindy          0.192 45.681    113
+grace          0.189 45.869    114
+wendy          0.185 46.055    115
+victoria       0.180 46.235    116
+edith          0.179 46.414    117
+kim            0.178 46.592    118
+sherry         0.178 46.770    119
+sylvia         0.177 46.947    120
+josephine      0.177 47.123    121
+thelma         0.175 47.298    122
+shannon        0.175 47.473    123
+sheila         0.175 47.648    124
+ethel          0.174 47.822    125
+ellen          0.173 47.995    126
+elaine         0.173 48.168    127
+marjorie       0.173 48.341    128
+carrie         0.171 48.512    129
+charlotte      0.169 48.680    130
+monica         0.166 48.847    131
+esther         0.166 49.013    132
+pauline        0.165 49.178    133
+emma           0.165 49.342    134
+juanita        0.164 49.506    135
+anita          0.162 49.669    136
+rhonda         0.162 49.830    137
+hazel          0.161 49.991    138
+amber          0.160 50.151    139
+eva            0.159 50.310    140
+debbie         0.157 50.467    141
+april          0.154 50.621    142
+leslie         0.154 50.775    143
+clara          0.153 50.928    144
+lucille        0.153 51.081    145
+jamie          0.153 51.235    146
+joanne         0.150 51.385    147
+eleanor        0.150 51.535    148
+valerie        0.149 51.684    149
+danielle       0.149 51.833    150
+megan          0.147 51.981    151
+alicia         0.146 52.126    152
+suzanne        0.145 52.272    153
+michele        0.145 52.417    154
+gail           0.145 52.562    155
+bertha         0.143 52.704    156
+darlene        0.142 52.847    157
+veronica       0.142 52.989    158
+jill           0.142 53.131    159
+erin           0.141 53.272    160
+geraldine      0.141 53.413    161
+lauren         0.137 53.550    162
+cathy          0.137 53.687    163
+joann          0.136 53.823    164
+lorraine       0.135 53.958    165
+lynn           0.135 54.093    166
+sally          0.135 54.228    167
+regina         0.133 54.360    168
+erica          0.130 54.490    169
+beatrice       0.130 54.620    170
+dolores        0.129 54.749    171
+bernice        0.128 54.877    172
+audrey         0.127 55.003    173
+yvonne         0.126 55.129    174
+annette        0.125 55.255    175
+june           0.125 55.380    176
+samantha       0.124 55.504    177
+marion         0.122 55.626    178
+dana           0.122 55.748    179
+stacy          0.121 55.869    180
+ana            0.120 55.989    181
+renee          0.120 56.109    182
+ida            0.118 56.227    183
+vivian         0.118 56.346    184
+roberta        0.117 56.463    185
+holly          0.117 56.580    186
+brittany       0.117 56.697    187
+melanie        0.116 56.813    188
+loretta        0.115 56.928    189
+yolanda        0.115 57.043    190
+jeanette       0.115 57.158    191
+laurie         0.114 57.271    192
+katie          0.113 57.385    193
+kristen        0.111 57.496    194
+vanessa        0.111 57.607    195
+alma           0.111 57.718    196
+sue            0.111 57.829    197
+elsie          0.110 57.939    198
+beth           0.110 58.049    199
+jeanne         0.109 58.158    200
+vicki          0.109 58.267    201
+carla          0.107 58.374    202
+tara           0.107 58.482    203
+rosemary       0.107 58.589    204
+eileen         0.105 58.694    205
+terri          0.105 58.799    206
+gertrude       0.103 58.902    207
+lucy           0.103 59.005    208
+tonya          0.102 59.107    209
+ella           0.101 59.208    210
+stacey         0.101 59.308    211
+wilma          0.099 59.408    212
+gina           0.099 59.506    213
+kristin        0.099 59.605    214
+jessie         0.098 59.703    215
+natalie        0.098 59.801    216
+agnes          0.098 59.899    217
+vera           0.098 59.997    218
+willie         0.097 60.094    219
+charlene       0.097 60.191    220
+bessie         0.096 60.287    221
+delores        0.095 60.382    222
+melinda        0.094 60.477    223
+pearl          0.094 60.571    224
+arlene         0.094 60.665    225
+maureen        0.092 60.757    226
+colleen        0.092 60.849    227
+allison        0.092 60.941    228
+tamara         0.092 61.033    229
+joy            0.091 61.124    230
+georgia        0.091 61.215    231
+constance      0.091 61.305    232
+lillie         0.090 61.396    233
+claudia        0.090 61.485    234
+jackie         0.090 61.575    235
+marcia         0.090 61.665    236
+tanya          0.089 61.754    237
+nellie         0.089 61.843    238
+minnie         0.089 61.931    239
+marlene        0.088 62.020    240
+heidi          0.088 62.108    241
+glenda         0.088 62.195    242
+lydia          0.086 62.281    243
+viola          0.086 62.367    244
+courtney       0.086 62.453    245
+marian         0.086 62.539    246
+stella         0.085 62.623    247
+caroline       0.085 62.708    248
+dora           0.084 62.792    249
+jo             0.083 62.875    250
+vickie         0.082 62.957    251
+mattie         0.081 63.038    252
+terry          0.080 63.118    253
+maxine         0.079 63.198    254
+irma           0.079 63.277    255
+mabel          0.078 63.355    256
+marsha         0.078 63.434    257
+myrtle         0.078 63.511    258
+lena           0.077 63.589    259
+christy        0.077 63.665    260
+deanna         0.076 63.742    261
+patsy          0.076 63.818    262
+hilda          0.075 63.893    263
+gwendolyn      0.074 63.967    264
+jennie         0.073 64.040    265
+nora           0.073 64.113    266
+margie         0.072 64.185    267
+nina           0.072 64.257    268
+cassandra      0.072 64.329    269
+leah           0.072 64.401    270
+penny          0.071 64.472    271
+kay            0.071 64.543    272
+priscilla      0.071 64.614    273
+naomi          0.071 64.684    274
+carole         0.071 64.755    275
+brandy         0.070 64.825    276
+olga           0.070 64.895    277
+billie         0.069 64.964    278
+dianne         0.069 65.033    279
+tracey         0.069 65.102    280
+leona          0.069 65.171    281
+jenny          0.068 65.239    282
+felicia        0.068 65.307    283
+sonia          0.068 65.374    284
+miriam         0.066 65.440    285
+velma          0.066 65.506    286
+becky          0.066 65.572    287
+bobbie         0.065 65.637    288
+violet         0.065 65.702    289
+kristina       0.065 65.767    290
+toni           0.064 65.831    291
+misty          0.063 65.894    292
+mae            0.063 65.957    293
+shelly         0.062 66.019    294
+daisy          0.062 66.081    295
+ramona         0.062 66.143    296
+sherri         0.062 66.205    297
+erika          0.061 66.267    298
+katrina        0.061 66.328    299
+claire         0.061 66.388    300
+lindsey        0.060 66.448    301
+lindsay        0.060 66.507    302
+geneva         0.059 66.567    303
+guadalupe      0.059 66.626    304
+belinda        0.059 66.685    305
+margarita      0.059 66.743    306
+sheryl         0.059 66.802    307
+cora           0.058 66.860    308
+faye           0.058 66.917    309
+ada            0.057 66.975    310
+natasha        0.057 67.032    311
+sabrina        0.057 67.089    312
+isabel         0.057 67.146    313
+marguerite     0.056 67.202    314
+hattie         0.056 67.257    315
+harriet        0.056 67.313    316
+molly          0.055 67.368    317
+cecilia        0.055 67.424    318
+kristi         0.055 67.479    319
+brandi         0.055 67.534    320
+blanche        0.055 67.589    321
+sandy          0.055 67.644    322
+rosie          0.055 67.699    323
+joanna         0.055 67.754    324
+iris           0.055 67.808    325
+eunice         0.054 67.863    326
+angie          0.054 67.917    327
+inez           0.053 67.970    328
+lynda          0.053 68.023    329
+madeline       0.052 68.075    330
+amelia         0.052 68.127    331
+alberta        0.052 68.179    332
+genevieve      0.051 68.230    333
+monique        0.051 68.282    334
+jodi           0.051 68.333    335
+janie          0.051 68.385    336
+maggie         0.051 68.436    337
+kayla          0.051 68.487    338
+sonya          0.051 68.538    339
+jan            0.051 68.589    340
+lee            0.051 68.641    341
+kristine       0.051 68.691    342
+candace        0.051 68.742    343
+fannie         0.050 68.792    344
+maryann        0.050 68.843    345
+opal           0.050 68.893    346
+alison         0.050 68.943    347
+yvette         0.050 68.993    348
+melody         0.050 69.043    349
+luz            0.049 69.092    350
+susie          0.049 69.142    351
+olivia         0.049 69.191    352
+flora          0.049 69.240    353
+shelley        0.049 69.288    354
+kristy         0.048 69.337    355
+mamie          0.048 69.385    356
+lula           0.048 69.433    357
+lola           0.048 69.482    358
+verna          0.048 69.530    359
+beulah         0.048 69.577    360
+antoinette     0.048 69.625    361
+candice        0.046 69.671    362
+juana          0.046 69.717    363
+jeannette      0.046 69.763    364
+pam            0.046 69.809    365
+kelli          0.046 69.854    366
+hannah         0.045 69.899    367
+whitney        0.045 69.944    368
+bridget        0.045 69.989    369
+karla          0.044 70.034    370
+celia          0.044 70.078    371
+latoya         0.043 70.121    372
+patty          0.043 70.165    373
+shelia         0.043 70.208    374
+gayle          0.043 70.251    375
+della          0.043 70.294    376
+vicky          0.043 70.336    377
+lynne          0.043 70.379    378
+sheri          0.042 70.421    379
+marianne       0.042 70.463    380
+kara           0.041 70.504    381
+jacquelyn      0.041 70.544    382
+erma           0.041 70.585    383
+blanca         0.041 70.626    384
+myra           0.040 70.666    385
+leticia        0.040 70.706    386
+pat            0.040 70.746    387
+krista         0.040 70.786    388
+roxanne        0.040 70.826    389
+angelica       0.039 70.865    390
+johnnie        0.039 70.905    391
+robyn          0.039 70.944    392
+francis        0.039 70.983    393
+adrienne       0.039 71.022    394
+rosalie        0.039 71.061    395
+alexandra      0.039 71.100    396
+brooke         0.039 71.139    397
+bethany        0.039 71.177    398
+sadie          0.039 71.216    399
+bernadette     0.039 71.254    400
+traci          0.038 71.293    401
+jody           0.038 71.331    402
+kendra         0.038 71.369    403
+jasmine        0.038 71.407    404
+nichole        0.038 71.445    405
+rachael        0.038 71.483    406
+chelsea        0.038 71.520    407
+mable          0.038 71.558    408
+ernestine      0.038 71.596    409
+muriel         0.038 71.634    410
+marcella       0.037 71.671    411
+elena          0.037 71.708    412
+krystal        0.037 71.745    413
+angelina       0.037 71.781    414
+nadine         0.036 71.818    415
+kari           0.036 71.853    416
+estelle        0.036 71.889    417
+dianna         0.036 71.925    418
+paulette       0.036 71.961    419
+lora           0.036 71.996    420
+mona           0.035 72.032    421
+doreen         0.035 72.067    422
+rosemarie      0.035 72.102    423
+angel          0.035 72.137    424
+desiree        0.035 72.172    425
+antonia        0.035 72.207    426
+hope           0.034 72.241    427
+ginger         0.034 72.274    428
+janis          0.034 72.308    429
+betsy          0.034 72.342    430
+christie       0.034 72.375    431
+freda          0.034 72.409    432
+mercedes       0.033 72.442    433
+meredith       0.033 72.475    434
+lynette        0.033 72.508    435
+teri           0.033 72.541    436
+cristina       0.033 72.573    437
+eula           0.033 72.606    438
+leigh          0.032 72.638    439
+meghan         0.032 72.670    440
+sophia         0.032 72.702    441
+eloise         0.032 72.734    442
+rochelle       0.032 72.766    443
+gretchen       0.032 72.798    444
+cecelia        0.032 72.829    445
+raquel         0.031 72.860    446
+henrietta      0.031 72.891    447
+alyssa         0.031 72.922    448
+jana           0.031 72.953    449
+kelley         0.031 72.983    450
+gwen           0.031 73.014    451
+kerry          0.031 73.044    452
+jenna          0.030 73.075    453
+tricia         0.030 73.105    454
+laverne        0.030 73.135    455
+olive          0.030 73.165    456
+alexis         0.030 73.195    457
+tasha          0.030 73.225    458
+silvia         0.029 73.254    459
+elvira         0.029 73.284    460
+casey          0.029 73.313    461
+delia          0.029 73.342    462
+sophie         0.029 73.372    463
+kate           0.029 73.401    464
+patti          0.029 73.430    465
+lorena         0.029 73.459    466
+kellie         0.029 73.488    467
+sonja          0.029 73.517    468
+lila           0.029 73.546    469
+lana           0.029 73.575    470
+darla          0.029 73.604    471
+may            0.029 73.633    472
+mindy          0.029 73.661    473
+essie          0.029 73.690    474
+mandy          0.029 73.719    475
+lorene         0.028 73.747    476
+elsa           0.028 73.775    477
+josefina       0.028 73.804    478
+jeannie        0.028 73.832    479
+miranda        0.028 73.860    480
+dixie          0.028 73.888    481
+lucia          0.028 73.916    482
+marta          0.028 73.944    483
+faith          0.028 73.972    484
+lela           0.028 73.999    485
+johanna        0.028 74.027    486
+shari          0.028 74.055    487
+camille        0.028 74.082    488
+tami           0.027 74.110    489
+shawna         0.027 74.137    490
+elisa          0.027 74.164    491
+ebony          0.027 74.192    492
+melba          0.027 74.219    493
+ora            0.027 74.246    494
+nettie         0.027 74.273    495
+tabitha        0.027 74.300    496
+ollie          0.027 74.327    497
+jaime          0.027 74.354    498
+winifred       0.027 74.381    499
+kristie        0.027 74.408    500
+marina         0.027 74.435    501
+alisha         0.027 74.462    502
+aimee          0.027 74.488    503
+rena           0.027 74.515    504
+myrna          0.026 74.541    505
+marla          0.026 74.567    506
+tammie         0.026 74.593    507
+latasha        0.026 74.619    508
+bonita         0.026 74.645    509
+patrice        0.026 74.671    510
+ronda          0.026 74.697    511
+sherrie        0.026 74.722    512
+addie          0.026 74.748    513
+francine       0.025 74.773    514
+deloris        0.025 74.799    515
+stacie         0.025 74.824    516
+adriana        0.025 74.849    517
+cheri          0.025 74.874    518
+shelby         0.025 74.899    519
+abigail        0.025 74.924    520
+celeste        0.025 74.949    521
+jewel          0.025 74.974    522
+cara           0.025 74.999    523
+adele          0.025 75.024    524
+rebekah        0.025 75.048    525
+lucinda        0.025 75.073    526
+dorthy         0.025 75.097    527
+chris          0.024 75.122    528
+effie          0.024 75.146    529
+trina          0.024 75.171    530
+reba           0.024 75.195    531
+shawn          0.024 75.219    532
+sallie         0.024 75.244    533
+aurora         0.024 75.268    534
+lenora         0.024 75.292    535
+etta           0.024 75.317    536
+lottie         0.024 75.341    537
+kerri          0.024 75.365    538
+trisha         0.024 75.389    539
+nikki          0.024 75.413    540
+estella        0.024 75.438    541
+francisca      0.024 75.461    542
+josie          0.024 75.485    543
+tracie         0.024 75.509    544
+marissa        0.024 75.533    545
+karin          0.024 75.557    546
+brittney       0.024 75.580    547
+janelle        0.024 75.604    548
+lourdes        0.024 75.628    549
+laurel         0.024 75.651    550
+helene         0.024 75.675    551
+fern           0.024 75.698    552
+elva           0.024 75.722    553
+corinne        0.024 75.745    554
+kelsey         0.024 75.769    555
+ina            0.023 75.792    556
+bettie         0.023 75.816    557
+elisabeth      0.023 75.839    558
+aida           0.023 75.862    559
+caitlin        0.023 75.886    560
+ingrid         0.023 75.909    561
+iva            0.023 75.932    562
+eugenia        0.023 75.955    563
+christa        0.023 75.978    564
+goldie         0.023 76.000    565
+cassie         0.023 76.023    566
+maude          0.023 76.046    567
+jenifer        0.023 76.068    568
+therese        0.022 76.091    569
+frankie        0.022 76.113    570
+dena           0.022 76.136    571
+lorna          0.022 76.158    572
+janette        0.022 76.180    573
+latonya        0.022 76.202    574
+candy          0.022 76.224    575
+morgan         0.022 76.247    576
+consuelo       0.022 76.269    577
+tamika         0.022 76.291    578
+rosetta        0.022 76.313    579
+debora         0.022 76.334    580
+cherie         0.022 76.356    581
+polly          0.022 76.378    582
+dina           0.022 76.400    583
+jewell         0.021 76.421    584
+fay            0.021 76.442    585
+jillian        0.021 76.464    586
+dorothea       0.021 76.485    587
+nell           0.021 76.506    588
+trudy          0.021 76.527    589
+esperanza      0.021 76.548    590
+patrica        0.021 76.570    591
+kimberley      0.021 76.591    592
+shanna         0.021 76.611    593
+helena         0.021 76.632    594
+carolina       0.021 76.653    595
+cleo           0.021 76.674    596
+stefanie       0.021 76.694    597
+rosario        0.020 76.715    598
+ola            0.020 76.735    599
+janine         0.020 76.756    600
+mollie         0.020 76.776    601
+lupe           0.020 76.796    602
+alisa          0.020 76.816    603
+lou            0.020 76.836    604
+maribel        0.020 76.856    605
+susanne        0.020 76.875    606
+bette          0.019 76.895    607
+susana         0.019 76.914    608
+elise          0.019 76.933    609
+cecile         0.019 76.953    610
+isabelle       0.019 76.972    611
+lesley         0.019 76.991    612
+jocelyn        0.019 77.010    613
+paige          0.019 77.030    614
+joni           0.019 77.049    615
+rachelle       0.019 77.068    616
+leola          0.019 77.087    617
+daphne         0.019 77.106    618
+alta           0.019 77.125    619
+ester          0.019 77.144    620
+petra          0.019 77.162    621
+graciela       0.019 77.181    622
+imogene        0.019 77.200    623
+jolene         0.019 77.219    624
+keisha         0.019 77.237    625
+lacey          0.018 77.256    626
+glenna         0.018 77.274    627
+gabriela       0.018 77.293    628
+keri           0.018 77.311    629
+ursula         0.018 77.329    630
+lizzie         0.018 77.347    631
+kirsten        0.018 77.366    632
+shana          0.018 77.384    633
+adeline        0.018 77.402    634
+mayra          0.018 77.420    635
+jayne          0.018 77.438    636
+jaclyn         0.018 77.456    637
+gracie         0.018 77.474    638
+sondra         0.018 77.492    639
+carmela        0.018 77.509    640
+marisa         0.018 77.527    641
+rosalind       0.018 77.545    642
+charity        0.018 77.563    643
+tonia          0.018 77.580    644
+beatriz        0.018 77.598    645
+marisol        0.018 77.616    646
+clarice        0.018 77.633    647
+jeanine        0.017 77.651    648
+sheena         0.017 77.668    649
+angeline       0.017 77.685    650
+frieda         0.017 77.703    651
+lily           0.017 77.720    652
+robbie         0.017 77.737    653
+shauna         0.017 77.754    654
+millie         0.017 77.771    655
+claudette      0.017 77.788    656
+cathleen       0.017 77.805    657
+angelia        0.017 77.822    658
+gabrielle      0.017 77.839    659
+autumn         0.017 77.856    660
+katharine      0.017 77.873    661
+summer         0.017 77.890    662
+jodie          0.017 77.907    663
+staci          0.017 77.923    664
+lea            0.017 77.940    665
+christi        0.017 77.957    666
+jimmie         0.017 77.974    667
+justine        0.017 77.990    668
+elma           0.017 78.007    669
+luella         0.017 78.023    670
+margret        0.017 78.040    671
+dominique      0.016 78.056    672
+socorro        0.016 78.073    673
+rene           0.016 78.089    674
+martina        0.016 78.105    675
+margo          0.016 78.122    676
+mavis          0.016 78.138    677
+callie         0.016 78.154    678
+bobbi          0.016 78.170    679
+maritza        0.016 78.186    680
+lucile         0.016 78.202    681
+leanne         0.016 78.219    682
+jeannine       0.016 78.235    683
+deana          0.016 78.251    684
+aileen         0.016 78.267    685
+lorie          0.016 78.282    686
+ladonna        0.016 78.298    687
+willa          0.016 78.314    688
+manuela        0.016 78.330    689
+gale           0.016 78.346    690
+selma          0.016 78.361    691
+dolly          0.016 78.377    692
+sybil          0.016 78.393    693
+abby           0.016 78.408    694
+lara           0.016 78.424    695
+dale           0.016 78.440    696
+ivy            0.016 78.455    697
+dee            0.016 78.471    698
+winnie         0.016 78.486    699
+marcy          0.016 78.502    700
+luisa          0.016 78.517    701
+jeri           0.015 78.533    702
+magdalena      0.015 78.548    703
+ofelia         0.015 78.563    704
+meagan         0.015 78.579    705
+audra          0.015 78.594    706
+matilda        0.015 78.609    707
+leila          0.015 78.624    708
+cornelia       0.015 78.639    709
+bianca         0.015 78.654    710
+simone         0.015 78.669    711
+bettye         0.015 78.684    712
+randi          0.015 78.699    713
+virgie         0.015 78.713    714
+latisha        0.015 78.728    715
+barbra         0.015 78.743    716
+georgina       0.015 78.758    717
+eliza          0.015 78.772    718
+leann          0.015 78.787    719
+bridgette      0.015 78.801    720
+rhoda          0.014 78.816    721
+haley          0.014 78.830    722
+adela          0.014 78.845    723
+nola           0.014 78.859    724
+bernadine      0.014 78.873    725
+flossie        0.014 78.887    726
+ila            0.014 78.902    727
+greta          0.014 78.916    728
+ruthie         0.014 78.930    729
+nelda          0.014 78.944    730
+minerva        0.014 78.958    731
+lilly          0.014 78.973    732
+terrie         0.014 78.987    733
+letha          0.014 79.001    734
+hilary         0.014 79.015    735
+estela         0.014 79.029    736
+valarie        0.014 79.043    737
+brianna        0.014 79.057    738
+rosalyn        0.014 79.071    739
+earline        0.014 79.085    740
+catalina       0.014 79.099    741
+ava            0.014 79.113    742
+mia            0.014 79.127    743
+clarissa       0.014 79.141    744
+lidia          0.014 79.155    745
+corrine        0.014 79.169    746
+alexandria     0.014 79.183    747
+concepcion     0.014 79.196    748
+tia            0.014 79.210    749
+sharron        0.014 79.224    750
+rae            0.014 79.238    751
+dona           0.014 79.251    752
+ericka         0.014 79.265    753
+jami           0.014 79.278    754
+elnora         0.014 79.292    755
+chandra        0.014 79.306    756
+lenore         0.014 79.319    757
+neva           0.013 79.333    758
+marylou        0.013 79.346    759
+melisa         0.013 79.360    760
+tabatha        0.013 79.373    761
+serena         0.013 79.386    762
+avis           0.013 79.400    763
+allie          0.013 79.413    764
+sofia          0.013 79.426    765
+jeanie         0.013 79.439    766
+odessa         0.013 79.453    767
+nannie         0.013 79.466    768
+harriett       0.013 79.479    769
+loraine        0.013 79.492    770
+penelope       0.013 79.505    771
+milagros       0.013 79.518    772
+emilia         0.013 79.531    773
+benita         0.013 79.544    774
+allyson        0.013 79.557    775
+ashlee         0.013 79.570    776
+tania          0.013 79.583    777
+tommie         0.013 79.596    778
+esmeralda      0.013 79.608    779
+karina         0.013 79.621    780
+eve            0.013 79.634    781
+pearlie        0.013 79.647    782
+zelma          0.013 79.659    783
+malinda        0.013 79.672    784
+noreen         0.013 79.684    785
+tameka         0.013 79.697    786
+saundra        0.013 79.710    787
+hillary        0.013 79.722    788
+amie           0.013 79.735    789
+althea         0.012 79.747    790
+rosalinda      0.012 79.760    791
+jordan         0.012 79.772    792
+lilia          0.012 79.784    793
+alana          0.012 79.797    794
+gay            0.012 79.809    795
+clare          0.012 79.821    796
+alejandra      0.012 79.834    797
+elinor         0.012 79.846    798
+michael        0.012 79.858    799
+lorrie         0.012 79.870    800
+jerri          0.012 79.882    801
+darcy          0.012 79.895    802
+earnestine     0.012 79.907    803
+carmella       0.012 79.919    804
+taylor         0.012 79.931    805
+noemi          0.012 79.943    806
+marcie         0.012 79.954    807
+liza           0.012 79.966    808
+annabelle      0.012 79.978    809
+louisa         0.012 79.990    810
+earlene        0.012 80.002    811
+mallory        0.012 80.014    812
+carlene        0.012 80.025    813
+nita           0.012 80.037    814
+selena         0.012 80.049    815
+tanisha        0.012 80.060    816
+katy           0.012 80.072    817
+julianne       0.012 80.083    818
+john           0.012 80.095    819
+lakisha        0.011 80.106    820
+edwina         0.011 80.118    821
+maricela       0.011 80.129    822
+margery        0.011 80.141    823
+kenya          0.011 80.152    824
+dollie         0.011 80.164    825
+roxie          0.011 80.175    826
+roslyn         0.011 80.187    827
+kathrine       0.011 80.198    828
+nanette        0.011 80.209    829
+charmaine      0.011 80.221    830
+lavonne        0.011 80.232    831
+ilene          0.011 80.243    832
+kris           0.011 80.255    833
+tammi          0.011 80.266    834
+suzette        0.011 80.277    835
+corine         0.011 80.288    836
+kaye           0.011 80.300    837
+jerry          0.011 80.311    838
+merle          0.011 80.322    839
+chrystal       0.011 80.333    840
+lina           0.011 80.344    841
+deanne         0.011 80.355    842
+lilian         0.011 80.366    843
+juliana        0.011 80.377    844
+aline          0.011 80.388    845
+luann          0.011 80.399    846
+kasey          0.011 80.410    847
+maryanne       0.011 80.421    848
+evangeline     0.011 80.432    849
+colette        0.011 80.443    850
+melva          0.011 80.453    851
+lawanda        0.011 80.464    852
+yesenia        0.011 80.475    853
+nadia          0.011 80.486    854
+madge          0.011 80.497    855
+kathie         0.011 80.507    856
+eddie          0.011 80.518    857
+ophelia        0.011 80.529    858
+valeria        0.011 80.539    859
+nona           0.011 80.550    860
+mitzi          0.011 80.561    861
+mari           0.011 80.571    862
+georgette      0.011 80.582    863
+claudine       0.011 80.592    864
+fran           0.011 80.603    865
+alissa         0.011 80.613    866
+roseann        0.010 80.624    867
+lakeisha       0.010 80.634    868
+susanna        0.010 80.645    869
+reva           0.010 80.655    870
+deidre         0.010 80.665    871
+chasity        0.010 80.676    872
+sheree         0.010 80.686    873
+carly          0.010 80.697    874
+james          0.010 80.707    875
+elvia          0.010 80.717    876
+alyce          0.010 80.728    877
+deirdre        0.010 80.738    878
+gena           0.010 80.748    879
+briana         0.010 80.758    880
+araceli        0.010 80.769    881
+katelyn        0.010 80.779    882
+rosanne        0.010 80.789    883
+wendi          0.010 80.799    884
+tessa          0.010 80.810    885
+berta          0.010 80.820    886
+marva          0.010 80.830    887
+imelda         0.010 80.840    888
+marietta       0.010 80.850    889
+marci          0.010 80.860    890
+leonor         0.010 80.870    891
+arline         0.010 80.880    892
+sasha          0.010 80.890    893
+madelyn        0.010 80.900    894
+janna          0.010 80.910    895
+juliette       0.010 80.920    896
+deena          0.010 80.929    897
+aurelia        0.010 80.939    898
+josefa         0.010 80.949    899
+augusta        0.010 80.959    900
+liliana        0.010 80.968    901
+young          0.010 80.978    902
+christian      0.010 80.988    903
+lessie         0.010 80.997    904
+amalia         0.010 81.007    905
+savannah       0.010 81.017    906
+anastasia      0.010 81.026    907
+vilma          0.010 81.036    908
+natalia        0.010 81.045    909
+rosella        0.010 81.055    910
+lynnette       0.010 81.064    911
+corina         0.010 81.074    912
+alfreda        0.009 81.083    913
+leanna         0.009 81.093    914
+carey          0.009 81.102    915
+amparo         0.009 81.112    916
+coleen         0.009 81.121    917
+tamra          0.009 81.131    918
+aisha          0.009 81.140    919
+wilda          0.009 81.149    920
+karyn          0.009 81.159    921
+cherry         0.009 81.168    922
+queen          0.009 81.177    923
+maura          0.009 81.187    924
+mai            0.009 81.196    925
+evangelina     0.009 81.205    926
+rosanna        0.009 81.214    927
+hallie         0.009 81.224    928
+erna           0.009 81.233    929
+enid           0.009 81.242    930
+mariana        0.009 81.251    931
+lacy           0.009 81.260    932
+juliet         0.009 81.270    933
+jacklyn        0.009 81.279    934
+freida         0.009 81.288    935
+madeleine      0.009 81.297    936
+mara           0.009 81.306    937
+hester         0.009 81.315    938
+cathryn        0.009 81.324    939
+lelia          0.009 81.333    940
+casandra       0.009 81.343    941
+bridgett       0.009 81.352    942
+angelita       0.009 81.361    943
+jannie         0.009 81.370    944
+dionne         0.009 81.379    945
+annmarie       0.009 81.388    946
+katina         0.009 81.397    947
+beryl          0.009 81.405    948
+phoebe         0.009 81.414    949
+millicent      0.009 81.423    950
+katheryn       0.009 81.432    951
+diann          0.009 81.441    952
+carissa        0.009 81.450    953
+maryellen      0.009 81.459    954
+liz            0.009 81.468    955
+lauri          0.009 81.476    956
+helga          0.009 81.485    957
+gilda          0.009 81.494    958
+adrian         0.009 81.503    959
+rhea           0.009 81.511    960
+marquita       0.009 81.520    961
+hollie         0.009 81.529    962
+tisha          0.009 81.538    963
+tamera         0.009 81.546    964
+angelique      0.009 81.555    965
+francesca      0.009 81.564    966
+britney        0.009 81.573    967
+kaitlin        0.009 81.581    968
+lolita         0.009 81.590    969
+florine        0.009 81.599    970
+rowena         0.009 81.607    971
+reyna          0.009 81.616    972
+twila          0.009 81.624    973
+fanny          0.009 81.633    974
+janell         0.009 81.641    975
+ines           0.009 81.650    976
+concetta       0.009 81.658    977
+bertie         0.009 81.667    978
+alba           0.009 81.676    979
+brigitte       0.009 81.684    980
+alyson         0.009 81.693    981
+vonda          0.008 81.701    982
+pansy          0.008 81.710    983
+elba           0.008 81.718    984
+noelle         0.008 81.726    985
+letitia        0.008 81.735    986
+kitty          0.008 81.743    987
+deann          0.008 81.752    988
+brandie        0.008 81.760    989
+louella        0.008 81.769    990
+leta           0.008 81.777    991
+felecia        0.008 81.786    992
+sharlene       0.008 81.794    993
+lesa           0.008 81.802    994
+beverley       0.008 81.811    995
+robert         0.008 81.819    996
+isabella       0.008 81.827    997
+herminia       0.008 81.836    998
+terra          0.008 81.844    999
+celina         0.008 81.852   1000
+tori           0.008 81.861   1001
+octavia        0.008 81.869   1002
+jade           0.008 81.877   1003
+denice         0.008 81.885   1004
+germaine       0.008 81.894   1005
+sierra         0.008 81.902   1006
+michell        0.008 81.910   1007
+cortney        0.008 81.918   1008
+nelly          0.008 81.926   1009
+doretha        0.008 81.934   1010
+sydney         0.008 81.943   1011
+deidra         0.008 81.951   1012
+monika         0.008 81.959   1013
+lashonda       0.008 81.967   1014
+judi           0.008 81.975   1015
+chelsey        0.008 81.983   1016
+antionette     0.008 81.991   1017
+margot         0.008 81.999   1018
+bobby          0.008 82.007   1019
+adelaide       0.008 82.015   1020
+nan            0.008 82.023   1021
+leeann         0.008 82.030   1022
+elisha         0.008 82.038   1023
+dessie         0.008 82.046   1024
+libby          0.008 82.054   1025
+kathi          0.008 82.062   1026
+gayla          0.008 82.070   1027
+latanya        0.008 82.078   1028
+mina           0.008 82.086   1029
+mellisa        0.008 82.093   1030
+kimberlee      0.008 82.101   1031
+jasmin         0.008 82.109   1032
+renae          0.008 82.117   1033
+zelda          0.008 82.125   1034
+elda           0.008 82.132   1035
+ma             0.008 82.140   1036
+justina        0.008 82.148   1037
+gussie         0.008 82.156   1038
+emilie         0.008 82.163   1039
+camilla        0.008 82.171   1040
+abbie          0.008 82.179   1041
+rocio          0.008 82.186   1042
+kaitlyn        0.008 82.194   1043
+jesse          0.008 82.202   1044
+edythe         0.008 82.209   1045
+ashleigh       0.008 82.217   1046
+selina         0.008 82.225   1047
+lakesha        0.008 82.232   1048
+geri           0.008 82.240   1049
+allene         0.008 82.248   1050
+pamala         0.008 82.255   1051
+michaela       0.008 82.263   1052
+dayna          0.008 82.270   1053
+caryn          0.008 82.278   1054
+rosalia        0.008 82.286   1055
+sun            0.007 82.293   1056
+jacquline      0.007 82.301   1057
+rebeca         0.007 82.308   1058
+marybeth       0.007 82.315   1059
+krystle        0.007 82.323   1060
+iola           0.007 82.330   1061
+dottie         0.007 82.338   1062
+bennie         0.007 82.345   1063
+belle          0.007 82.353   1064
+aubrey         0.007 82.360   1065
+griselda       0.007 82.367   1066
+ernestina      0.007 82.375   1067
+elida          0.007 82.382   1068
+adrianne       0.007 82.390   1069
+demetria       0.007 82.397   1070
+delma          0.007 82.404   1071
+chong          0.007 82.412   1072
+jaqueline      0.007 82.419   1073
+destiny        0.007 82.427   1074
+arleen         0.007 82.434   1075
+virgina        0.007 82.441   1076
+retha          0.007 82.448   1077
+fatima         0.007 82.456   1078
+tillie         0.007 82.463   1079
+eleanore       0.007 82.470   1080
+cari           0.007 82.478   1081
+treva          0.007 82.485   1082
+birdie         0.007 82.492   1083
+wilhelmina     0.007 82.499   1084
+rosalee        0.007 82.506   1085
+maurine        0.007 82.514   1086
+latrice        0.007 82.521   1087
+yong           0.007 82.528   1088
+jena           0.007 82.535   1089
+taryn          0.007 82.542   1090
+elia           0.007 82.549   1091
+debby          0.007 82.556   1092
+maudie         0.007 82.564   1093
+jeanna         0.007 82.571   1094
+delilah        0.007 82.578   1095
+catrina        0.007 82.585   1096
+shonda         0.007 82.592   1097
+hortencia      0.007 82.599   1098
+theodora       0.007 82.606   1099
+teresita       0.007 82.613   1100
+robbin         0.007 82.620   1101
+danette        0.007 82.627   1102
+maryjane       0.007 82.634   1103
+freddie        0.007 82.641   1104
+delphine       0.007 82.648   1105
+brianne        0.007 82.655   1106
+nilda          0.007 82.662   1107
+danna          0.007 82.669   1108
+cindi          0.007 82.676   1109
+bess           0.007 82.683   1110
+iona           0.007 82.690   1111
+hanna          0.007 82.697   1112
+ariel          0.007 82.704   1113
+winona         0.007 82.711   1114
+vida           0.007 82.718   1115
+rosita         0.007 82.725   1116
+marianna       0.007 82.731   1117
+william        0.007 82.738   1118
+racheal        0.007 82.745   1119
+guillermina    0.007 82.752   1120
+eloisa         0.007 82.759   1121
+celestine      0.007 82.766   1122
+caren          0.007 82.773   1123
+malissa        0.007 82.780   1124
+lona           0.007 82.786   1125
+chantel        0.007 82.793   1126
+shellie        0.007 82.800   1127
+marisela       0.007 82.807   1128
+leora          0.007 82.814   1129
+agatha         0.007 82.820   1130
+soledad        0.007 82.827   1131
+migdalia       0.007 82.834   1132
+ivette         0.007 82.840   1133
+christen       0.007 82.847   1134
+athena         0.007 82.854   1135
+janel          0.007 82.861   1136
+chloe          0.007 82.867   1137
+veda           0.007 82.874   1138
+pattie         0.007 82.881   1139
+tessie         0.007 82.887   1140
+tera           0.007 82.894   1141
+marilynn       0.007 82.901   1142
+lucretia       0.007 82.907   1143
+karrie         0.007 82.914   1144
+dinah          0.007 82.920   1145
+daniela        0.007 82.927   1146
+alecia         0.007 82.934   1147
+adelina        0.007 82.940   1148
+vernice        0.007 82.947   1149
+shiela         0.007 82.953   1150
+portia         0.007 82.960   1151
+merry          0.007 82.967   1152
+lashawn        0.007 82.973   1153
+devon          0.007 82.980   1154
+dara           0.007 82.986   1155
+tawana         0.007 82.993   1156
+oma            0.007 82.999   1157
+verda          0.007 83.006   1158
+christin       0.007 83.012   1159
+alene          0.007 83.019   1160
+zella          0.006 83.025   1161
+sandi          0.006 83.032   1162
+rafaela        0.006 83.038   1163
+maya           0.006 83.045   1164
+kira           0.006 83.051   1165
+candida        0.006 83.058   1166
+alvina         0.006 83.064   1167
+suzan          0.006 83.071   1168
+shayla         0.006 83.077   1169
+lyn            0.006 83.083   1170
+lettie         0.006 83.090   1171
+alva           0.006 83.096   1172
+samatha        0.006 83.103   1173
+oralia         0.006 83.109   1174
+matilde        0.006 83.115   1175
+madonna        0.006 83.122   1176
+larissa        0.006 83.128   1177
+vesta          0.006 83.134   1178
+renita         0.006 83.141   1179
+india          0.006 83.147   1180
+delois         0.006 83.153   1181
+shanda         0.006 83.159   1182
+phillis        0.006 83.166   1183
+lorri          0.006 83.172   1184
+erlinda        0.006 83.178   1185
+cruz           0.006 83.185   1186
+cathrine       0.006 83.191   1187
+barb           0.006 83.197   1188
+zoe            0.006 83.203   1189
+isabell        0.006 83.210   1190
+ione           0.006 83.216   1191
+gisela         0.006 83.222   1192
+charlie        0.006 83.228   1193
+valencia       0.006 83.235   1194
+roxanna        0.006 83.241   1195
+mayme          0.006 83.247   1196
+kisha          0.006 83.253   1197
+ellie          0.006 83.259   1198
+mellissa       0.006 83.266   1199
+dorris         0.006 83.272   1200
+dalia          0.006 83.278   1201
+bella          0.006 83.284   1202
+annetta        0.006 83.290   1203
+zoila          0.006 83.296   1204
+reta           0.006 83.302   1205
+reina          0.006 83.308   1206
+lauretta       0.006 83.315   1207
+kylie          0.006 83.321   1208
+christal       0.006 83.327   1209
+pilar          0.006 83.333   1210
+charla         0.006 83.339   1211
+elissa         0.006 83.345   1212
+tiffani        0.006 83.351   1213
+tana           0.006 83.357   1214
+paulina        0.006 83.363   1215
+leota          0.006 83.369   1216
+breanna        0.006 83.375   1217
+jayme          0.006 83.381   1218
+carmel         0.006 83.387   1219
+vernell        0.006 83.393   1220
+tomasa         0.006 83.399   1221
+mandi          0.006 83.405   1222
+dominga        0.006 83.411   1223
+santa          0.006 83.417   1224
+melodie        0.006 83.423   1225
+lura           0.006 83.429   1226
+alexa          0.006 83.435   1227
+tamela         0.006 83.441   1228
+ryan           0.006 83.447   1229
+mirna          0.006 83.453   1230
+kerrie         0.006 83.458   1231
+venus          0.006 83.464   1232
+noel           0.006 83.470   1233
+felicita       0.006 83.476   1234
+cristy         0.006 83.482   1235
+carmelita      0.006 83.488   1236
+berniece       0.006 83.494   1237
+annemarie      0.006 83.500   1238
+tiara          0.006 83.505   1239
+roseanne       0.006 83.511   1240
+missy          0.006 83.517   1241
+cori           0.006 83.523   1242
+roxana         0.006 83.529   1243
+pricilla       0.006 83.535   1244
+kristal        0.006 83.540   1245
+jung           0.006 83.546   1246
+elyse          0.006 83.552   1247
+haydee         0.006 83.558   1248
+aletha         0.006 83.564   1249
+bettina        0.006 83.569   1250
+marge          0.006 83.575   1251
+gillian        0.006 83.581   1252
+filomena       0.006 83.586   1253
+charles        0.006 83.592   1254
+zenaida        0.006 83.598   1255
+harriette      0.006 83.603   1256
+caridad        0.006 83.609   1257
+vada           0.006 83.615   1258
+una            0.006 83.620   1259
+aretha         0.006 83.626   1260
+pearline       0.006 83.632   1261
+marjory        0.006 83.637   1262
+marcela        0.006 83.643   1263
+flor           0.006 83.648   1264
+evette         0.006 83.654   1265
+elouise        0.006 83.659   1266
+alina          0.006 83.665   1267
+trinidad       0.006 83.671   1268
+david          0.006 83.676   1269
+damaris        0.006 83.682   1270
+catharine      0.006 83.687   1271
+carroll        0.006 83.693   1272
+belva          0.006 83.698   1273
+nakia          0.005 83.704   1274
+marlena        0.005 83.709   1275
+luanne         0.005 83.715   1276
+lorine         0.005 83.720   1277
+karon          0.005 83.726   1278
+dorene         0.005 83.731   1279
+danita         0.005 83.737   1280
+brenna         0.005 83.742   1281
+tatiana        0.005 83.748   1282
+sammie         0.005 83.753   1283
+louann         0.005 83.759   1284
+loren          0.005 83.764   1285
+julianna       0.005 83.770   1286
+andria         0.005 83.775   1287
+philomena      0.005 83.780   1288
+lucila         0.005 83.786   1289
+leonora        0.005 83.791   1290
+dovie          0.005 83.797   1291
+romona         0.005 83.802   1292
+mimi           0.005 83.808   1293
+jacquelin      0.005 83.813   1294
+gaye           0.005 83.818   1295
+tonja          0.005 83.824   1296
+misti          0.005 83.829   1297
+joe            0.005 83.835   1298
+gene           0.005 83.840   1299
+chastity       0.005 83.845   1300
+stacia         0.005 83.851   1301
+roxann         0.005 83.856   1302
+micaela        0.005 83.861   1303
+nikita         0.005 83.867   1304
+mei            0.005 83.872   1305
+velda          0.005 83.877   1306
+marlys         0.005 83.882   1307
+johnna         0.005 83.888   1308
+aura           0.005 83.893   1309
+lavern         0.005 83.898   1310
+ivonne         0.005 83.903   1311
+hayley         0.005 83.909   1312
+nicki          0.005 83.914   1313
+majorie        0.005 83.919   1314
+herlinda       0.005 83.924   1315
+george         0.005 83.930   1316
+alpha          0.005 83.935   1317
+yadira         0.005 83.940   1318
+perla          0.005 83.945   1319
+gregoria       0.005 83.950   1320
+daniel         0.005 83.955   1321
+antonette      0.005 83.961   1322
+shelli         0.005 83.966   1323
+mozelle        0.005 83.971   1324
+mariah         0.005 83.976   1325
+joelle         0.005 83.981   1326
+cordelia       0.005 83.986   1327
+josette        0.005 83.992   1328
+chiquita       0.005 83.997   1329
+trista         0.005 84.002   1330
+louis          0.005 84.007   1331
+laquita        0.005 84.012   1332
+georgiana      0.005 84.017   1333
+candi          0.005 84.022   1334
+shanon         0.005 84.027   1335
+lonnie         0.005 84.032   1336
+hildegard      0.005 84.037   1337
+cecil          0.005 84.042   1338
+valentina      0.005 84.047   1339
+stephany       0.005 84.052   1340
+magda          0.005 84.057   1341
+karol          0.005 84.062   1342
+gerry          0.005 84.067   1343
+gabriella      0.005 84.072   1344
+tiana          0.005 84.077   1345
+roma           0.005 84.082   1346
+richelle       0.005 84.087   1347
+ray            0.005 84.092   1348
+princess       0.005 84.097   1349
+oleta          0.005 84.102   1350
+jacque         0.005 84.107   1351
+idella         0.005 84.112   1352
+alaina         0.005 84.117   1353
+suzanna        0.005 84.122   1354
+jovita         0.005 84.127   1355
+blair          0.005 84.132   1356
+tosha          0.005 84.137   1357
+raven          0.005 84.142   1358
+nereida        0.005 84.147   1359
+marlyn         0.005 84.152   1360
+kyla           0.005 84.157   1361
+joseph         0.005 84.162   1362
+delfina        0.005 84.167   1363
+tena           0.005 84.172   1364
+stephenie      0.005 84.177   1365
+sabina         0.005 84.182   1366
+nathalie       0.005 84.186   1367
+marcelle       0.005 84.191   1368
+gertie         0.005 84.196   1369
+darleen        0.005 84.201   1370
+thea           0.005 84.206   1371
+sharonda       0.005 84.211   1372
+shantel        0.005 84.216   1373
+belen          0.005 84.221   1374
+venessa        0.005 84.225   1375
+rosalina       0.005 84.230   1376
+ona            0.005 84.235   1377
+genoveva       0.005 84.240   1378
+corey          0.005 84.245   1379
+clementine     0.005 84.250   1380
+rosalba        0.005 84.254   1381
+renate         0.005 84.259   1382
+renata         0.005 84.264   1383
+mi             0.005 84.269   1384
+ivory          0.005 84.274   1385
+georgianna     0.005 84.278   1386
+floy           0.005 84.283   1387
+dorcas         0.005 84.288   1388
+ariana         0.005 84.293   1389
+tyra           0.005 84.298   1390
+theda          0.005 84.302   1391
+mariam         0.005 84.307   1392
+juli           0.005 84.312   1393
+jesica         0.005 84.317   1394
+donnie         0.005 84.321   1395
+vikki          0.005 84.326   1396
+verla          0.005 84.331   1397
+roselyn        0.005 84.336   1398
+melvina        0.005 84.340   1399
+jannette       0.005 84.345   1400
+ginny          0.005 84.350   1401
+debrah         0.005 84.355   1402
+corrie         0.005 84.359   1403
+asia           0.005 84.364   1404
+violeta        0.005 84.369   1405
+myrtis         0.005 84.374   1406
+latricia       0.005 84.378   1407
+collette       0.005 84.383   1408
+charleen       0.005 84.388   1409
+anissa         0.005 84.392   1410
+viviana        0.005 84.397   1411
+twyla          0.005 84.402   1412
+precious       0.005 84.406   1413
+nedra          0.005 84.411   1414
+latonia        0.005 84.416   1415
+lan            0.005 84.420   1416
+hellen         0.005 84.425   1417
+fabiola        0.005 84.430   1418
+annamarie      0.005 84.435   1419
+adell          0.005 84.439   1420
+sharyn         0.005 84.444   1421
+chantal        0.005 84.448   1422
+niki           0.005 84.453   1423
+maud           0.005 84.458   1424
+lizette        0.005 84.462   1425
+lindy          0.005 84.467   1426
+kia            0.005 84.472   1427
+kesha          0.005 84.476   1428
+jeana          0.005 84.481   1429
+danelle        0.005 84.485   1430
+charline       0.005 84.490   1431
+chanel         0.005 84.495   1432
+carrol         0.005 84.499   1433
+valorie        0.005 84.504   1434
+lia            0.005 84.508   1435
+dortha         0.005 84.513   1436
+cristal        0.005 84.518   1437
+sunny          0.005 84.522   1438
+leone          0.005 84.527   1439
+leilani        0.005 84.531   1440
+gerri          0.005 84.536   1441
+debi           0.005 84.540   1442
+andra          0.005 84.545   1443
+keshia         0.005 84.549   1444
+ima            0.005 84.554   1445
+eulalia        0.005 84.558   1446
+easter         0.005 84.563   1447
+dulce          0.005 84.568   1448
+natividad      0.004 84.572   1449
+linnie         0.004 84.577   1450
+kami           0.004 84.581   1451
+georgie        0.004 84.586   1452
+catina         0.004 84.590   1453
+brook          0.004 84.594   1454
+alda           0.004 84.599   1455
+winnifred      0.004 84.603   1456
+sharla         0.004 84.608   1457
+ruthann        0.004 84.612   1458
+meaghan        0.004 84.617   1459
+magdalene      0.004 84.621   1460
+lissette       0.004 84.626   1461
+adelaida       0.004 84.630   1462
+venita         0.004 84.635   1463
+trena          0.004 84.639   1464
+shirlene       0.004 84.643   1465
+shameka        0.004 84.648   1466
+elizebeth      0.004 84.652   1467
+dian           0.004 84.657   1468
+shanta         0.004 84.661   1469
+mickey         0.004 84.666   1470
+latosha        0.004 84.670   1471
+carlotta       0.004 84.674   1472
+windy          0.004 84.679   1473
+soon           0.004 84.683   1474
+rosina         0.004 84.687   1475
+mariann        0.004 84.692   1476
+leisa          0.004 84.696   1477
+jonnie         0.004 84.701   1478
+dawna          0.004 84.705   1479
+cathie         0.004 84.709   1480
+billy          0.004 84.714   1481
+astrid         0.004 84.718   1482
+sidney         0.004 84.722   1483
+laureen        0.004 84.726   1484
+janeen         0.004 84.731   1485
+holli          0.004 84.735   1486
+fawn           0.004 84.739   1487
+vickey         0.004 84.744   1488
+teressa        0.004 84.748   1489
+shante         0.004 84.752   1490
+rubye          0.004 84.756   1491
+marcelina      0.004 84.761   1492
+chanda         0.004 84.765   1493
+cary           0.004 84.769   1494
+terese         0.004 84.774   1495
+scarlett       0.004 84.778   1496
+marty          0.004 84.782   1497
+marnie         0.004 84.786   1498
+lulu           0.004 84.790   1499
+lisette        0.004 84.795   1500
+jeniffer       0.004 84.799   1501
diff --git a/utils/data-generators/barnum/source-data/female-prefix.txt b/utils/data-generators/barnum/source-data/female-prefix.txt
new file mode 100755
index 0000000..18e06bf
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/female-prefix.txt
@@ -0,0 +1,3 @@
+Dr.
+Mrs.
+Miss.
\ No newline at end of file
diff --git a/utils/data-generators/barnum/source-data/job-titles.txt b/utils/data-generators/barnum/source-data/job-titles.txt
new file mode 100755
index 0000000..c20881c
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/job-titles.txt
@@ -0,0 +1,4225 @@
+Abstract Clerk
+Abstract Writer
+Abstractor
+Account Executive Advertising
+Account Information Clerk
+Account Manager Sales
+Account Specialist
+Account Supervisor
+Accountant
+Accountant Assistant
+Accountant Budget
+Accountant Cost
+Accountant Financial Analyst
+Accountant Plant
+Accountant Public
+Accountant Tax
+Accounting Clerk
+Accounting Data Technician
+Accounting Manager
+Accounting Supervisor 1
+Accounting Supervisor 2
+Accounting Technician
+Accounts Payable Clerk
+Accounts Payable Manager
+Accounts Payable Supervisor
+Accounts Receivable Clerk
+Accounts Receivable Manager
+Accounts Receivable Supervisor
+Acquisitions Librarian
+Actor
+Actuary 1
+Actuary 2
+Actuary 3
+Acupressurist
+Admin Engineering Supervisor
+Administrative Assistant
+Administrative Assistant, CEO
+Administrative Engineering Manager
+Administrative Secretary
+Administrative Services Manager
+Administrator Benefits
+Administrator College
+Administrator Contract
+Administrator School (Primary/High School)
+Administrator Systems
+Administrator TQM
+Administrator Web
+Admissions Clerk
+Admitting Head Hospital
+Admitting Specialist
+Adult Education Teacher
+Advance Agent
+Advertising Account Executive
+Advertising Clerk
+Advertising Manager
+Advertising Production Supervisor
+Advertising Sales Representative
+Advertising Supervisor
+Advisor Personnel
+Aerial Navigator
+Aerodynamicist
+Aerodynamics Engineer
+Aeronautical Engineer
+Affirmative Action Specialist
+Agent Advance
+Agent Bonding
+Agent Business
+Agent Claims General
+Agent Import/Export
+Agent Patent
+Agent Purchasing/Buyer
+Agent Real Estate Supervisor
+Agent Reservations
+Agent Special Insurance
+Agent Special Insurance Group
+Agent Ticket
+Agent Traffic Sales
+Agent Travel
+Agricultural Engineer
+Agronomist
+Aid Operating Room
+Aide Biological
+Aide Community Program
+Aide Dietary
+Aide Home Care
+Aide Housekeeping
+Aide Laboratory
+Aide Legal
+Aide Mental Retardation
+Aide Nurse
+Aide Occupational Therapy
+Aide Physical Therapy
+Aide Psychiatric
+Aide Recreation
+Aide Security
+Aide Social Services
+Aide Teacher
+Aide Technical Test Data
+Air Analyst
+Air Conditioning Installer 1
+Air Conditioning Installer 2
+Air Conditioning Servicer 1
+Air Conditioning Servicer 2
+Air Conditioning Technician
+Air Tester
+Air-Freight Agent
+Aircraft Body Repairer
+Aircraft Engine Mechanic
+Aircraft Flight Attendant
+Aircraft Flight Engineer
+Aircraft Inspector
+Aircraft Jet Copilot
+Aircraft Maintenance Person
+Aircraft Mechanic
+Aircraft Mechanic for Props
+Aircraft Mechanic Jet
+Aircraft Navigator
+Aircraft Pilot Jet
+Aircraft Pilot Non-Jet
+Aircraft Sales
+Airline Security Representative
+Airplane Cabin Attendant
+Airplane Flight Attendant
+Airplane Inspector
+Airport Engineer
+Airport Service Agent
+Alarm Investigator
+Alarm Signal Monitor
+Alcohol Abuse Counselor
+Alteration Tailor
+Ambulance Driver
+Amusement Park Attendant
+Amusement-Equipment Operator
+Analyst Air
+Analyst Benefits
+Analyst Budget
+Analyst Business
+Analyst Business e-Commerce
+Analyst Business Systems
+Analyst Cephalometric
+Analyst Classification
+Analyst Communications
+Analyst Compensation
+Analyst Computer Network
+Analyst Computer Systems Hardware
+Analyst Credit
+Analyst Crime Lab
+Analyst Data Security
+Analyst Database
+Analyst Economic
+Analyst Financial
+Analyst Financial Accountant
+Analyst Insurance Research
+Analyst Inventory
+Analyst Investment
+Analyst Job
+Analyst Lead Systems
+Analyst Loan Review
+Analyst Logistics
+Analyst Market Research
+Analyst Methods and Procedures
+Analyst Operations Research
+Analyst Organization
+Analyst Personal Computer
+Analyst Personnel
+Analyst Planning
+Analyst Product Design
+Analyst Programmer
+Analyst Quality Assurance
+Analyst Rate
+Analyst Risk Management
+Analyst Sales
+Analyst Securities
+Analyst Senior Economic
+Analyst Spectrographic
+Analyst Standards
+Analyst Stress
+Analyst Systems
+Analyst Traffic Rate
+Analyst User Support
+Analyst Wage & Salary
+Anchor Person
+Anesthesiology Nurse
+Animal Hospital Clerk
+Animal Scientist
+Animal Warden
+Applications & Programming Supervisor
+Applications Programmer
+Applications Programming Manager
+Appraiser
+Appraiser Art
+Appraiser Commercial
+Appraiser Insurance Automobile Damage
+Appraiser Residential
+Arboriculturist
+Arborist
+Arc Cutter
+Arc-Air Operator
+Arcade Attendant
+Archaeologist
+Architect
+Architect Data
+Architect Database
+Architect Landscape
+Architectural Drafter
+Archivist
+Area Manager Retail
+Armored Car Guard & Driver
+Armored Car Messenger
+Art Appraiser
+Art Director
+Art Supervisor
+Artificial-Marble Worker
+Artist Fashion
+Artist Paste-up
+Asbestos Removal Worker
+Asphalt Paving Machine Operator
+Assembler 1 Product
+Assembler 2 Product
+Assembler Bicycle
+Assembler Electronics 1
+Assembler Electronics 2
+Assembler Fabricator
+Assembler Metal Fabricator
+Assembler Office Machines
+Assembler Special Machines
+Assembler Structural
+Assembly Line Foreman
+Assembly Supervisor
+Assistant Accountant
+Assistant Administrative
+Assistant Auditor
+Assistant Branch Manager 1 Bank
+Assistant Branch Manager 2 Bank
+Assistant Buyer
+Assistant Certified Nurse
+Assistant Chef
+Assistant Construction Superintendent
+Assistant Controller
+Assistant Estimator
+Assistant Foreman
+Assistant Kitchen
+Assistant Manager Retail Store (Experience)
+Assistant Manager Retail Store (Revenue)
+Assistant Nurse
+Assistant Professor
+Assistant Sales
+Assistant Supervisor Teller
+Assistant Undertaker
+Associate Professor
+Astronomer
+Athletic Coach
+Athletic Trainer
+Atmospheric Scientist
+Attendant Amusement Park
+Attendant Checkroom
+Attendant Coin-Operated Laundry
+Attendant Dining Room
+Attendant Door
+Attendant Flight
+Attendant Funeral
+Attendant Gas Station
+Attendant Linen Room
+Attendant Machine Rolling
+Attendant Nursery School
+Attendant Parking
+Attendant Parking Station
+Attendant Personal
+Attendant Photographic-Process
+Attendant Physical Therapy
+Attendant Sewage Plant
+Attendant Tool Crib
+Attorney Corporate
+Attorney Legal Manager
+Attorney Legal Supervisor
+Attorney Practicing
+Attorney Staff
+Attorney Tax
+Audiologist
+Audiometrist
+Audiovisual Equipment Operator
+Audiovisual Librarian
+Audiovisual Repairer
+Audiovisual Specialist
+Audit Clerk
+Audit EDP Manager
+Audit EDP Supervisor
+Auditing Manager Internal
+Auditing Supervisor Internal
+Auditor Assistant
+Auditor Information Systems
+Auditor Internal
+Author Web
+Automobile Accessories Installer
+Automobile Accessory Salesperson
+Automobile Body Repairer
+Automobile Detailer
+Automobile Estimator
+Automobile Mechanic
+Automobile Rental Clerk
+Automobile Service Station Manager
+Automobile Service Writer
+Automobile Upholsterer
+Automotive Engineer
+Automotive Leasing Sales Representative
+Automotive Lubrication Technician
+Automotive Maintenance Repairer
+Automotive Service Station Attendant
+Automotive Servicer
+Avionics Mechanic
+Avionics Technician
+Bacteriologist
+Baggage Porter Head
+Bail Bonding Agent
+Baker
+Baker Helper
+Bakery Manager
+Bank Teller
+Banker Personal
+Banking and Cashiering Manager
+Banking Assistant Branch Manager 1
+Banking Assistant Branch Manager 2
+Banking Branch Manager 1
+Banking Branch Manager 2
+Banking Collection Clerk
+Banking Credit Analyst
+Banking Credit Card Control Clerk
+Banking Credit Representative Clerk
+Banking Currency Counter
+Banking Customer Service Representative
+Banking Disbursement Clerk
+Banking Electronic Transfer Coordinator
+Banking Finance Sales Representative
+Banking Foreign Exchange Clerk
+Banking Installment Loan Clerk
+Banking Investment Analyst
+Banking Loan Closer
+Banking Loan Collector
+Banking Loan Collector Commercial
+Banking Loan Interviewer
+Banking Loan Officer Commercial
+Banking Loan Officer Consumer
+Banking Loan Officer General
+Banking Loan Officer Mortgage
+Banking Loan Processor
+Banking Loan Review Analyst
+Banking Loan Underwriter Mortgage
+Banking Mortgage Clerk
+Banking New Accounts Representative
+Banking Proof Machine Operator
+Banking Reserves Clerk
+Banking Safe Deposit Clerk
+Banking Savings Teller
+Banking Skip Tracer
+Banking Statement Clerk
+Banking Supervisor Check Processing
+Banking Teller
+Banking Teller Head
+Banking Teller Loan
+Banking Teller Receiving
+Banking Teller Supervisor
+Banking Teller Vault
+Banking Trust Officer
+Barber
+Barber or Beauty Shop Manager
+Barkeeper
+Bartender
+Beautician
+Beauty Operator
+Bench Assembler
+Benefits & Compensation Supervisor
+Benefits Administrator
+Benefits Analyst
+Benefits Claim File Clerk
+Benefits Claims Examiner
+Benefits Clerk
+Benefits Manager
+Benefits Services Representative
+Benefits Specialist
+Benefits Supervisor
+Bicycle Assembler
+Bicycle Messenger
+Bicycle Repairer
+Bilingual Secretary
+Billing Clerk
+Billing Clerk Medical
+Bindery Foreman
+Bindery Helper
+Bindery Operator
+Biochemist
+Biologist
+Biology Aide
+Biomedical Engineer
+Biomedical Engineering Head
+Biomedical Equipment Head
+Biophysicist
+Biostatistician
+Blacksmith
+Blueprint Machine Operator
+Board Operator
+Bodyguard
+Boilermaker
+Bond Sales Trader
+Bonding Agent
+Bookkeeper
+Bookkeeper Head
+Bookkeeping Clerk
+Bookkeeping Manager
+Bookkeeping Supervisor
+Boring Machine Operator
+Botanist
+Bouncer
+Bowling Alley Manager
+Box Maker
+Braille Library Clerk
+Braille Operator
+Braille Proofreader
+Brake/Switch Railroad Operator
+Branch Assistant
+Branch Manager 1 Banking
+Branch Manager 2 Banking
+Branch Office Manager
+Branch Office Supervisor
+Branch Store Supervisor
+Brand or Product Sales Manager
+Brazer Induction
+Brewing Manager
+Brewing Superintendent
+Brick Mason
+Brick Mason Helper
+Bricklayer
+Bricklayer Helper
+Broker Floor Representative
+Brokerage Clerk
+Budget Accountant
+Budget Analyst
+Budget Manager
+Budget Supervisor
+Buffer
+Building & Facilities Manager
+Building & Facilities Supervisor
+Building Cleaner
+Building Maintenance Supervisor Mechanical
+Building Maintenance Worker
+Building Materials Salesperson
+Building Repairer
+Building Superintendent
+Bulldozer Operator
+Burglar Alarm Installer
+Burglar Alarm Servicer
+Bus Driver
+Bus Person
+Busboy/Girl
+Business Administration Manager
+Business Agent
+Business Analyst
+Business Analyst e-Commerce
+Business Broker
+Business Development Manager
+Business Education Instructor
+Business Manager
+Business Manager College/University
+Business Office Manager
+Business Systems Analysis Manager
+Business Systems Analyst
+Business Systems Project Manager
+Business Systems Software Analyst
+Butcher
+Butler
+Buyer
+Buyer Assistant
+Buyer Grocery
+Buyer Junior
+Buyer/Contract Specialist 1
+Buyer/Contract Specialist 2
+Buyer/Contract Specialist 3
+Buyer/Contract Specialist 4
+Buyer/Purchasing Agent
+Cab Driver
+Cabinetmaker
+Cable Engineer Outside Plant
+Cable Splicer
+Cable Supervisor
+Cable Television Installer
+Cable Tester
+Cable Wirer
+CAD-Aided Design Technician
+CAD/CAM Design Drafter
+CAD/CAM/CAE Technician
+Cafeteria Cashier
+Cafeteria Counter Attendant
+Cafeteria Manager
+Calibration Laboratory Technician
+Calibration Technician
+Calibrator
+Call Center Manager
+Call Center Representative 1
+Call Center Representative 2
+Call Center Representative 3
+Call Center Sales Representative
+Call Center Supervisor
+CAM Machinist
+Camera Operator
+Cancellation Clerk
+Capacity Planner
+Captain Ship
+Car Checker
+Car Rental Clerk
+Car-Dumper Operator
+Cardiac Monitor Technician
+Cardiac Technician
+Cardio-Pulmonary Perfusionist
+Career Guidance Technician
+Caretaker Grounds
+Cargo Agent
+Cargo Services Supervisor
+Carpenter (General/Maintenance)
+Carpenter Hand Nailer
+Carpenter Helper
+Carpenter Repairer
+Carpenter Rough
+Carpenter Supervisor
+Carpet Layer
+Cartographer
+Cartographic Drafter
+Cartographic Technician
+Case Aide
+Case Manager RN
+Cash Clerk
+Cash Register Repairer
+Cash Register Servicer
+Cashier 1
+Cashier 2
+Cashier 3
+Cashier 4
+Cashier Accounting Clerk
+Cashier Cafeteria
+Cashier Checker
+Cashier General
+Cashier Office
+Cashier Retail
+Cashier Supervisor
+Cashiering Manager
+Casting Machine Operator
+Casualty Underwriter
+CAT Scan Technologist
+CCU Nurse
+Cement Mason
+Cementer
+Central Office Equipment Engineer
+Central Office Operator
+Central Supply Assistant
+Central Supply Worker
+Central-Service Technician
+Centrifugal-Extractor Operator
+Cephalometric Analyst
+Ceramics Technician
+Certified Medication Technician
+Certified Nurse Assistant
+Chaplain
+Charge Nurse
+Chauffeur
+Chauffeur Motorbus
+Check Processing Supervisor
+Checker Engineering Drawings
+Checker Retail
+Checker Shipping
+Checker Tool Drawing
+Checkroom Attendant
+Cheesemaker
+Chef
+Chef Assistant
+Chef Cold Meat
+Chef Head 1
+Chef Head 2
+Chef Pastry
+Chemical Dependency Counselor
+Chemical Engineer
+Chemical Engineer Supervisor
+Chemical Engineering Technician
+Chemical Laboratory Technician
+Chemical Operator
+Chemical Plant Manager
+Chemical Plant Operator
+Chemical Plant Supervisor
+Chemical Process Helper
+Chemical Supervisor
+Chemical Technician
+Chemical Test Engineer
+Chemist
+Chemist Biological
+Chemist Clinical
+Chemist Food
+Chief Aircraft Mechanic
+Chief Computer Programmer
+Chief Hospital Engineer
+Chief Librarian
+Chief Medical Technologist
+Chief Surveyor
+Child Care Leader
+Child Care Worker
+Child Development Specialist
+Chiropractor
+Choreographer
+Circulation Manager
+Circulation Supervisor
+City-Planning Engineer
+Civil Engineer
+Civil Engineering Technician
+Claims Adjuster Insurance
+Claims Administrator
+Claims Analyst
+Claims Clerk Insurance
+Claims Examiner
+Claims Supervisor
+Classification Analyst
+Cleaner Building
+Cleaner Hospital
+Cleaner Laboratory Equipment
+Cleaner Transportation Vehicles
+Clergy Member
+Clergy Member Head
+Clerical Assistant
+Clerical Supervisor Generic
+Clerk Account Information
+Clerk Accounting
+Clerk Accounts Payable
+Clerk Accounts Receivable
+Clerk Advertising
+Clerk Animal Hospital
+Clerk Audit
+Clerk Bank Disbursement
+Clerk Benefits
+Clerk Billing
+Clerk Brokerage
+Clerk Cancellation
+Clerk Car Rental
+Clerk Claims Insurance
+Clerk Collection Banking
+Clerk Cost Accounting
+Clerk Credit
+Clerk Credit & Collection
+Clerk Credit Card Control
+Clerk Credit Information
+Clerk Customer Order
+Clerk Data Control
+Clerk Data Examination
+Clerk Diet
+Clerk Distribution
+Clerk Documentation
+Clerk Employment
+Clerk File
+Clerk File Benefit Claims
+Clerk File Drawings/Maps
+Clerk Foreign Exchange Banking
+Clerk Funds Transfer
+Clerk General
+Clerk Health Unit
+Clerk Hotel
+Clerk Human Resources
+Clerk Import/Export
+Clerk Information
+Clerk Installment Loan
+Clerk Insurance
+Clerk Insurance Billing
+Clerk Insurance Claims
+Clerk Insurance Policy Change
+Clerk Insurance Premiums
+Clerk Insurance Review
+Clerk Interviewing Generic
+Clerk Inventory
+Clerk Inventory Control
+Clerk Invoice
+Clerk Job Order
+Clerk Junior
+Clerk Laboratory
+Clerk Lease Records
+Clerk Library Braille
+Clerk Loan 2
+Clerk Mail
+Clerk Marking
+Clerk Materials Control
+Clerk Materials Scheduling
+Clerk Medical Records
+Clerk Microfilm
+Clerk Mortgage
+Clerk Outpatient Admitting
+Clerk Payroll
+Clerk Personnel
+Clerk Photo Counter
+Clerk Photo Shop
+Clerk Policyholders
+Clerk Procurement
+Clerk Production Control
+Clerk Purchasing 1
+Clerk Purchasing 2
+Clerk Real Estate
+Clerk Receiving
+Clerk Rehabilitation
+Clerk Reinsurance
+Clerk Rental Facility
+Clerk Repair Orders
+Clerk Reserves Banking
+Clerk Retail Sales
+Clerk Risk Management
+Clerk Room Service
+Clerk Routing
+Clerk Safe Deposit
+Clerk Securities
+Clerk Service Order
+Clerk Shipping
+Clerk Shipping & Receiving
+Clerk Statement
+Clerk Statistical
+Clerk Stock Retail
+Clerk Stock Transfer
+Clerk Supply
+Clerk Time Card
+Clerk Traffic
+Clerk Travel Reservations
+Clerk Typist
+Clerk Underwriting
+Clerk Utility Locator
+Clinical Laboratory Technologist
+Clinical Psychologist
+Clinical Therapist
+CNA
+Coach Athletic
+Coach Operator
+Coder Health Care
+Coffee Shop Manager
+Cold Meat Chef
+Collator Operator
+Collection & Credit Supervisor
+Collection Clerk Banking
+Collection Manager
+Collection Supervisor
+Collector Loan
+College Administrator
+College Teacher
+College/University Business Manager
+Color Stripper
+Commercial Appraiser
+Commercial Artist
+Commercial Broadcast Engineer
+Commercial Designer
+Commercial Laundry Worker
+Commercial Loan Collector
+Commercial Loan Officer
+Communications Analyst
+Communications Engineer
+Communications Manager
+Communications Technician
+Community Program Aide
+Company Doctor
+Compensation & Benefits Manager
+Compensation & Benefits Supervisor
+Compensation Analyst
+Compensation Manager
+Compensation Supervisor
+Complaints Utility Investigator
+Compliance Officer
+Compression Molding Operator
+Computer (LAN/WAN) Administrator
+Computer (Micro) Support Specialist
+Computer Applications & Programming Supervisor
+Computer Applications Manager
+Computer Clerk Data Control
+Computer Control Operator
+Computer Data Control Supervisor
+Computer Data Entry Operator
+Computer Data Entry Supervisor
+Computer Database Administrator
+Computer Database Analyst
+Computer Database Design Analyst
+Computer Desktop Publisher
+Computer Disaster Planner
+Computer Equipment Repairer
+Computer Hardware Engineer
+Computer Help Desk Representative
+Computer Help Desk Supervisor
+Computer Information Scientist
+Computer Lead Data Entry
+Computer Lead Systems Analyst
+Computer Manager Network Planning
+Computer Methods Engineer
+Computer Network Administrator
+Computer Network Analyst
+Computer Network Control Technician
+Computer Network Manager
+Computer Network Supervisor
+Computer Operations Manager
+Computer Operations Supervisor
+Computer Operator
+Computer Operator Lead
+Computer Operator Senior
+Computer Peripheral Equipment Operator
+Computer Personal Supervisor
+Computer Processing Scheduler
+Computer Programmer 1
+Computer Programmer 2
+Computer Programmer 3
+Computer Programmer Analyst
+Computer Programmer Engineer
+Computer Programmer Lead
+Computer Programmer Numerical Control
+Computer Programmer Operations Supervisor
+Computer Programmer Quality Assurance
+Computer Programming Manager
+Computer Programming Supervisor
+Computer Sales Representative
+Computer Security Coordinator
+Computer Security Specialist
+Computer Service Representative
+Computer Services Manager
+Computer Software Design Manager
+Computer Software Design Supervisor
+Computer Software Developer
+Computer Software Engineer
+Computer Supervisor Quality Assurance
+Computer Supervisor User Support
+Computer System Hardware Analyst
+Computer Systems & Programming Manager
+Computer Systems Administrator
+Computer Systems Analysis Manager
+Computer Systems Analysis Supervisor
+Computer Systems Analyst
+Computer Systems Engineer
+Computer Systems Manager
+Computer Systems Programmer
+Computer Systems Project Manager
+Computer Tape Librarian
+Computer Technical Support Specialist
+Computer User Support Analyst
+Computer Verifying Clerk
+Computer Web Administrator
+Computer Web Content Administrator
+Computer Web Developer
+Computer Webmaster
+Computer-Aided Designer
+Concrete Finisher
+Concrete Mixing Plant Laborer
+Concrete Mixing Truck Driver
+Construction Assistant Superintendent
+Construction Contractor
+Construction Engineering Manager
+Construction Engineering Supervisor
+Construction Equipment Mechanic
+Construction Equipment Operator
+Construction Foreman
+Construction Helper
+Construction Inspector
+Construction Manager Railroad
+Construction Office Engineer
+Construction Superintendent
+Construction Worker
+Consultant 1
+Consultant 2
+Consultant 3
+Consultant Education
+Consultant Wedding
+Consumer Loan Officer
+Consumer Services Consultant
+Contact Lens Flashing Puncher
+Content Administrator Web
+Contract Administration Manager
+Contract Administration Supervisor
+Contract Administrator
+Contract Coordinator
+Contract Specialist
+Contract Technician
+Contract/Buyer Specialist 1
+Contract/Buyer Specialist 2
+Contract/Buyer Specialist 3
+Contract/Buyer Specialist 4
+Contractor
+Contractor Landscape
+Contracts Manager
+Control Room Operator Power Plant
+Controller Assistant
+Controller Plant
+Conveyor Console Operator
+Conveyor System Operator
+Cook
+Cook Fast Food
+Cook Helper
+Cook Short Order
+Cook Specialty
+Cooling System Operator
+Coordinator Contract
+Coordinator Data Security
+Coordinator Disaster Recovery
+Coordinator Educational Resource
+Coordinator Grant
+Coordinator Help Desk
+Coordinator Home Care Aide
+Coordinator Hospital Quality
+Coordinator Preventive Maintenance
+Coordinator Production
+Coordinator Program Planning
+Coordinator Public Relations
+Coordinator Technical Training
+Coordinator Website
+Coordinator Work Study
+Copier Technician
+Copilot Jet
+Copilot Non-Jet
+Copy Editor
+Copy Machine Operator
+Copy Machine Servicer
+Copy Machine Technician
+Copy Writer
+Copywriter
+Corporate Attorney
+Corporate Tax Accountant
+Correspondent News
+Correspondent Sales
+Corrosion Engineer
+Cosmetologist
+Cost Accountant
+Cost Accounting Clerk
+Cost Accounting Manager
+Cost Accounting Supervisor
+Cost Clerk
+Cost Development Engineer
+Cost Engineer Estimator
+Cost Estimating Supervisor
+Cost Estimator
+Cost Estimator Assistant
+Counselor
+Counselor Credit
+Counselor Dormitory
+Counselor Education
+Counselor Financial Aid
+Counselor Guidance
+Counselor Substance Abuse
+Counter Attendant
+Counter Clerk Parts
+Counter Clerk Photo
+Counter Supply Worker
+Court Abstractor
+Crane Operator
+Crane Operator Overhead
+Crane Operator Traveling
+Crane Tower Operator
+Crater/Packer
+Creative Director
+Credit & Collection Clerk
+Credit & Collection Manager
+Credit & Collection Supervisor
+Credit Analyst
+Credit Authorizer
+Credit Card Control Clerk
+Credit Clerk
+Credit Counselor
+Credit Information Clerk
+Credit Investigator
+Credit Manager
+Credit Representative
+Credit Representative Bank
+Credit Supervisor
+Crime Laboratory Analyst
+Criminalist
+Critical Care Unit Nurse
+Crop Farm Worker
+Crop Farmer
+Crop-Research Scientist
+Crude Oil Tester
+CT Technologist
+Curator
+Currency Machine Operator
+Custodial Supervisor
+Custodian
+Custom Tailor
+Customer Account Clerk
+Customer Center Representative 1
+Customer Center Representative 2
+Customer Center Representative 3
+Customer Sales Clerk
+Customer Service Manager
+Customer Service Printing
+Customer Service Representative 1
+Customer Service Representative 1 Insurance
+Customer Service Representative 2
+Customer Service Representative 2 Insurance
+Customer Service Representative Financial
+Customer Service Supervisor
+Customs Analyst
+Customs Broker
+Cutter Glass
+Cutter Operator
+Cutter Optical Lens
+Cytotechnologist
+Dairy Processing Operator
+Dance Director
+Data Acquisition Technician
+Data Architect
+Data Control Clerk
+Data Control Supervisor
+Data Entry Operator
+Data Entry Operator Lead
+Data Entry Supervisor
+Data Examination Clerk
+Data Librarian
+Data Processing Auditor
+Data Processing Equipment Repairer
+Data Recovery Planner
+Data Security Analyst
+Data Security Coordinator
+Database Administrator
+Database Analyst
+Database Architect
+Database Design Analyst
+Day Care Worker
+Deaf Interpreter
+Dealer Gambling
+Dean of Students
+Deckhand Fishing Vessel
+Decorator Set
+Decorator Store
+Delinquent Account Clerk
+Deliverer
+Delivery-Route Truck Driver
+Dental Appliance Sales Representative
+Dental Assistant
+Dental Ceramist
+Dental Ceramist Assistant
+Dental Hygienist
+Dental Laboratory Technician
+Dental Orthodontic Assistant
+Dentist
+Denture Finisher
+Department Editor
+Department Head
+Department Secretary
+Department Supervisor
+Derrick Helper
+Derrick Operator
+Design Checker Tool
+Design Drafter
+Design Drafter CAD/CAM
+Design Engineer
+Design Engineer Product
+Design Engineer Tool
+Design Engineering Manager
+Design Engineering Supervisor
+Design Supervisor Software
+Designer Commercial
+Designer Computer-Aided
+Designer Display
+Designer Fashion
+Designer Graphic
+Designer Industrial
+Designer Interior
+Designer Museum Exhibit
+Designer Package
+Designer Printed Circuit
+Designer Product
+Designer Set
+Designer Solar Energy Systems
+Designer Tool
+Desktop Analyst
+Desktop Publisher
+Detailer Automobile
+Detailer Pharmaceuticals
+Detective
+Development Engineer
+Diagnostic Medical Sonographer
+Dictating Machine Transcriber
+Die Casting Machine Operator
+Diesel Mechanic
+Diet Clerk
+Dietary Aide
+Dietary Technician
+Dietetics & Food Services Head
+Dietician
+Dietitian
+Dining Room Attendant
+Dining Room Supervisor
+Director Art
+Director Dance
+Director Fast Food Operations
+Director Fundraising
+Director Health Information Services
+Director Housekeeping
+Director Library
+Director Long-Range Planning
+Director Marketing
+Director Nursing
+Director Occupational Therapy
+Director of Biomedical Engineering
+Director Pharmacy
+Director Quality Assurance Hospital
+Director Social Services
+Director Student Services
+Director Volunteer Services
+Disability Development Specialist
+Disaster Recovery Coordinator
+Disaster Recovery Planner
+Disbursement Clerk
+Disc Jockey
+Dishwasher
+Dispatcher Generic
+Dispatcher Motor Vehicle
+Dispatcher Vehicle Maintenance
+Display & Banner Designer
+Display Designer
+Distributing Clerk
+Distribution Manager
+Distribution Supervisor
+District Manager Fast Food
+District Manager Retail
+District Sales Manager
+Doctor Chiropractic
+Documentation Clerk
+Documentation Engineer
+Dog Groomer
+Door Attendant
+Dormitory Supervisor
+Dosimetrist
+Drafter 1
+Drafter 1 Trainee
+Drafter 2
+Drafter 3
+Drafter 4
+Drafter Apprentice
+Drafter Architectural
+Drafter CAD 1
+Drafter CAD 2
+Drafter Cartographic
+Drafter Civil
+Drafter Civil Engineering
+Drafter Design
+Drafter Design CAD/CAM
+Drafter Electrical
+Drafter Electronics
+Drafter Mechanical
+Drafter Structural
+Drafter Utilities
+Drafting Supervisor
+Drawings Checker Engineering
+Drill Press Operator
+Drill Press Setup Operator
+Driller Earth
+Driller Well
+Driver Ambulance
+Driver Bus
+Driver Chauffeur
+Driver Newspaper Delivery
+Driver Taxi
+Driver Tow Truck
+Driver Van
+Driving Instructor
+Drug Abuse Counselor
+Druggist
+Dry Cleaning/Laundry Manager
+Dry-Wall Finisher
+Drywall Installer
+Dump Operator
+Dump Truck Driver
+Duplicating Machine Operator
+e-Commerce Business Analyst
+e-Commerce Programmer
+Earth Driller
+ECG Technician
+Echocardiograph Technician
+Economic Analysis Manager
+Economic Analysis Supervisor
+Economic Analyst
+Economic Analyst Senior
+Economist
+Economist Corporate
+Editor 2
+Editor 3
+Editor 4
+Editor Copy
+Editor Maps
+Editor-in-Chief Newspaper
+Editorial Fact Checker
+EDP Audit Manager
+EDP Audit Supervisor
+EDP Auditor
+Education Consultant
+Education Manager
+Educational Counselor
+Educational Resource Coordinator
+Educational Specialist
+EEO Manager
+EEO Specialist
+EEO Supervisor
+EKG Technician
+Electric Meter Installer
+Electric Meter Repairer
+Electric Tool Repairer
+Electric Utility Drafter
+Electrical Drafter
+Electrical Engineer
+Electrical Engineering Technician
+Electrical Instrument Repairer
+Electrical Repairer
+Electrical Test Engineer
+Electrical Transmission Engineer
+Electrician Certified
+Electrician Helper
+Electrician Journeyman
+Electrician Maintenance
+Electrician Telephone
+Electro-Optical Engineer
+Electrocardiograph Technologist
+Electrolysis Engineer
+Electromechanical Technician
+Electromyographic Technician
+Electronic Equipment Repairer
+Electronic Transfer Coordinator
+Electronics Assembler 1
+Electronics Assembler 2
+Electronics Drafter
+Electronics Engineer
+Electronics Inspector
+Electronics Mechanic
+Electronics Sales Engineer
+Electronics Technician
+Electronics Tester
+Electronics Worker
+Electroplater
+Elementary School Teacher
+Embalmer
+Emergency Medical Technician
+EMG Technician
+Employee Benefits Administrator
+Employee Benefits Manager
+Employee Communications Manager
+Employee Relations Manager
+Employee Relations Representative
+Employee Relations Specialist
+Employee Relations Supervisor
+Employee Services Manager
+Employee Services Supervisor
+Employee Training Manager
+Employee Training Specialist
+Employee Training Supervisor
+Employment Agency Manager
+Employment Assistant
+Employment Clerk
+Employment Interviewer
+Employment Manager
+Employment Recruiter
+Employment Recruiter Professional
+Employment Representative
+Employment Supervisor
+EMT
+Encoding Machine Operator
+Engine Lathe Setup Operator
+Engineer Aerodynamics
+Engineer Aeronautical
+Engineer Agricultural
+Engineer Airport
+Engineer Automotive
+Engineer Biomedical
+Engineer Biomedical Head
+Engineer Cable Outside Plant
+Engineer Central Office Equipment
+Engineer Chemical
+Engineer Chemical Test
+Engineer Chief Hospital
+Engineer Civil
+Engineer Commercial Broadcast
+Engineer Computer Hardware
+Engineer Computer Methods
+Engineer Computer Software
+Engineer Construction Office
+Engineer Corrosion
+Engineer Design
+Engineer Documentation
+Engineer Electrical
+Engineer Electrical Test
+Engineer Electrolysis
+Engineer Electronic Sales
+Engineer Electronics
+Engineer Environmental
+Engineer Facilities
+Engineer Facilities Layout
+Engineer Field Service
+Engineer Flight
+Engineer Hydraulic
+Engineer Industrial
+Engineer Locomotive
+Engineer Logistics
+Engineer Manufacturing
+Engineer Marine
+Engineer Materials Generic
+Engineer Mechanical
+Engineer Mining
+Engineer Operating
+Engineer Optical
+Engineer Packaging
+Engineer Petroleum
+Engineer Photogrammetric
+Engineer Plant
+Engineer Power Distribution
+Engineer Power Systems
+Engineer Power Transmission
+Engineer Product Development
+Engineer Product Safety
+Engineer Production
+Engineer Programmer
+Engineer Project
+Engineer Quality Control
+Engineer Refrigeration
+Engineer Reliability
+Engineer Research
+Engineer Resource Recovery
+Engineer Safety
+Engineer Sales
+Engineer Sanitary
+Engineer Soils
+Engineer Stationary
+Engineer Structural
+Engineer Telecommunications
+Engineer Telephone Equipment
+Engineer Test
+Engineer Tool Design
+Engineer Traffic
+Engineer Transportation
+Engineer Value
+Engineer Water Transportation
+Engineer Welding
+Engineering Administrative Manager
+Engineering Assistant Mechanical
+Engineering Consultant
+Engineering Cost Estimator
+Engineering Design Manager
+Engineering Drafter Civil
+Engineering Drawings Checker
+Engineering Environmental Manager
+Engineering Laboratory Technician
+Engineering Librarian
+Engineering Manager
+Engineering Manager Construction
+Engineering Manager Manufacturing
+Engineering Specialist
+Engineering Specifications Technician
+Engineering Supervisor Admin
+Engineering Supervisor Chemical
+Engineering Supervisor Construction
+Engineering Supervisor Design
+Engineering Supervisor Generic
+Engineering Supervisor Manufacturing
+Engineering Technician Chemical
+Engineering Technician Civil
+Engineering Technician Mechanical
+Enrollment Clerk
+Environmental Engineer
+Environmental Manager Engineering
+Environmental Research Manager
+Environmental Scientist
+Environmental Supervisor
+Environmental Technician
+Equal Employment Opportunity Specialist
+Equal Employment Opportunity Supervisor
+Equipment Operator Construction
+Equipment Operator Heavy
+Equipment Washer
+Erector Fence
+Erector Machinery
+Estate Planner
+Estimating Engineer
+Estimating Supervisor
+Estimator Assistant
+Estimator Automobile Damage
+Estimator Automobile Service
+Estimator Cost
+Estimator Engineering Cost
+Estimator Printing
+Estimator Sales
+Evaluator Special Needs
+Evaporative Cooler Installer
+Executive Assistant
+Executive Chef 1
+Executive Chef 2
+Executive Secretary, CEO
+Executive Secretary, EVP
+Exercise Physiologist
+Exercise Physiology Technologist
+Exhibit Designer Museum
+Expediter
+Expediter Materials
+Expediter Production
+Experimental Psychologist
+Export Sales Manager
+Export/Import Agent
+Export/Import Analyst
+Export/Import Clerk
+Export/Import Supervisor
+Exterminator Pest
+Extractive Supervisor
+Extractor
+Extractor Operator
+Extruder Operator Helper
+Eyeglass Lens Cutter
+Fabricator Assembler
+Fabricator Assembler Metal
+Fabricator Integrated Circuit
+Fabricator Metal
+Facilities & Building Manager
+Facilities & Building Supervisor
+Facilities Engineer
+Facilities Head
+Facilities Planner
+Facilities Supervisor
+Factory Engineer
+Factory Manager
+Family Physician
+Family Practice Physician
+Family Practitioner
+Farm Equipment Mechanic
+Farm Machinery Operator
+Farm Worker Supervisor
+Farm Worker/Crop Field
+Farmer Field Crop
+Fashion Artist
+Fashion Designer
+Fashion Illustrator
+Fast Food Assistant Manager
+Fast Food Cook
+Fast Food Manager 1
+Fast Food Manager 2
+Fast Food Manager 3
+Fast Food Worker
+Fence Erector
+Fiction Writer
+Field Representative Computers
+Field Sales Supervisor
+Field Service Engineer
+Field Service Representative
+Field Service Technician
+Field Services Supervisor
+File Clerk
+File Clerk Benefit Claims
+File Drawings/Map Clerk
+Filling Station Attendant
+Filling/Packaging Operator
+Film or Tape Librarian
+Final Assembler
+Final Inspector
+Financial Aid Counselor
+Financial Analysis Manager
+Financial Analysis Supervisor
+Financial Analyst
+Financial Analyst Accountant
+Financial Sales Representative
+Finisher Concrete
+Finisher Denture
+Finisher Dry-Wall
+Finisher Porcelain
+Finisher Terrazzo
+Finisher Tile
+First Aid Attendant
+Fishing Vessel Deckhand
+Fleet Manager
+Fleet Supervisor
+Flight Attendant
+Flight Engineer
+Flight Mechanic
+Flight Security Specialist
+Floor Broker
+Florist
+Fluid Power Mechanic
+Fluorescent Lamp Replacer
+Flying Instructor 1
+Flying Instructor 2
+Folder Inspector
+Folding Machine Operator
+Food Checker
+Food Chemist
+Food Counter Attendant
+Food Counter Worker
+Food Dining Room Attendant
+Food Fast Food Cook
+Food Sales Clerk
+Food Scientist
+Food Services & Dietetics Head
+Food Services Manager 1
+Food Services Manager 2
+Food Services Manager 3
+Food Services Supervisor
+Food Services Worker
+Food Short Order Cook
+Food Technologist
+Food Worker Fast
+Forecaster Weather
+Foreign Clerk
+Foreman
+Foreman Assembly Line
+Foreman Assistant
+Foreman Bindery
+Foreman Construction
+Foreman Mechanic
+Foreman Print Shop
+Foreman Production
+Foreman Yard
+Forensic Science Technician
+Forest Worker
+Forging Machine Operator
+Forklift Operator
+Forms Analysis Manager
+Foundry Molder
+Foundry Worker
+Fraud Investigator
+Front End Loader Operator
+Fuel Injection Servicer
+Fumigator
+Fundraising Director
+Funds Electronic Transfer Clerk
+Funeral Attendant
+Funeral Manager
+Furnace Installer & Repairer
+Furniture Repairer
+Furniture Restorer
+Furniture Upholsterer
+Gambling Dealer
+Game Warden
+Garage Mechanic
+Garage Servicer
+Garage Supervisor
+Garbage Truck Driver
+Garde Manger
+Gardener
+Garment Inspector
+Garment Sewer
+Gas Inspector
+Gas Station Attendant
+Gate Guard
+Gem and Diamond Cutter
+Gemologist
+General Claims Agent
+General Clerk
+General Clerk News
+General Clerk Sales
+General Duty Nurse
+General Helper
+General Maintenance Carpenter
+General Maintenance Supervisor
+General Maintenance Worker
+General Practitioner
+General Production Worker
+General Teller
+General/Institution Cook
+Generic Clerical Supervisor
+Generic Clerk Interviewing
+Generic Dispatcher
+Generic Engineer Materials
+Generic Engineering Supervisor
+Generic Operations Supervisor
+Geographer
+Geologist
+Geophysicist
+Geriatric Nurse
+Gerontology Nurse
+Glass Cutter
+Glass Setter
+Glazier
+Glazier Plate Glass
+Gluer
+Golf Club Manager
+Governess
+Government Affairs Manager
+Government Affairs Supervisor
+Government Sales Supervisor
+Grader Operator
+Grant Coordinator
+Graphic Artist
+Graphic Design Supervisor
+Graphic Designer
+Graphic Specialist/Photosetter
+Graphic Supervisor
+Greenskeeper
+Grinder Operator Cement
+Grinder Rough
+Grinding Mill Operator
+Grocery Buyer
+Groomer Dog
+Groundskeeper
+Guard & Driver Armored Car
+Guard Gate
+Guard Security
+Guidance Counselor
+Gunsmith
+Gutter Installer/Repairer
+Gynecologist
+Hair Cutter
+Hairdresser
+Hand Packager
+Hand Sewer
+Handler Materials
+Handyman
+Hardware Analyst Computer Systems
+Hardware Design Manager
+Hardware Design Supervisor
+Hardware Engineer Computer
+Head Bookkeeper
+Head Engineer Biomedical
+Head Mechanic
+Head Minister
+Head Nurse
+Head of Admitting
+Head of Dietary & Food Services
+Head of Facilities
+Head of Housekeeping
+Head of Medical Laboratory
+Head of Medical Records
+Head of Occupational Therapy
+Head of Operating Room Services
+Head of Pastoral Care
+Head of Pharmacy
+Head of Quality Assurance
+Head of Support Services
+Head of Surgical Services
+Head of Volunteers
+Head Teller
+Headmaster Principal
+Health & Safety Officer
+Health Educator
+Health Equipment Servicer
+Health Information Services Director
+Health Mental Manager
+Health Unit Clerk
+Hearing Aid Specialist
+Hearing Impaired Teacher
+Hearing Test Technician
+Hearing Therapist
+Heating/Air Conditioning Servicer
+Heavy Equipment Mechanic
+Heavy Equipment Operator
+Heavy Truck Driver
+Heavy-Duty Press Operator
+Help Desk Analyst
+Help Desk Coordinator
+Help Desk Manager
+Help Desk Representative
+Help Desk Supervisor
+Helper Baker
+Helper Bindery
+Helper Brick Mason
+Helper Carpenter
+Helper Chemical Process
+Helper Construction
+Helper Derrick
+Helper Electrician
+Helper Extruder Operator
+Helper General
+Helper Kitchen
+Helper Machine Operator
+Helper Office
+Helper Pipefitter
+Helper Production
+Helper Spray Paint
+Helper Surveyor
+Helper Tile Setter
+Hemotherapist
+Herbarium Worker
+High School Teacher
+Hoist & Winch Operator
+Home Care Aide
+Home Care Aide Coordinator
+Home Economist
+Home Health Aide
+Home Health Aide Coordinator
+Home Therapy Teacher
+Horizontal Boring Operator
+Horticulturist
+Hospital Admitting Clerk
+Hospital Admitting Director
+Hospital Cleaner
+Hospital Diet Clerk
+Hospital Director Food Services
+Hospital Laundry Manager
+Hospital Legal Services Head
+Host/Hostess Restaurant
+Host/Hostess Show
+Hotel Attendant
+Hotel Chef
+Hotel Clerk
+Hotel Executive Chef 1
+Hotel Executive Chef 2
+Hotel Facilities Manager
+Hotel Food Counter Worker
+Hotel Hostess Restaurant
+Hotel Housekeeping Attendant
+Hotel Laundry Worker
+Hotel Linen Room Attendant
+Hotel Pastry Chef
+Hotel Reservation & Front Office
+Hotel Room Service Clerk
+Hotel Sales Representative
+Hotel Supervisor Baggage
+Hotel Waiter/Waitress
+Hotel Wine Steward/Stewardess
+Housecleaner
+Housekeeper Hospital
+Housekeeping Aide
+Housekeeping Attendant
+Housekeeping Director
+Housekeeping Head
+Housekeeping Supervisor
+HRIS Supervisor
+Human Resources Advisor
+Human Resources Analyst
+Human Resources Assistant
+Human Resources Clerk
+Human Resources Communications Manager
+Human Resources Development Manager
+Human Resources Generalist
+Human Resources Information Systems Supervisor
+Human Resources Manager
+Human Resources Manager EEO
+Human Resources Manager Employee Relations
+Human Resources Plant Manager
+Human Resources Plant Supervisor
+Human Resources Sprvr Employee Relations
+Human Resources Supervisor
+Human Resources Technician
+Human Resources Training Manager
+HVAC Mechanic
+Hydraulic Engineer
+Hydrographer
+Hygienist Dental
+Hygienist Industrial
+Illustrator
+Illustrator Technical
+Import/Export Agent
+Import/Export Analyst
+Import/Export Clerk
+Import/Export Supervisor
+Induction Brazer
+Industrial Designer
+Industrial Engineer
+Industrial Engineering Technician
+Industrial Hygienist
+Industrial Nurse
+Industrial Nurse Head
+Industrial Physician
+Industrial Psychologist
+Industrial Safety Technician
+Information Center Representative
+Information Center Specialist
+Information Clerk
+Information Processing Engineer
+Information Systems Audit Manager
+Information Systems Audit Supervisor
+Information Systems Auditor
+Information Systems Documentation Clerk
+Information Systems Librarian
+Information Systems Manager
+Information Systems Operations Manager
+Information Systems Representative
+Information Technology Audit Manager
+Information Technology Audit Supervisor
+Information Technology Auditor
+Information Technology Supervisor Data Entry
+Injection Molder
+Inserting Machine Operator
+Inside Sales Clerk
+Inspector Aircraft
+Inspector Airplane
+Inspector Component Parts
+Inspector Construction
+Inspector Final
+Inspector Garment
+Inspector Gas
+Inspector Instrument
+Inspector Integrated Circuits
+Inspector Mechanical
+Inspector Quality Control
+Inspector Safety
+Installer & Repairer Furnace
+Installer 1 Air Conditioning
+Installer 2 Air Conditioning
+Installer Automobile Accessories
+Installer Burglar Alarm
+Installer Cable Television
+Installer Drywall
+Installer Electric Meter
+Installer Evaporative Cooler
+Installer Molding and Trim
+Installer Pump
+Installer Telephone
+Installer Telephone Line
+Installer Telephone Station
+Installment Loan Clerk
+Instructor Business Education
+Instructor Flying 1
+Instructor Flying 2
+Instructor Physical Education
+Instructor Sports
+Instructor Vocational Training
+Instrument Inspector
+Instrument Repairer Electrical
+Instrument Technician
+Insulation Worker
+Insurance & Senior Benefits Clerk
+Insurance Adjustor Claims
+Insurance Agent
+Insurance Agent Special Group
+Insurance and Risk Manager
+Insurance Automobile Damage Appraiser
+Insurance Benefits Claims Processor
+Insurance Billing Clerk
+Insurance Branch Manager
+Insurance Cancellation Clerk
+Insurance Claims Adjuster
+Insurance Claims Clerk
+Insurance Claims Processor
+Insurance Clerk
+Insurance Commercial Property Underwriter
+Insurance Customer Service Representative 1
+Insurance Customer Service Representative 2
+Insurance Manager
+Insurance Policy Change Clerk
+Insurance Policy Value Calculator
+Insurance Policyholder Information Clerk
+Insurance Rater
+Insurance Reinsurance Clerk
+Insurance Research Analyst
+Insurance Review Clerk
+Insurance Reviewer
+Insurance Sales Agent
+Insurance Special Agent
+Insurance Supervisor
+Insurance Underwriter
+Insurance Underwriting Clerk
+Integrated Circuit Fabricator
+Interior Designer
+Internal Auditing Manager
+Internal Auditing Supervisor
+Internal Auditor
+Internal Auditor Manager Information Systems
+International Sales Manager
+Interpreter
+Interpreter Deaf
+Interpreter Sign Language
+Interviewing Clerk Generic
+Inventory Analyst
+Inventory Clerk
+Inventory Control Clerk
+Inventory Control Manager
+Inventory Control Supervisor
+Investigator
+Investigator Alarm
+Investigator Credit
+Investigator Fraud
+Investigator Utility Complaints
+Investment Analyst
+Investment Specialist
+Investor Relations Manager
+Investor Relations Supervisor
+Invoice Clerk
+Iron Worker Structural
+IT Audit Manager
+IT Audit Supervisor
+IT Auditor
+IT Computer Operator
+IT Consultant
+IT Data Control Supervisor
+IT Equipment Repairer
+IT Field Representative
+IT Lead Data Entry Operator
+IT Librarian
+IT Manager Applications
+IT Manager Software Design
+IT Manager Systems Analysis
+IT Operations Supervisor
+IT Operator Data Entry
+IT Operator Peripheral Equipment
+IT Processing Scheduler
+IT Sales Representative
+IT Scientist
+IT Services Manager
+IT Supervisor Applications & Programming
+IT Supervisor Data Entry
+IT Supervisor Programming
+IT Supervisor Quality Assurance
+IT Supervisor Software Design
+IT Supervisor Systems Analysis
+IT Systems & Program Manager
+IT Systems Administrator
+IT Systems Project Manager
+IT Technical Support Specialist
+IT Telecommunications Technician
+IT Verifying Clerk
+IT Web Administrator
+IT Web Developer
+IT Webmaster
+Janitor
+Janitorial Supervisor
+Jet Aircraft Mechanic
+Jet Copilot
+Jet Pilot
+Jeweler
+Jewelry Repairer
+Job Analyst
+Job Development Specialist
+Job Order Clerk
+Job Printer
+Junior Buyer
+Junior Clerk
+Key Entry Operator
+Kick Press Operator
+Kitchen Assistant
+Kitchen Chef
+Kitchen Helper
+Kitchen Porter
+Knitting Machine Operator
+Lab Technician
+Lab Technician Calibration
+Lab Technician Chemical
+Lab Utilities Technician
+Labor Relations Representative
+Labor Relations Specialist
+Labor Relations Supervisor
+Laboratory Aide
+Laboratory Assistant Metallurgical
+Laboratory Clerk
+Laboratory Head
+Laboratory Supervisor
+Laboratory Supervisor University
+Laboratory Technician
+Laboratory Technician Medical
+Laboratory Technician Utilities
+Laboratory Test Mechanic
+Laboratory Tester
+Laboratory Tester Oil
+Laboratory Worker Photofinishing
+Laborer Concrete Mixing Plant
+Laborer Construction
+Laborer Machine Shop
+Laborer Paving
+Laborer Production
+Laborer Receiving
+Laborer Shop
+Laborer Slaughter
+Laborer Warehouse
+LAN/WAN Administrative Manager
+LAN/WAN Administrative Supervisor
+LAN/WAN Administrator
+LAN/WAN Administrator
+LAN/WAN Analyst
+LAN/WAN Integrator
+LAN/WAN Technician
+Land Surveyor
+Landscape Architect
+Landscape Contractor
+Language Pathologist
+Laser Beam Machine Operator
+Laser Engineer-Scientist
+Laser Technician
+Lathe Engine Setup Operator
+Lathe Operator Numerical Control
+Laundry Attendant Self Service
+Laundry Commercial Worker
+Laundry Manager Hospital
+Laundry Operator
+Laundry/Dry Cleaning Manager
+Law Librarian
+Lawyer Practicing
+Layout Artist
+Layout Editor
+Layout Worker
+Lead Computer Operator
+Lead Computer Programmer
+Lead Data Entry Operator
+Lead Production
+Lead Shipping & Receiving
+Lead Surveyor
+Lead Systems Analyst
+Lead Teller
+Lease Records Clerk
+Leasing Agent Residence
+Leasing Manager/Property
+Leasing Sales Representative Automotive
+Lecturer
+Legal Aide
+Legal Assistant
+Legal Counsel
+Legal Counsel Corporate
+Legal Manager
+Legal Secretary
+Legal Services Head Hospital
+Lens Cutter
+Librarian
+Librarian 1
+Librarian 2
+Librarian 3
+Librarian 5
+Librarian Acquisitions
+Librarian Audiovisual
+Librarian Branch
+Librarian Data
+Librarian Engineering
+Librarian Film or Tape
+Librarian Head
+Librarian Law
+Librarian Medical
+Librarian Music
+Librarian Special Library
+Librarian Technical
+Librarian Video
+Library Assistant
+Library Clerk Braille
+Library Department Head
+Library Director
+Library Helper
+Library Supervisor
+Library Technical Assistant
+Library Technician
+Licensed Occupational Therapist
+Licensed Physical Therapist
+Licensed Practical Nurse
+Licensed Vocational Nurse
+Life Underwriter
+Lifeguard
+Light Fixture Servicer
+Light Truck Driver
+Line Repairer Utilities
+Line Servicer
+Line Supervisor
+Line Supervisor Telephone
+Linen Room Attendant
+Lithographer Operator
+Lithographic Photographer
+Lithographic Platemaker
+Lithographic Stripper
+Livestock Sales Representative
+Loader and Unloader
+Loan Clerk 2
+Loan Clerk Installment
+Loan Closer
+Loan Collector Commercial
+Loan Collector Consumer
+Loan Interviewer
+Loan Officer
+Loan Officer Commercial
+Loan Officer Consumer
+Loan Officer Mortgage
+Loan Processor
+Loan Review Analyst
+Loan Teller
+Loan Underwriter Mortgage
+Local Area Network Administrator
+Lock Expert
+Locksmith
+Locomotive Engineer
+Lodging Facilities Manager
+Logger
+Logistics Analyst
+Logistics Engineer
+Logistics Engineering Technician
+Logistics Manager
+Logistics Specialist
+Long-Range Planning Analyst
+Long-Range Planning Director
+Long-Range Planning Manager
+Long-Range Planning Supervisor
+Longshore Equipment Operator
+Loom Operator
+LPN
+Lubrication Technician
+Lubricator
+Lunchroom Counter Attendant
+Machine Assembler
+Machine Builder
+Machine Heavy Press Operator
+Machine Kick Press Operator
+Machine Milling Setup Operator
+Machine Operator
+Machine Operator Helper
+Machine Operator Injection
+Machine Rolling Attendant
+Machine Rolling Setup Operator
+Machine Setup Operator
+Machine Shop Drill Press Operator
+Machine Shop Drill Press Setup
+Machine Shop Laborer
+Machine Shop Layout
+Machine Shop Machine Builder
+Machine Shop Machinist
+Machine Shop Maintenance
+Machine Shop Mill/Plan
+Machine Shop Nibbler Operator
+Machine Shop Numeric Control Setup Operator
+Machine Shop Setup Operator
+Machine Shop Supervisor
+Machine Shop Tool & Die Maker
+Machine Tool Operator
+Machine Tool Setup Operator
+Machinery Erector
+Machinery Maintenance Mechanic
+Machinery Mechanic
+Machinist Computer-Aided
+Machinist Experimental
+Machinist General
+Machinist Lathe Setup Operator
+Machinist Layout Worker
+Machinist Maintenance
+Machinist Production
+Machinist Setup Operator
+Magnetic Imaging Technologist
+Maid
+Mail Clerk
+Mail Sorter
+Mailer
+Mailroom Clerk
+Mailroom Folding Operator
+Mailroom Insert Operator
+Mailroom Messenger
+Mailroom Supervisor
+Maintenance Associate
+Maintenance Carpenter
+Maintenance Electrician
+Maintenance Engineer
+Maintenance Helper
+Maintenance Machinist
+Maintenance Mechanic
+Maintenance Person Aircraft
+Maintenance Pipefitter
+Maintenance Repairer Building
+Maintenance Repairer Industrial
+Maintenance Supervisor
+Maintenance Supervisor 1
+Maintenance Supervisor 2
+Maintenance Supervisor General
+Maintenance Technician
+Maintenance Technician PC
+Maintenance Water Worker
+Maintenance Worker General
+Make-Ready Mechanic
+Mammography Technologist
+Management Configuration Analyst
+Management Development Manager
+Management Development Supervisor
+Management Trainee
+Manager 2 R&D
+Manager Accounting
+Manager Accounts Payable
+Manager Accounts Receivable
+Manager Administrative Engineering
+Manager Administrative Services
+Manager Advertising
+Manager Applications Programming
+Manager Area Sales
+Manager Assistant Fast Food
+Manager Assistant Retail Store (Experience)
+Manager Assistant Retail Store (Revenue)
+Manager Automobile Service Station
+Manager Automotive Service
+Manager Bakery
+Manager Beauty or Barber Shop
+Manager Benefits
+Manager Bookkeeping
+Manager Bowling Alley
+Manager Branch Office
+Manager Brewing
+Manager Budget
+Manager Business Administration
+Manager Business College/University
+Manager Case RN
+Manager Cashiering
+Manager Chemical Plant
+Manager Circulation
+Manager Coffee Shop
+Manager Collection
+Manager Compensation
+Manager Compensation & Benefits
+Manager Computer Applications
+Manager Computer Networks
+Manager Computer Operations
+Manager Computer Services
+Manager Construction Engineering
+Manager Contract Administration
+Manager Contracts
+Manager Cost Accounting
+Manager Credit
+Manager Credit & Collection
+Manager Customer Service
+Manager Department
+Manager Design Engineering
+Manager Distribution
+Manager Economic Analysis
+Manager EDP Audit
+Manager Education
+Manager EEO
+Manager Employee Communications
+Manager Employee Relations
+Manager Employee Services
+Manager Employee Training
+Manager Employment
+Manager Employment Agency
+Manager Engineering
+Manager Environmental Engineering
+Manager Environmental Research
+Manager Export Sales
+Manager Facilities & Building
+Manager Factory
+Manager Fast Food 1
+Manager Fast Food 2
+Manager Fast Food 3
+Manager Financial Analysis
+Manager Fleet
+Manager Food Services 1
+Manager Food Services 2
+Manager Food Services 3
+Manager Forms Analysis
+Manager Funeral Home
+Manager Golf Club
+Manager Government Affairs
+Manager Hardware Design
+Manager Help Desk
+Manager Hospital Laundry
+Manager Human Resources
+Manager Insurance
+Manager Insurance Office
+Manager Internal Audit
+Manager International Sales
+Manager Inventory Control
+Manager Investor Relations
+Manager Laundry
+Manager Leasing
+Manager Legal
+Manager Long-Range Planning
+Manager Management Development
+Manager Manufacturing
+Manager Manufacturing Engineering
+Manager Market Research
+Manager Marketing
+Manager Marketing Media
+Manager Materials
+Manager Medical Laboratory
+Manager Medical Services
+Manager Medical Unit
+Manager Membership
+Manager Mental Health
+Manager Merchandising
+Manager Motel
+Manager National Sales
+Manager Nursery
+Manager Office
+Manager Operations
+Manager Operations Research
+Manager Order Processing
+Manager Packaging
+Manager Parts
+Manager Payroll
+Manager Personnel
+Manager Physical Therapy
+Manager Plant (Experience)
+Manager Plant (Revenue)
+Manager Plant Personnel
+Manager Product Development
+Manager Production
+Manager Production Control & Planning
+Manager Production Planning & Control
+Manager Professional Association
+Manager Property
+Manager Psychological Services
+Manager Public Relations
+Manager Purchasing
+Manager Quality Assurance
+Manager Quality Control
+Manager R&D 1
+Manager Railroad Construction
+Manager Real Estate
+Manager Real Estate Firm
+Manager Restaurant 1
+Manager Restaurant 2
+Manager Restaurant 3
+Manager Retail Area
+Manager Retail District
+Manager Retail Sales Region
+Manager Retail Store (Experience)
+Manager Retail Store (Revenue)
+Manager Risk
+Manager Sales 1
+Manager Sales 2
+Manager Sales 3
+Manager Sales Account
+Manager Sales Order
+Manager Sales Product or Brand
+Manager Sales Training
+Manager Security
+Manager Software Design
+Manager Systems & Programming
+Manager Systems Analysis
+Manager Tax
+Manager Tax Compliance
+Manager Tax Research
+Manager Technical Publications
+Manager Technical Writers
+Manager Telecommunications
+Manager Telemarketing
+Manager Theater
+Manager Trade Association
+Manager Trade Relations
+Manager Traffic
+Manager Transportation
+Manager Travel
+Manager Travel Agency
+Manager Underwriting
+Manager Urban Renewal
+Manager Warehouse
+Manager Website
+Manager Wholesale
+Manicurist
+Manual Packager
+Manufactured Buildings Worker
+Manufacturer's Agent
+Manufacturer's Representative
+Manufacturing Engineer
+Manufacturing Engineering Manager
+Manufacturing Engineering Supervisor
+Manufacturing Manager
+Manufacturing Worker
+Map Editor
+Map Maker
+Map Maker, Mapping Scientist
+Map/File Drawings Clerk
+Marine Engine Mechanic
+Marine Engineer
+Marine Services Technician
+Marker Merchandise
+Market Research Analyst
+Market Research Manager
+Market Research Supervisor
+Marketing Administration Supervisor
+Marketing Director
+Marketing Information Supervisor
+Marketing Manager
+Marketing Representative
+Marketing Survey Worker
+Marking Clerk
+Mason Brick
+Mason Brick Helper
+Mason Cement
+Massage Therapist
+Masseur/Masseuse
+Materials Control Clerk
+Materials Coordinator
+Materials Engineer Generic
+Materials Expediter
+Materials Handler
+Materials Handler Warehouse
+Materials Manager
+Materials Scheduler
+Materials Scheduling Clerk
+Materials Scientist
+Materials Supervisor
+Mathematical Statistician
+Mathematical Technician
+Mathematician
+Meat Cutter Retail
+Mechanic Aircraft
+Mechanic Aircraft Engine
+Mechanic Automobile
+Mechanic Automotive Equipment
+Mechanic Automotive Tune-up
+Mechanic Avionics
+Mechanic Diesel
+Mechanic Electronics
+Mechanic Farm Equipment
+Mechanic Fluid Power
+Mechanic Foreman
+Mechanic Fuel Injection
+Mechanic Head
+Mechanic Heavy Equipment
+Mechanic HVAC
+Mechanic Jet Aircraft
+Mechanic Machinery Maintenance
+Mechanic Maintenance
+Mechanic Marine Engine
+Mechanic New Car
+Mechanic Office Equipment
+Mechanic Powerhouse
+Mechanic Prop Aircraft
+Mechanic Refrigeration
+Mechanic Research
+Mechanic Sewing Machine
+Mechanic Sheet Metal
+Mechanic Small Engine
+Mechanic Telephone Maintenance
+Mechanic Transmission
+Mechanic Truck
+Mechanical Building Maintenance Supervisor
+Mechanical Design Technician
+Mechanical Drafter
+Mechanical Engineer
+Mechanical Engineering Technician
+Mechanical Inspector
+Media Center Director School
+Media Manager
+Media Supervisor
+Medical Acupressurist
+Medical Admitting Clerk
+Medical Admitting Head
+Medical Ambulance Driver
+Medical Animal Hospital Clerk
+Medical Assistant
+Medical Audiologist
+Medical Billing Clerk
+Medical Cardiac Technician
+Medical Central-Service Technician
+Medical Cephalometric Analyst
+Medical Chief Hospital Engineer
+Medical Clinical Specialist
+Medical CT Technologist
+Medical Cytotechnologist
+Medical Dental Assistant
+Medical Dental Hygienist
+Medical Dentist
+Medical Diet Clerk
+Medical Dietary Aide
+Medical Director Admitting
+Medical Director Industrial
+Medical Director Pharmacy
+Medical Echocardiograph Technician
+Medical EKG Technician
+Medical Emergency Technician
+Medical EMG Technician
+Medical Equipment Servicer
+Medical Exercise Physiologist
+Medical Family Practitioner
+Medical General Practitioner
+Medical General Surgeon
+Medical Gynecologist
+Medical Head Nurse
+Medical Head of Operating Room
+Medical Home Care Aide Coordinator
+Medical Home Health Aide
+Medical Housekeeper
+Medical Industrial Hygienist
+Medical Laboratory Head
+Medical Laboratory Manager
+Medical Laboratory Technician
+Medical Librarian
+Medical Licensed Practical Nurse
+Medical Magnetic Imaging Technologist
+Medical Medication Certified Technician
+Medical Mental Retardation Aide
+Medical Neurologist
+Medical Neurosurgeon
+Medical Nuclear Technician
+Medical Nurse Anesthetist
+Medical Nurse Case Manager
+Medical Nurse Critical Care
+Medical Nurse Gerontology
+Medical Nurse Midwife
+Medical Nurse Office
+Medical Nurse Practitioner
+Medical Nurse Private Duty
+Medical Nurse Shift Supervisor
+Medical Nursing Aide
+Medical Nursing Assistant
+Medical Nursing Instructor
+Medical Nursing Manager
+Medical Nursing Supervisor
+Medical Obstetrician
+Medical Occupational Nurse
+Medical Occupational Therapist
+Medical Occupational Therapy Aide
+Medical Occupational Therapy Assistant
+Medical Occupational Therapy Head
+Medical Ophthalmic Technician
+Medical Optometric Assistant
+Medical Optometrist
+Medical Oral Surgeon
+Medical Orderly
+Medical Orthodontic Assistant
+Medical Orthodontist
+Medical Orthoptist
+Medical Orthotics Assistant
+Medical Orthotist
+Medical Outpatient Admitting Clerk
+Medical Paramedic
+Medical Pathologist
+Medical Pediatrician
+Medical Perfusionist
+Medical Periodontist
+Medical Pharmacist
+Medical Pharmacy Technician
+Medical Pheresis Specialist
+Medical Phlebotomist
+Medical Physical Therapy Aide
+Medical Physical Therapy Assistant
+Medical Physician Assistant
+Medical Physicist
+Medical Podiatrist
+Medical Polysomnographic Technician
+Medical Prosthetics Assistant
+Medical Prosthetist
+Medical Psychiatric Aide
+Medical Psychiatric Technician
+Medical Psychiatrist
+Medical Public Health Nurse
+Medical Quality Assurance
+Medical Quality Assurance Head
+Medical Radiation Diagnostic Technologist
+Medical Radiation Dosimetrist
+Medical Radiologist Diagnostic
+Medical Radiologist Therapeutic
+Medical Records Administrator
+Medical Records Clerk
+Medical Records Coding Technician
+Medical Records Head
+Medical Records Technician
+Medical Recreational Therapist
+Medical Respiratory Technician
+Medical Respiratory Therapist
+Medical Sales Representative
+Medical School Nurse
+Medical Secretary
+Medical Services Chiropractor
+Medical Services Manager
+Medical Social Researcher
+Medical Social Worker
+Medical Sonographer
+Medical Speech Therapist
+Medical Staff Nurse
+Medical Stenographer
+Medical Sterilizer
+Medical Supervisor Industrial Nursing
+Medical Surgical Technician
+Medical Technical Sales
+Medical Technician Stress
+Medical Technologist
+Medical Technologist Chief
+Medical Technologist Microbiology
+Medical Transcriber
+Medical Transporter
+Medical Ultrasound Technologist
+Medical Unit Clerk
+Medical Unit Manager
+Medical Veterinarian
+Medical Veterinary Technician
+Medical Voice Therapist
+Medical X-Ray Technician
+Medication Certified Technician
+Medium Truck Driver
+Meeting Manager
+Melter
+Membership Manager
+Membership Solicitor
+Mental Health Manager
+Mental Health Technician
+Mental Retardation Aide
+Mentally Impaired Teacher
+Merchandise Displayer
+Merchandise Marker
+Merchandising Manager
+Merchandising Supervisor
+Messenger
+Metal Body Repairer
+Metal Fabricator
+Metal Fabricator Assembler
+Metallurgical Lab Assistant
+Metallurgical Technician
+Meteorologist
+Meter Reader
+Methods and Procedures Analyst
+Metrologist
+Microbiologist
+Microbiology Technologist
+Microcomputer Support Specialist
+Microelectronics Technician
+Microfilm Clerk
+Microfilming Document Preparer
+Microsystems Analyst
+Midwife Nurse
+Miller
+Milling/Planing Machine Operator
+Milling/Planing Machine Setup Operator
+Millwright
+Mine Engineer
+Mine Superintendent
+Mining Engineer
+Mining Machine Operator
+Minister
+Minister Head
+Mixer Paint & Varnish
+Mixer Sound
+Mobile Crane Operator
+Molder Foundry
+Molder Injection
+Molder Metal
+Molding Machine Injection Operator
+Molding Machine Operator
+Molding Operator Compression
+Molding Operator Vacuum
+Monitor Alarm Signal
+Monitor Surveillance System
+Mortgage Clerk
+Mortgage Loan Interviewer
+Mortgage Loan Officer
+Mortgage Loan Underwriter
+Mortician
+Motel Clerk
+Motel Manager
+Motor Vehicle Dispatcher
+Motor Vehicle Supervisor
+MRI Technologist
+Multiple Spindle Drilling Machine Operator
+Municipal Bonds Underwriter
+Museum Exhibit Designer
+Museum Scheduler
+Museums Teacher
+Music Librarian
+Music Teacher
+N/C Machine Operator
+N/C Programmer
+Nanny
+National Sales Manager
+Navigator Aircraft
+Needleworker
+Network Analyst Computer
+Network Architect
+Network Communications Technician
+Network Control Manager
+Network Control Supervisor
+Network Control Technician
+Network Planning Analyst
+Network Planning Manager
+Network Planning Supervisor
+Network/Data Communications Manager
+Neurologist
+Neurosurgeon
+New Accounts Representative Financial
+New-Car Prep Mechanic
+News Anchor
+News Assistant
+News Correspondent
+News Photographer
+News Reporter
+Newscaster
+Newspaper Delivery Driver
+Newspaper Editor-in-Chief
+Nibbler Operator
+Nondestructive Tester
+Note Teller
+Nuclear Medical Technician
+Nuclear Medical Technologist
+Numerical Control Machine Operator
+Numerical Control Machine Setup Operator
+Numerical Control Programmer
+Nurse 2nd Level Executive
+Nurse Aide
+Nurse Anesthetist
+Nurse Assistant
+Nurse Case Manager
+Nurse CCU
+Nurse Charge
+Nurse Children's
+Nurse First Aid
+Nurse General Duty
+Nurse Geriatric
+Nurse Gerontology
+Nurse Head
+Nurse Industrial
+Nurse Licensed Practical
+Nurse Midwife
+Nurse Occupational
+Nurse Office
+Nurse Practitioner
+Nurse Private Duty
+Nurse Public Health
+Nurse Registered
+Nurse School
+Nurse Supervisor of Occupational Health
+Nursery Manager
+Nursery School Attendant
+Nursery Worker
+Nursing Aide
+Nursing Assistant
+Nursing Assistant Certified
+Nursing Director
+Nursing Instructor
+Nursing Manager
+Nursing Manager/Director
+Nursing Services Instructor
+Nursing Supervisor
+Nursing Supervisor Shift
+Obstetrician
+Occupational Nurse
+Occupational Nurse Supervisor
+Occupational Therapist
+Occupational Therapist Director
+Occupational Therapy Aide
+Occupational Therapy Assistant
+Occupational Therapy Head
+Occupational Therapy Top Executive
+Off-Line Equipment Operator
+Office Clerk 1
+Office Clerk 2
+Office Equipment Sales Representative
+Office Helper
+Office Machine Assembler
+Office Machines Servicer
+Office Manager
+Office Nurse
+Office Supervisor
+Officer Compliance
+Officer Ship
+Offset Press Technician 2
+Offset Press Technician 3
+Oil Laboratory Tester
+Oiler
+Operating Engineer
+Operating Engineer Refrigeration
+Operating Room Aid
+Operating Room Head
+Operating Room Technician
+Operating Systems Programmer
+Operating Systems Programming Supervisor
+Operations Manager
+Operations Manager
+Operations Research Analyst
+Operations Research Manager
+Operations Research Supervisor
+Operations Supervisor Generic
+Operator Audiovisual Equipment
+Operator Bindery
+Operator Blacktop Paver
+Operator Blueprint Machine
+Operator Boring Machine
+Operator Braille
+Operator Bulldozer
+Operator Camera
+Operator Casting Machine
+Operator Central Office
+Operator Chemical
+Operator Chemical Plant
+Operator Coach
+Operator Collator
+Operator Computer
+Operator Computer Control
+Operator Computer Peripheral Equipment
+Operator Construction Equipment
+Operator Conveyor System
+Operator Copy Machine
+Operator Cutter
+Operator Dairy Processing
+Operator Data Entry
+Operator Data Entry Lead
+Operator Derrick
+Operator Die Casting Machine
+Operator Drill Press
+Operator Drill Press Setup
+Operator Dump
+Operator Engine Lathe Setup
+Operator Extractor
+Operator Extruder Helper
+Operator Farm Machinery
+Operator Folding Machine
+Operator Forging Machine
+Operator Forklift
+Operator Front End Loader
+Operator Grinding Mill
+Operator Heavy-Duty Press
+Operator Hoist & Winch
+Operator Inserting Machine
+Operator Kick Press
+Operator Knitting Machine
+Operator Laser Beam Machine
+Operator Lathe
+Operator Laundry
+Operator Lithographer
+Operator Longshore Equipment
+Operator Loom
+Operator Machine
+Operator Machine Helper
+Operator Machine Injection
+Operator Machine Setup
+Operator Milling Machine Setup
+Operator Milling/Planing
+Operator Mining Machine
+Operator Molding Machine
+Operator Nibbler
+Operator Numerical Control Machine
+Operator Overhead Crane
+Operator Packaging/Filling
+Operator PBX Receptionist
+Operator Photocomposition
+Operator Plastic Extruder
+Operator Plating-Tank
+Operator Polishing Machine
+Operator Power Plant
+Operator Power Shear
+Operator Power Shovel
+Operator Proof Machine
+Operator Pump Station
+Operator Punch Press
+Operator Punch Press Setup
+Operator Railroad Brake/Switch
+Operator Refinery
+Operator Ride
+Operator Rolling Machine Setup
+Operator Sawing Machine
+Operator Sawing Machine Setup
+Operator Screw Machine
+Operator Sewage Plant
+Operator Sewing Machine
+Operator Sound Board
+Operator Stereo Plotter
+Operator Substation
+Operator Telephone
+Operator Tool Machine
+Operator Tower Crane
+Operator Tractor
+Operator Transcribing Machine
+Operator Truck Crane
+Operator Vacuum Mold Machine
+Operator Varitype
+Operator Wafer Fabricator
+Operator Waste Treatment
+Operator Welding Machine
+Operator Wire Wrapping Machine
+Operator Wire-Draw
+Operator Woodworking Machine
+Operator Word Processing
+Ophthalmic Technician
+Optical Contact Lens Flashing Puncher
+Optical Dispensing Optician
+Optical Engineer
+Optical Lens Cutter
+Optical Scientist
+Optical Technician
+Optician Dispensing
+Optomechanical Technician
+Optometric Assistant
+Optometrist
+Oral Surgeon
+Order Clerk
+Order Detailer
+Order Filler
+Order Processing Clerk
+Order Processing Manager
+Order Processing Supervisor
+Order Scheduling Manager
+Order Scheduling Supervisor
+Order Supervisor
+Orderly
+Organization Analyst
+Organizational Psychologist
+Orthodontic Assistant
+Orthodontist
+Orthopist
+Orthotics Assistant
+Orthotist/Prosthetist
+Outpatient Admitting Clerk
+Overhead Crane Operator
+Package Designer
+Packager Hand
+Packager Manual
+Packaging Engineer
+Packaging Manager
+Packaging Supervisor
+Packaging/Filling Operator
+Packer Light
+Packer Shipper
+Packer/Crater
+Paint & Varnish Mixer
+Painter
+Painter Helper
+Painting Supervisor
+Paperhanger
+Paralegal
+Paramedic
+Parking Attendant
+Parts Manager
+Parts Salesperson
+Past Due Accounts Clerk
+Paste-up Artist
+Pastor
+Pastoral Care Head
+Patent Agent
+Pathologist
+Pathologist Voice
+Patient Transporter
+Paving Laborer
+Payroll Clerk
+Payroll Manager
+Payroll Supervisor
+PBX Operator
+PBX Operator Receptionist
+PBX Receptionist
+PC Maintenance Technician
+PC Supervisor
+PC/Microcomputer Specialist
+Pediatrician
+Perfusionist
+Periodontist
+Personal Attendant
+Personal Banker
+Personal Computer Analyst
+Personal Computer Supervisor
+Personal Lines Underwriter
+Personal Protection Officer
+Personnel Advisor
+Personnel Analyst
+Personnel Assistant
+Personnel Clerk
+Personnel Clerk Senior
+Personnel Communications Manager
+Personnel Development Manager
+Personnel Interviewer
+Personnel Manager
+Personnel Manager EEO
+Personnel Manager Employee Relations
+Personnel Manager Plant
+Personnel Plant Manager
+Personnel Plant Supervisor
+Personnel Supervisor
+Personnel Supervisor Employee Relations
+Personnel Technician
+Personnel Training Manager
+Pest Control Technician
+Petroleum Engineer
+Petroleum Plant Operator
+Petroleum Sales Representative
+Pharmaceutical Detailer
+Pharmaceutical Sales Representative
+Pharmacist
+Pharmacologist
+Pharmacy Assistant
+Pharmacy Director
+Pharmacy Head
+Pharmacy Technician
+Pheresis Specialist
+Phlebotomist
+Photo Processing Technician
+Photocomposition Operator
+Photocopy Machine Operator
+Photofinishing Laboratory Worker
+Photogrammetric Engineer
+Photogrammetrist
+Photographer Commercial
+Photographer Lithographic
+Photographer News
+Photographic Plate Maker
+Photographic-Process Attendant
+Photojournalist
+Photosetter/Graphic Specialist
+Physical Education Teacher
+Physical Therapist
+Physical Therapy Aide
+Physical Therapy Assistant
+Physical Therapy Attendant
+Physical Therapy Head
+Physical Therapy Manager
+Physical Therapy Technician
+Physician
+Physician Assistant
+Physician Family
+Physician General Practice
+Physician Gynecologist
+Physician Industrial
+Physician Neurologist
+Physician Neurosurgeon
+Physician Obstetrician
+Physician Radiologist Diagnostic
+Physician Radiologist Therapeutic
+Physician Surgeon
+Physicist Medical
+Physicist PhD
+Physiologist
+Physiotherapist
+Pilot Corporate Non-Jet
+Pilot Jet
+Pipefitter
+Pipefitter Helper
+Pipefitter Maintenance
+Placement Interviewer
+Planner Estate
+Planner Facilities
+Planner Long-Range
+Planner Production
+Planner Special Meetings
+Planner Urban
+Planning Analyst
+Planning Director Long-Range
+Planning Long-Range Manager
+Planning Long-Range Supervisor
+Planning Manager Long-Range
+Plant Accountant
+Plant Chemist Utilities
+Plant Controller
+Plant Engineer
+Plant Maintenance Worker
+Plant Manager (Experience)
+Plant Manager (Revenue)
+Plant Operator Chemical
+Plant Personnel Manager
+Plant Personnel Supervisor
+Plant Supervisor
+Plasterer
+Plastic Extruder Operator
+Platemaker Lithographic
+Plater
+Plating-Tank Operator
+Plumber
+Plumber Supervisor
+Podiatrist
+Policy Cancellation Clerk
+Policy Value Calculator Insurance
+Polisher
+Polishing Machine Operator
+Pollution Control Technician
+Polysomnographic Technician
+Polysomnographic Technologist
+Pool Swimming Servicer
+Porcelain Finisher
+Porcelain Waxer
+Porter
+Power Distribution Engineer
+Power Plant Operator
+Power Shear Operator
+Power Shovel Operator
+Power Systems Engineer
+Power Tool Repairer
+Power Transmission Engineer
+Power Truck Operator
+Power-Switchboard Operator
+Powerhouse Mechanic
+Powerline Supervisor
+Practitioner Nurse
+Preacher
+Precision Assembler Electronics
+Premium Cancellation Clerk
+Preschool Teacher
+Press Operator Heavy-Duty
+Preventive Maintenance Coordinator
+Price Marker
+Priest
+Primary School Teacher
+Principal Headmaster
+Print Shop Foreman
+Printed Circuit Board Plater
+Printed Circuit Designer
+Printer Job
+Printing Customer Service
+Printing Estimator
+Private Duty Nurse
+Process Design Analyst
+Process Server
+Process Stripper
+Procurement Clerk
+Product Assembler 1
+Product Assembler 2
+Product Design Analyst
+Product Design Engineer
+Product Designer
+Product Development Engineer
+Product Development Manager
+Product Development Supervisor 1
+Product Development Supervisor 2
+Product Manager
+Product or Brand Sales Manager
+Product Safety Engineer
+Production Assistant
+Production Clerk
+Production Control & Planning Manager
+Production Control & Planning Supervisor
+Production Control Clerk
+Production Coordinator
+Production Engineer
+Production Estimator
+Production Expediter
+Production Foreman
+Production Helper
+Production Laborer
+Production Lead
+Production Machinist
+Production Manager
+Production Planner
+Production Planning & Control Manager
+Production Planning & Control Supervisor
+Production Scheduler
+Production Superintendent
+Production Supervisor
+Production Supervisor Advertising
+Production Technician Electronics
+Production Technician TV
+Production Worker 1
+Production Worker 2
+Production Worker 3
+Production Worker 4
+Production Worker 5
+Professional Recruiter
+Professor
+Professor Assistant
+Professor Associate
+Program Proposals Coordinator
+Programmer Analyst
+Programmer Computer 1
+Programmer Computer 2
+Programmer Computer 3
+Programmer Computer Systems
+Programmer e-Commerce
+Programmer Engineer
+Programmer Lead Computer
+Programmer Midrange
+Programmer Numerical Control
+Programmer Numerical Control
+Programming Computer Manager
+Programming Supervisor
+Project Coordinator
+Project Engineer
+Project Manager Systems
+Proof Machine Operator
+Proofreader Braille
+Property & Casualty Underwriter
+Property Disposal Officer
+Property Handyman
+Property Investor
+Property Management Supervisor
+Property Manager
+Prose Writer
+Prosthetics Assistant
+Prosthetist/Orthotist
+Protective Signal Installer
+Protective Signal Monitor
+Protective Signal Repairer
+Prototype Machinist
+Psychiatric Aide
+Psychiatric Technician
+Psychiatrist
+Psychological Services Manager
+Psychologist
+Psychologist Clinical
+Psychologist Experimental
+Psychologist Industrial
+Psychologist Organizational
+Psychologist Research
+Psychologist School
+Public Accountant
+Public Health Nurse
+Public Interviewer
+Public Relations Coordinator
+Public Relations Manager
+Public Relations Representative
+Public Relations Supervisor
+Publications Editor
+Publishing Technician
+Pump Installer
+Pump Station Operator
+Pumping-Plant Operator
+Punch Press Operator
+Punch Press Setup Operator
+Purchase-Order Checker
+Purchasing Agent/Buyer
+Purchasing Clerk 1
+Purchasing Clerk 2
+Purchasing Manager
+Purchasing Supervisor
+Purifying Plant Operator
+Quality Assurance Analyst
+Quality Assurance Calibrator
+Quality Assurance Coordinator
+Quality Assurance Head Hospital
+Quality Assurance Manager
+Quality Assurance Programmer
+Quality Assurance Supervisor IT
+Quality Control Engineer
+Quality Control Inspector
+Quality Control Manager
+Quality Control Supervisor/Administrator
+Quality Control Technician
+Quality Control Test Technician
+Quality Control Tester
+Quality Coordinator Hospital
+R&D Manager 1
+R&D Manager 2
+R&D Supervisor 1
+R&D Supervisor 2
+Rabbi
+Radar & Radio Technician
+Radiation Diagnostic Technologist
+Radiation Dosimetrist
+Radiation Therapy Dosimetrist
+Radio & Radar Technician
+Radio & Television Repairer
+Radio & TV Sales Representative
+Radio Disc Jockey
+Radiologic Technologist
+Radiologist Diagnostic
+Radiologist Therapeutic
+Radiology Technologist
+Railroad Brake/Switch Operator
+Railroad Construction Manager
+Rapid-Extractor Operator
+Rate Analyst
+Rate Analyst Traffic
+Rater Insurance
+Reactor Operator
+Real Estate Agent Supervisor
+Real Estate Appraiser Commercial
+Real Estate Appraiser Residential
+Real Estate Clerk
+Real Estate Development Manager
+Real Estate Leasing Agent
+Real Estate Leasing Manager
+Real Estate Manager
+Real Estate Sales Agent
+Receiving & Shipping Clerk
+Receiving Clerk
+Receiving Laborer
+Receiving Teller
+Receptionist
+Receptionist PBX Operator
+Records Clerk Lease
+Recreation Aide
+Recreation Supervisor
+Recreational Therapist
+Recruiter
+Recruiter Assistant
+Recruiter Clerk
+Recruiter Professional
+Redcap
+Refinery Operator
+Refrigerating Engineer
+Refrigeration Mechanic
+Refuse Truck Driver
+Regional Sales Manager
+Regional Sales Manager Retail
+Registered Nurse
+Registered Representative
+Regulatory Administrator
+Regulatory Affairs Manager
+Rehabilitation Clerk
+Reliability Engineer
+Renovator Used Car
+Rental Dispatcher
+Repair Order Clerk
+Repairer & Installer Furnace
+Repairer Aircraft Body
+Repairer Audiovisual
+Repairer Autobody
+Repairer Automotive Maintenance
+Repairer Bicycle
+Repairer Building
+Repairer Burglar Alarm
+Repairer Carpenter
+Repairer Cash Register
+Repairer Computer Equipment
+Repairer Electric Meter
+Repairer Electrical
+Repairer Electrical Instrument
+Repairer Electronic Equipment
+Repairer Furniture
+Repairer Gutter
+Repairer Jewelry
+Repairer Line
+Repairer Maintenance/Utility
+Repairer Power Tool
+Repairer Sewing Machine
+Repairer Shoe
+Repairer Street Light
+Repairer Telephone Central Office
+Repairer Telephone Station
+Repairer Television & Radio
+Repairer Tire
+Repairer Truck
+Repairer Window
+Reporter
+Repossessor
+Representative 1 Customer Service
+Representative Airline Security
+Representative Credit
+Representative Employee Relations
+Representative Employment
+Representative Floor Broker
+Representative Help Desk
+Representative Labor Relations
+Representative Marketing
+Representative Public Relations
+Representative Sales 1
+Representative Sales 2
+Representative Sales 3
+Representative Sales 4
+Representative Sales Training
+Representative Training
+Representative Union Business
+Research & Development Manager 1
+Research & Development Manager 2
+Research & Development Supervisor 2
+Research Analyst
+Research and Development Supervisor 1
+Research Associate
+Research Engineer
+Research Environmental Manager
+Research Market Supervisor
+Research Mechanic
+Research Psychologist
+Research Technician
+Researcher Scientific
+Researcher Social Medical
+Reservation Clerk
+Reservations Agent
+Residence Counselor
+Residence Leasing Agent
+Residence Supervisor
+Resident Care Aide
+Residential Appraiser
+Resource Recovery Engineer
+Resource Teacher
+Respiratory Therapist
+Respiratory Therapy Technician
+Restaurant Assistant Manager
+Restaurant Manager 1
+Restaurant Manager 2
+Restaurant Manager 3
+Restorer Furniture
+Retail Area Manager
+Retail Cashier
+Retail Sales Clerk
+Retail Sales Home Furnishings
+Retail Store Assistant Manager (Experience)
+Retail Store Assistant Manager (Revenue)
+Retail Store Manager (Experience)
+Retail Store Manager (Revenue)
+Retail Zone Manager
+Ride Operator
+Rigger
+Risk Management Analyst
+Risk Management Manager
+Risk Management Supervisor
+RN
+Rolling Attendant
+Rolling Machine Setup Operator
+Roofer
+Room Service Clerk
+Rough Carpenter
+Rough Grinder
+Routing Clerk
+Safety Consultant
+Safety Engineer
+Safety Engineer Product
+Safety Inspector
+Safety Supervisor
+Safety Technician
+Safety Technician Industrial
+Salary & Wage Analyst
+Sales Account Manager
+Sales Aircraft
+Sales Analyst
+Sales Area Manager
+Sales Assistant
+Sales Automobile Accessories
+Sales Building Materials
+Sales Clerk
+Sales Correspondent
+Sales Engineer
+Sales Engineer Electronics
+Sales Estimator
+Sales Food Clerk
+Sales General Clerk
+Sales Home Furnishings
+Sales Insurance Agent
+Sales Livestock
+Sales Manager 1
+Sales Manager 2
+Sales Manager 3
+Sales Manager Export
+Sales Manager International
+Sales Manufacturer's Representative
+Sales Medical Technical
+Sales National Manager
+Sales or Brand Product Manager
+Sales Order Manager
+Sales Order Supervisor
+Sales Radio & TV
+Sales Real Estate
+Sales Regional Manager
+Sales Regional Manager Retail
+Sales Representative 1
+Sales Representative 2
+Sales Representative 3
+Sales Representative 4
+Sales Representative Advertising
+Sales Representative Computers
+Sales Representative Dental Appliances
+Sales Representative Financial
+Sales Representative Hotel
+Sales Representative Office Equipment
+Sales Representative Petroleum
+Sales Representative Pharmaceutical
+Sales Representative Telephone
+Sales Route Driver
+Sales Service Promoter
+Sales Stereo Equipment
+Sales Supervisor
+Sales Supervisor Field
+Sales Supervisor Government
+Sales Supervisor Insurance
+Sales Surgical Appliances
+Sales Telemarketing Supervisor
+Sales Trader Securities
+Sales Training Manager
+Sales Training Representative
+Sales Training Supervisor
+Sales Transportation Agent
+Salesperson Driver
+Salesperson Hearing Aids
+Salesperson Ladies' Wear
+Salesperson Meats
+Salesperson Surgical Appliances
+Sanitary Engineer
+Savings Teller
+Sawing Machine Operator
+Sawing Machine Setup Operator
+Scheduler Computer Processing
+Scheduler Materials
+Scheduler Museums
+Scheduler Production
+Scheduler Vehicle Maintenance
+School Administrator (Primary/High School)
+School Library Media Specialist
+School Nurse
+School Psychologist
+School Secretary
+Science Technologist
+Scientific Programmer
+Scientific Researcher
+Scientist Animal
+Scientist Atmospheric
+Scientist Computer Information
+Scientist Crop-Research
+Scientist Environmental
+Scientist Food
+Scientist Materials
+Scientist Optical-Laser
+Scientist Soil
+Screen Writer
+Screw Machine Operator
+Script Writer
+Searcher Title
+Secondary School Teacher
+Secretarial Supervisor
+Secretary 1
+Secretary 2
+Secretary 3
+Secretary 4
+Secretary Administrative
+Secretary Bilingual
+Secretary Department
+Secretary Legal
+Secretary Medical
+Secretary School
+Secretary to CEO
+Secretary to EVP
+Securities Analyst
+Securities Broker
+Securities Clerk
+Securities Sales Trader
+Securities Trader
+Security Aide
+Security Consultant
+Security Coordinator Computer
+Security Data Analyst
+Security Guard
+Security Guard Gate
+Security Guard Security Service
+Security Manager
+Security Officer
+Security Services Security Guard
+Security Specialist Computer
+Security Supervisor
+Security Systems Consultant
+Self Service Laundry Operator
+Semiconductor Processor
+Semiconductor Wafers Plater
+Semitrailer Truck Driver
+Senior Computer Operator
+Senior Personnel Clerk
+Senior Sales Representative
+Separating Supervisor
+Service Engineer
+Service Engineer Field
+Service Manager Automotive
+Service Order Clerk
+Service Order Dispatcher
+Service Station Attendant
+Service Station Manager Automobile
+Servicer Air Conditioning 1
+Servicer Air Conditioning 2
+Servicer Swimming Pool
+Set Decorator
+Set Designer
+Sewage Plant Attendant
+Sewage Plant Operator
+Sewer Hand
+Sewing Machine Mechanic
+Sewing Machine Operator
+Sewing Machine Repairer
+Shareholder Relations Manager
+Sheet Metal Mechanic
+Sheet Metal Supervisor
+Sheet Metal Worker
+Sheetrock Taper
+Ship Captain
+Ship Master
+Ship Officer
+Shipfitter
+Shipmate
+Shipping & Receiving Clerk
+Shipping & Receiving Lead
+Shipping & Receiving Supervisor
+Shipping Checker
+Shipping Clerk
+Shipping Packer
+Shoe Repairer
+Shop Laborer
+Short Order Cook
+Show Host/Hostess
+Shuttle Driver
+Sign Language Interpreter
+Skip Tracer
+Skycap
+Slaughter Laborer
+Small Engine Mechanic
+Social Medical Researcher
+Social Services Aide
+Social Services Director
+Social Worker
+Sociologist
+Software Design Manager
+Software Design Supervisor
+Software Developer
+Software Engineer
+Software Engineering Supervisor
+Software Programmer
+Soil Scientist
+Soils Engineer
+Solar Energy Systems Designer
+Solderer Electronic
+Sonographer
+Sound Board Operator
+Sound Mixer
+Sous Chef
+Special Agent Insurance
+Special Events Coordinator
+Special Events Manager
+Special Library Librarian
+Special Needs Evaluator
+Specialty Cook
+Specification Writer
+Spectroscopist
+Speech and Language Pathologist
+Speech Pathologist
+Splicer Cable
+Sports Instructor
+Sports Trainer
+Spray Paint Helper
+Staff Attorney
+Staff Dietician
+Staff Nurse
+Standards Analyst
+Standards Laboratory Technician
+Statement Clerk
+Stationary Engineer
+Statistical Clerk
+Statistical Typist
+Statistician
+Statistician Mathematical
+Statistician Theoretical
+Steam Table Attendant
+Stenographer
+Stenographer Medical
+Stereo Equipment Salesperson
+Stereo Plotter Operator
+Sterile Supply Attendant
+Sterilizer
+Stevedore
+Still Photographer
+Stock Broker
+Stock Clerk Retail
+Stock Handler
+Stock Transfer Clerk
+Stonecutter
+Storage Facility Rental Clerk
+Store Decorator
+Storekeeper
+Storeroom Supervisor
+Storeroom Warehouse Worker
+Stores Laborer
+Storing Laborer
+Strategic Planning Analyst
+Strategic Planning Manager
+Street Light Repairer
+Street Light Servicer
+Stress Analyst
+Stress Test Technician
+Structural Assembler
+Structural Drafter
+Structural Engineer
+Structural Iron Worker
+Structural Steel Erector
+Student Services Director
+Studio Engineer
+Studio Technician
+Substance Abuse Counselor
+Substation Operator
+Superintendent Building
+Superintendent Construction
+Superintendent Construction Assistant
+Superintendent Mine
+Superintendent Transportation
+Superintendent Utilities
+Supervisor 1 Accounting
+Supervisor 1 Product Development
+Supervisor 1 R&D
+Supervisor 2 Accounting
+Supervisor 2 Product Development
+Supervisor 2 R&D
+Supervisor Account
+Supervisor Accounts Payable
+Supervisor Accounts Receivable
+Supervisor Admin Engineering
+Supervisor Advertising
+Supervisor Advertising Production
+Supervisor Art
+Supervisor Assembly
+Supervisor Benefits
+Supervisor Bookkeeping
+Supervisor Branch Office
+Supervisor Branch Store
+Supervisor Budget
+Supervisor Cable
+Supervisor Call Center
+Supervisor Cargo Services
+Supervisor Carpenter
+Supervisor Cashiers
+Supervisor Check Processing
+Supervisor Chemical
+Supervisor Chemical Engineer
+Supervisor Circulation
+Supervisor Claims
+Supervisor Clerical Generic
+Supervisor Collections
+Supervisor Compensation
+Supervisor Compensation & Benefits
+Supervisor Computer Applications & Programming
+Supervisor Computer Network
+Supervisor Computer Operations
+Supervisor Computer Quality Assurance
+Supervisor Computer Software Design
+Supervisor Computer Systems Analysis
+Supervisor Contract Administration
+Supervisor Cost Accounting
+Supervisor Credit
+Supervisor Credit & Collection
+Supervisor Customer Service
+Supervisor Data Control
+Supervisor Data Entry
+Supervisor Department
+Supervisor Dining Room
+Supervisor Distribution
+Supervisor Drafting
+Supervisor Economic Analysis
+Supervisor EDP Audit
+Supervisor EEO
+Supervisor Employee Development
+Supervisor Employee Relations
+Supervisor Employee Services
+Supervisor Employment
+Supervisor Engineering Construction
+Supervisor Engineering Design
+Supervisor Engineering Generic
+Supervisor Environmental
+Supervisor Equal Opportunity
+Supervisor Estimating
+Supervisor Extractive
+Supervisor Facilities & Building
+Supervisor Farm Workers
+Supervisor Field Sales
+Supervisor Field Services
+Supervisor Financial Analysis
+Supervisor Fleet
+Supervisor Food Services
+Supervisor Garage
+Supervisor General Maintenance
+Supervisor Golf Turf
+Supervisor Government Affairs
+Supervisor Government Sales
+Supervisor Graphic
+Supervisor Hardware Design
+Supervisor Hardware Engineering
+Supervisor Help Desk
+Supervisor Hotel Baggage
+Supervisor Housekeeping
+Supervisor HRIS
+Supervisor Human Resources
+Supervisor Import/Export
+Supervisor Industrial Nursing
+Supervisor Insurance
+Supervisor Internal Audit
+Supervisor Inventory Control
+Supervisor Investor Relations
+Supervisor Labor Relations
+Supervisor Laboratory
+Supervisor Legal
+Supervisor Long-Range Planning
+Supervisor Machine Shop
+Supervisor Mailroom
+Supervisor Management Development
+Supervisor Manufacturing Engineer
+Supervisor Market Information
+Supervisor Market Research
+Supervisor Marketing Administration
+Supervisor Materials
+Supervisor Media
+Supervisor Merchandising
+Supervisor Motor Vehicle
+Supervisor Nursing
+Supervisor Nursing Shift
+Supervisor Office
+Supervisor Operating Systems Programming
+Supervisor Operations Generic
+Supervisor Operations Research
+Supervisor Order
+Supervisor Packaging
+Supervisor Painting
+Supervisor Payroll
+Supervisor Personal Computer
+Supervisor Plant
+Supervisor Plant Personnel
+Supervisor Plumber
+Supervisor Powerline
+Supervisor Production
+Supervisor Production Control & Planning
+Supervisor Production Planning & Control
+Supervisor Programming
+Supervisor Proof Machine Operators
+Supervisor Property Management
+Supervisor Public Relations
+Supervisor Purchasing
+Supervisor Quality Control
+Supervisor Recreation
+Supervisor Residence
+Supervisor Risk Management
+Supervisor Safety
+Supervisor Sales
+Supervisor Sales Insurance
+Supervisor Sales Order
+Supervisor Sales Real Estate
+Supervisor Sales Training
+Supervisor Secretarial
+Supervisor Security
+Supervisor Separating
+Supervisor Sheet Metal
+Supervisor Shipping & Receiving
+Supervisor Tax
+Supervisor Tax Compliance
+Supervisor Tax Research
+Supervisor Technical Publications
+Supervisor Technical Writers
+Supervisor Telemarketing
+Supervisor Telephone Dispatch
+Supervisor Telephone Line
+Supervisor Teller
+Supervisor Ticket Sales
+Supervisor Tool & Die
+Supervisor Tool Design
+Supervisor Trade Relations
+Supervisor Traffic
+Supervisor University Laboratory
+Supervisor User Support
+Supervisor Warehouse
+Supervisor Welding
+Supervisor Word Processing
+Supply Clerk
+Support Services Head
+Support Specialist (Micro)
+Surgeon General
+Surgeon Neuro
+Surgeon Oral
+Surgeon Tree
+Surgical Appliances Salesperson
+Surgical Assistant
+Surgical Services Head
+Surgical Technician
+Surgical Technologist
+Surplus-Property Sales Officer
+Surveillance System Monitor
+Survey Party Chief
+Survey Worker Marketing
+Surveyor
+Surveyor Assistant
+Surveyor Field Supervisor
+Surveyor Helper
+Surveyor Land
+Surveyor Lead
+Swimming Pool Servicer
+Switchboard Operator
+Switchboard Operator Receptionist
+Systems & Programming Manager
+Systems Administrator
+Systems Analysis Manager
+Systems Analysis Supervisor
+Systems Analyst
+Systems Analyst Business
+Systems Analyst Lead
+Systems Programmer
+Systems Project Manager
+Tailor Alteration
+Tailor Custom
+Tape Librarian
+Tax Accountant
+Tax Attorney
+Tax Compliance Manager
+Tax Compliance Supervisor
+Tax Manager
+Tax Preparer
+Tax Research Manager
+Tax Research Supervisor
+Tax Supervisor
+Taxi Driver
+Taxidermist
+Teacher Adult Education
+Teacher Aide
+Teacher College/University
+Teacher Driving
+Teacher Elementary School
+Teacher Hearing Impaired
+Teacher Home Therapy
+Teacher Mentally Impaired
+Teacher Museums
+Teacher Music
+Teacher Physical Education
+Teacher Preschool
+Teacher Resource
+Teacher Secondary School
+Teacher Vocational Training
+Teacher/Tutor
+Technical Aide Test Data
+Technical Consultant
+Technical Editor
+Technical Illustrator
+Technical Librarian
+Technical Product Editor
+Technical Publications Manager
+Technical Publications Supervisor
+Technical Sales Medical
+Technical Sales/Aircraft
+Technical Services Representative
+Technical Support Specialist Computer
+Technical Trainer
+Technical Training Coordinator
+Technical Training Instructor
+Technical Writer
+Technical Writer Manager
+Technical Writers Supervisor
+Technician 2 Offset Press
+Technician 3 Offset Press
+Technician Accounting
+Technician Accounting Data
+Technician Air Conditioning
+Technician Avionics
+Technician CAD
+Technician CAD-Aided Design
+Technician CAE
+Technician Calibration
+Technician Calibration Laboratory
+Technician CAM
+Technician Cardiac Monitor
+Technician Career Guidance
+Technician Cartographic
+Technician Central-Service
+Technician Ceramics
+Technician Certified Medication
+Technician Chemical
+Technician Chemical Engineering
+Technician Civil Engineering
+Technician Communications
+Technician Contract
+Technician Dental Laboratory
+Technician Dietary
+Technician ECG
+Technician Echocardiograph
+Technician Electrical Engineering
+Technician Electromechanical
+Technician Electromyographic
+Technician Electronics
+Technician Engineering Specifications
+Technician Environmental
+Technician Field Service
+Technician Forensic Science
+Technician Hearing Test
+Technician Human Resources
+Technician Hydrographer
+Technician Industrial Engineering
+Technician Industrial Safety
+Technician Instrument
+Technician Lab Utilities
+Technician Laboratory
+Technician LAN/WAN
+Technician Laser
+Technician Library
+Technician Logistics Engineering
+Technician Marine Services
+Technician Mathematical
+Technician Mechanical Design
+Technician Mechanical Engineering
+Technician Medical Emergency
+Technician Medical Laboratory
+Technician Medical Records
+Technician Metallurgical
+Technician Microelectronics
+Technician Network Control
+Technician Nuclear Medical
+Technician Office Machines
+Technician Ophthalmic
+Technician Optomechanical
+Technician Personnel
+Technician Pest Control
+Technician Pharmacy
+Technician Physical Therapy
+Technician Polysomnographic
+Technician Production Electronics
+Technician Psychiatric
+Technician Publishing
+Technician Quality Control
+Technician Quality Control Testing
+Technician Radio & Radar
+Technician Research
+Technician Respiratory Therapy
+Technician Safety
+Technician Stress Test
+Technician Studio
+Technician Surgical
+Technician Television
+Technician Test
+Technician Test Data Acquisition
+Technician Topographic Map
+Technician Ultrasound
+Technician Veterinary
+Technician Welding
+Technician X-Ray
+Technologist CAT Scan
+Technologist Chief
+Technologist Electrocardiograph
+Technologist Exercise Physiology
+Technologist Food
+Technologist Magnetic Resonance Imaging
+Technologist Medical
+Technologist Microbiology
+Technologist Nuclear Medical
+Technologist Polysomnographic
+Technologist Radiology
+Technologist Science
+Technologist Surgical
+Technologist Ultrasound
+Telecommunications Analyst
+Telecommunications Engineer
+Telecommunications Manager
+Telecommunications Technician
+Telemarketer
+Telemarketing Manager
+Telemarketing Representative
+Telemarketing Supervisor
+Telephone Central Office Repairer
+Telephone Dispatch Supervisor
+Telephone Equipment Engineer
+Telephone Installer
+Telephone Line Installer
+Telephone Line Supervisor
+Telephone Maintenance Mechanic
+Telephone Operator
+Telephone Operator Central Office
+Telephone Sales Representative
+Telephone Solicitor
+Telephone Station Installer/Repairer
+Television & Radio Repairer
+Television Technician
+Teller Bank
+Teller Head
+Teller Loan
+Teller Receiving
+Teller Savings
+Teller Supervisor
+Teller Vault
+Terrazzo Finisher
+Terrazzo Worker
+Test Data Acquisition Technician
+Test Engineer
+Test Equipment Certification Technician
+Test Mechanic
+Test Technician
+Tester Air
+Tester Cable
+Tester Electronics
+Tester Laboratory
+Tester Laboratory Oil
+Tester Nondestructive
+Tester Quality Control
+Tester Ultrasonic
+Theater Manager
+Theatrical-Scenic Designer
+Theoretical Statistician
+Therapeutic Dietician
+Therapist Clinical
+Therapist Hearing
+Therapist Massage
+Therapist Occupational
+Therapist Physical
+Therapist Recreational
+Therapist Respiratory
+Therapist Speech
+Therapist Voice
+Therapy Assistant Occupational
+Ticket Agent
+Ticket Sales Supervisor
+Ticket Seller
+Ticket Taker
+Tile Finisher
+Tile Setter
+Tile Setter Helper
+Time Card Clerk
+Time Clerk
+Tire & Tube Repairer
+Tire Adjuster
+Tire Repairer
+Tire Servicer
+Title Abstractor
+Title Searcher
+Tool & Die Maker
+Tool & Die Shop Supervisor
+Tool Crib Attendant
+Tool Design Checker
+Tool Design Engineer
+Tool Design Supervisor
+Tool Designer
+Tool Machine Operator
+Topographic Map Technician
+Total Quality Management Administrator
+Total Quality Management Head Hospital
+Tower Crane Operator
+TQM Administrator
+TQM Head Hospital
+Tractor Operator
+Tractor Trailer Truck Driver
+Trade Association Manager
+Trade Relations Manager
+Trade Relations Supervisor
+Trader Securities
+Traffic Agent
+Traffic Clerk
+Traffic Engineer
+Traffic Manager
+Traffic Rate Analyst
+Traffic Supervisor
+Train Engineer
+Trainer Athletic
+Trainer Technical
+Training Coordinator Technical
+Training Instructor
+Training Instructor Technical
+Training Manager
+Training Manager Sales
+Training Representative
+Training Supervisor
+Training Supervisor Sales
+Transcriber Medical
+Transcribing Machine Operator
+Translator
+Transmission Line Engineer
+Transmission Mechanic
+Transportation Engineer
+Transportation Manager
+Transportation Sales Agent
+Transportation Superintendent
+Transportation Vehicles Cleaner
+Transporter Patients
+Travel Agency Manager
+Travel Agent
+Travel Clerk
+Travel Counselor
+Travel Manager
+Tree Surgeon
+Tree Trimmer
+Truck Crane Operator
+Truck Driver Concrete Mixing
+Truck Driver Dump
+Truck Driver Heavy
+Truck Driver Light
+Truck Driver Medium
+Truck Driver Refuse
+Truck Driver Sales Route
+Truck Driver Tow Truck
+Truck Driver Tractor Trailer
+Truck Driver Van
+Truck Mechanic
+Truck Repairer
+Trust Administrator
+Trust Officer
+Tube & Tire Repairer
+Tune-up Mechanic
+Tunneling Machine Operator
+Tutor
+TV & Radio Sales Representative
+Typist
+Typist Statistical
+Ultrasonic Tester
+Ultrasound Technician
+Ultrasound Technologist
+Undertaker
+Undertaker Assistant
+Underwriter
+Underwriter Bonds Municipal
+Underwriter Casualty
+Underwriter Commercial Property
+Underwriter Life
+Underwriter Personal Lines
+Underwriter Property & Casual
+Underwriting Clerk
+Underwriting Manager
+Union Business Representative
+Unit Clerk
+Unit Manager
+Unit Secretary
+University Laboratory Supervisor
+Upholsterer
+Upholsterer Automobile
+Urban Planner
+Urban Renewal Manager
+Used Car Conditioner
+Used Car Renovator
+User Support Analyst
+User Support Analyst Supervisor
+Usher
+Utilities Electric Drafter
+Utilities Superintendent
+Utility Clerk Locator
+Utility Complaints Investigator
+Utility Regulatory Administrator
+Utility Repairer
+Utilization Review/Quality Assurance
+Vacuum Mold Machine Operator
+Vacuum Molding Operator
+Value Engineer
+Valuer
+Van Driver
+Varitype Operator
+Vault Teller
+Vehicle Maintenance Scheduler
+Veterinarian
+Veterinary Assistant
+Veterinary Technician
+Vice President Student Affairs
+Vocational Training Instructor
+Vocational Training Teacher
+Voice Pathologist
+Voice Therapist
+Volunteers Head
+Wafer Fabricator Operator
+Wage & Salary Analyst
+Wage & Salary Manager
+Waiter/Waitress
+Waiter/Waitress Captain
+Waiter/Waitress Counter
+Waiters/Waitress' Assistant
+Wallpaper Hanger
+Warden Game
+Warehouse Laborer
+Warehouse Manager
+Warehouse Materials Handler
+Warehouse Supervisor
+Warehouse Worker
+Wastewater Treatment Plant Attendant
+Wastewater Treatment Plant Operator
+Water Maintenance Worker
+Water Tender
+Water Treatment Operator
+Waxes Porcelain
+Weather Forecaster
+Weaver
+Web Administrator
+Web Author
+Web Content Administrator
+Web Developer
+Webmaster
+Website Artist
+Website Coordinator
+Website Developer
+Website Manager
+Website Programmer
+Wedding Consultant
+Welder
+Welder Arc Cutter
+Welding Engineer
+Welding Machine Operator
+Welding Supervisor
+Welding Technician
+Well Driller
+Wholesale Manager
+Wholesaler
+Wide Area Network Administrator
+Window Repairer
+Wine Steward/Stewardess
+Wire Drawer
+Wire Wrapping Machine Operator
+Wire-Draw Operator
+Wirer Cable
+Women's Apparel Salesperson
+Woodworking Machine Operator
+Word Processing Operator
+Word Processing Supervisor
+Word Processor
+Work Study Coordinator
+Writer Copy
+Writer of Prose or Fiction
+Writer Screen
+Writer Specifications
+Writer Technical
+X-Ray Technician
+X-Ray Technologist
+Yard Foreman
+Zone/District Retail Manager
+Zoologist
\ No newline at end of file
diff --git a/utils/data-generators/barnum/source-data/last-name.txt b/utils/data-generators/barnum/source-data/last-name.txt
new file mode 100755
index 0000000..9b54527
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/last-name.txt
@@ -0,0 +1,5001 @@
+smith          1.006  1.006      1
+johnson        0.810  1.816      2
+williams       0.699  2.515      3
+jones          0.621  3.136      4
+brown          0.621  3.757      5
+davis          0.480  4.237      6
+miller         0.424  4.660      7
+wilson         0.339  5.000      8
+moore          0.312  5.312      9
+taylor         0.311  5.623     10
+anderson       0.311  5.934     11
+thomas         0.311  6.245     12
+jackson        0.310  6.554     13
+white          0.279  6.834     14
+harris         0.275  7.109     15
+martin         0.273  7.382     16
+thompson       0.269  7.651     17
+garcia         0.254  7.905     18
+martinez       0.234  8.140     19
+robinson       0.233  8.372     20
+clark          0.231  8.603     21
+rodriguez      0.229  8.832     22
+lewis          0.226  9.058     23
+lee            0.220  9.278     24
+walker         0.219  9.497     25
+hall           0.200  9.698     26
+allen          0.199  9.897     27
+young          0.193 10.090     28
+hernandez      0.192 10.282     29
+king           0.190 10.472     30
+wright         0.189 10.662     31
+lopez          0.187 10.849     32
+hill           0.187 11.035     33
+scott          0.185 11.220     34
+green          0.183 11.403     35
+adams          0.174 11.577     36
+baker          0.171 11.748     37
+gonzalez       0.166 11.915     38
+nelson         0.162 12.077     39
+carter         0.162 12.239     40
+mitchell       0.160 12.399     41
+perez          0.155 12.554     42
+roberts        0.153 12.707     43
+turner         0.152 12.859     44
+phillips       0.149 13.008     45
+campbell       0.149 13.157     46
+parker         0.146 13.302     47
+evans          0.141 13.443     48
+edwards        0.137 13.580     49
+collins        0.134 13.714     50
+stewart        0.133 13.847     51
+sanchez        0.130 13.977     52
+morris         0.125 14.102     53
+rogers         0.123 14.225     54
+reed           0.122 14.347     55
+cook           0.120 14.467     56
+morgan         0.118 14.585     57
+bell           0.117 14.702     58
+murphy         0.117 14.819     59
+bailey         0.115 14.934     60
+rivera         0.113 15.047     61
+cooper         0.113 15.160     62
+richardson     0.112 15.272     63
+cox            0.110 15.382     64
+howard         0.110 15.492     65
+ward           0.108 15.600     66
+torres         0.108 15.708     67
+peterson       0.107 15.815     68
+gray           0.106 15.921     69
+ramirez        0.105 16.026     70
+james          0.105 16.131     71
+watson         0.103 16.233     72
+brooks         0.103 16.336     73
+kelly          0.102 16.438     74
+sanders        0.100 16.537     75
+price          0.099 16.637     76
+bennett        0.099 16.736     77
+wood           0.098 16.834     78
+barnes         0.097 16.931     79
+ross           0.096 17.027     80
+henderson      0.095 17.122     81
+coleman        0.095 17.217     82
+jenkins        0.095 17.312     83
+perry          0.094 17.406     84
+powell         0.093 17.499     85
+long           0.092 17.591     86
+patterson      0.092 17.684     87
+hughes         0.092 17.776     88
+flores         0.092 17.868     89
+washington     0.092 17.959     90
+butler         0.091 18.050     91
+simmons        0.091 18.141     92
+foster         0.091 18.231     93
+gonzales       0.087 18.318     94
+bryant         0.087 18.405     95
+alexander      0.085 18.490     96
+russell        0.085 18.574     97
+griffin        0.084 18.659     98
+diaz           0.084 18.742     99
+hayes          0.083 18.825    100
+myers          0.083 18.908    101
+ford           0.082 18.990    102
+hamilton       0.082 19.072    103
+graham         0.082 19.154    104
+sullivan       0.081 19.234    105
+wallace        0.081 19.315    106
+woods          0.080 19.395    107
+cole           0.080 19.476    108
+west           0.080 19.555    109
+jordan         0.078 19.634    110
+owens          0.078 19.711    111
+reynolds       0.078 19.789    112
+fisher         0.077 19.866    113
+ellis          0.077 19.943    114
+harrison       0.076 20.019    115
+gibson         0.075 20.094    116
+mcdonald       0.075 20.169    117
+cruz           0.075 20.244    118
+marshall       0.075 20.319    119
+ortiz          0.075 20.394    120
+gomez          0.075 20.468    121
+murray         0.074 20.543    122
+freeman        0.074 20.617    123
+wells          0.073 20.690    124
+webb           0.072 20.762    125
+simpson        0.070 20.832    126
+stevens        0.070 20.902    127
+tucker         0.070 20.971    128
+porter         0.069 21.041    129
+hunter         0.069 21.110    130
+hicks          0.069 21.178    131
+crawford       0.068 21.246    132
+henry          0.068 21.314    133
+boyd           0.068 21.381    134
+mason          0.068 21.449    135
+morales        0.067 21.516    136
+kennedy        0.067 21.582    137
+warren         0.067 21.649    138
+dixon          0.066 21.715    139
+ramos          0.066 21.782    140
+reyes          0.066 21.848    141
+burns          0.065 21.913    142
+gordon         0.065 21.978    143
+shaw           0.065 22.043    144
+holmes         0.065 22.108    145
+rice           0.064 22.172    146
+robertson      0.064 22.236    147
+hunt           0.063 22.299    148
+black          0.063 22.362    149
+daniels        0.062 22.425    150
+palmer         0.062 22.487    151
+mills          0.061 22.547    152
+nichols        0.060 22.607    153
+grant          0.060 22.667    154
+knight         0.060 22.727    155
+ferguson       0.059 22.786    156
+rose           0.059 22.845    157
+stone          0.059 22.904    158
+hawkins        0.059 22.963    159
+dunn           0.058 23.022    160
+perkins        0.058 23.079    161
+hudson         0.058 23.137    162
+spencer        0.057 23.194    163
+gardner        0.057 23.251    164
+stephens       0.057 23.308    165
+payne          0.057 23.365    166
+pierce         0.056 23.421    167
+berry          0.056 23.477    168
+matthews       0.056 23.533    169
+arnold         0.056 23.589    170
+wagner         0.055 23.645    171
+willis         0.055 23.700    172
+ray            0.055 23.755    173
+watkins        0.055 23.811    174
+olson          0.055 23.866    175
+carroll        0.055 23.921    176
+duncan         0.055 23.976    177
+snyder         0.055 24.031    178
+hart           0.054 24.086    179
+cunningham     0.054 24.140    180
+bradley        0.054 24.194    181
+lane           0.054 24.247    182
+andrews        0.054 24.301    183
+ruiz           0.054 24.355    184
+harper         0.054 24.408    185
+fox            0.053 24.462    186
+riley          0.053 24.515    187
+armstrong      0.053 24.568    188
+carpenter      0.053 24.621    189
+weaver         0.053 24.673    190
+greene         0.053 24.726    191
+lawrence       0.052 24.779    192
+elliott        0.052 24.831    193
+chavez         0.052 24.883    194
+sims           0.052 24.936    195
+austin         0.052 24.988    196
+peters         0.052 25.040    197
+kelley         0.052 25.092    198
+franklin       0.051 25.143    199
+lawson         0.051 25.195    200
+fields         0.051 25.246    201
+gutierrez      0.051 25.297    202
+ryan           0.051 25.348    203
+schmidt        0.051 25.400    204
+carr           0.051 25.451    205
+vasquez        0.051 25.502    206
+castillo       0.051 25.552    207
+wheeler        0.051 25.603    208
+chapman        0.050 25.653    209
+oliver         0.050 25.703    210
+montgomery     0.049 25.753    211
+richards       0.049 25.802    212
+williamson     0.049 25.851    213
+johnston       0.049 25.900    214
+banks          0.048 25.948    215
+meyer          0.048 25.996    216
+bishop         0.048 26.045    217
+mccoy          0.048 26.093    218
+howell         0.048 26.140    219
+alvarez        0.048 26.188    220
+morrison       0.048 26.235    221
+hansen         0.047 26.283    222
+fernandez      0.047 26.330    223
+garza          0.047 26.377    224
+harvey         0.047 26.424    225
+little         0.046 26.470    226
+burton         0.046 26.516    227
+stanley        0.046 26.562    228
+nguyen         0.046 26.608    229
+george         0.046 26.653    230
+jacobs         0.046 26.699    231
+reid           0.046 26.745    232
+kim            0.045 26.790    233
+fuller         0.045 26.835    234
+lynch          0.045 26.880    235
+dean           0.045 26.925    236
+gilbert        0.045 26.970    237
+garrett        0.045 27.015    238
+romero         0.045 27.059    239
+welch          0.044 27.104    240
+larson         0.044 27.148    241
+frazier        0.044 27.192    242
+burke          0.044 27.235    243
+hanson         0.043 27.279    244
+day            0.043 27.322    245
+mendoza        0.043 27.365    246
+moreno         0.043 27.407    247
+bowman         0.043 27.450    248
+medina         0.042 27.492    249
+fowler         0.042 27.535    250
+brewer         0.042 27.577    251
+hoffman        0.042 27.619    252
+carlson        0.042 27.661    253
+silva          0.042 27.703    254
+pearson        0.042 27.744    255
+holland        0.042 27.786    256
+douglas        0.041 27.827    257
+fleming        0.041 27.868    258
+jensen         0.041 27.909    259
+vargas         0.041 27.950    260
+byrd           0.041 27.991    261
+davidson       0.041 28.032    262
+hopkins        0.041 28.072    263
+may            0.040 28.113    264
+terry          0.040 28.153    265
+herrera        0.040 28.193    266
+wade           0.040 28.233    267
+soto           0.040 28.273    268
+walters        0.040 28.313    269
+curtis         0.040 28.352    270
+neal           0.039 28.392    271
+caldwell       0.039 28.431    272
+lowe           0.039 28.471    273
+jennings       0.039 28.510    274
+barnett        0.039 28.549    275
+graves         0.039 28.588    276
+jimenez        0.039 28.628    277
+horton         0.039 28.667    278
+shelton        0.039 28.706    279
+barrett        0.039 28.745    280
+obrien         0.039 28.783    281
+castro         0.039 28.822    282
+sutton         0.038 28.860    283
+gregory        0.038 28.899    284
+mckinney       0.038 28.937    285
+lucas          0.038 28.975    286
+miles          0.038 29.013    287
+craig          0.038 29.051    288
+rodriquez      0.037 29.088    289
+chambers       0.037 29.126    290
+holt           0.037 29.163    291
+lambert        0.037 29.200    292
+fletcher       0.037 29.237    293
+watts          0.037 29.274    294
+bates          0.037 29.311    295
+hale           0.037 29.348    296
+rhodes         0.037 29.385    297
+pena           0.037 29.421    298
+beck           0.037 29.458    299
+newman         0.036 29.494    300
+haynes         0.036 29.531    301
+mcdaniel       0.036 29.567    302
+mendez         0.036 29.603    303
+bush           0.036 29.639    304
+vaughn         0.036 29.675    305
+parks          0.035 29.711    306
+dawson         0.035 29.746    307
+santiago       0.035 29.781    308
+norris         0.035 29.817    309
+hardy          0.035 29.852    310
+love           0.035 29.887    311
+steele         0.035 29.921    312
+curry          0.035 29.956    313
+powers         0.035 29.991    314
+schultz        0.035 30.025    315
+barker         0.035 30.060    316
+guzman         0.034 30.094    317
+page           0.034 30.129    318
+munoz          0.034 30.163    319
+ball           0.034 30.197    320
+keller         0.034 30.231    321
+chandler       0.034 30.265    322
+weber          0.034 30.299    323
+leonard        0.034 30.333    324
+walsh          0.033 30.366    325
+lyons          0.033 30.400    326
+ramsey         0.033 30.433    327
+wolfe          0.033 30.466    328
+schneider      0.033 30.499    329
+mullins        0.033 30.532    330
+benson         0.033 30.565    331
+sharp          0.033 30.598    332
+bowen          0.033 30.631    333
+daniel         0.033 30.663    334
+barber         0.032 30.696    335
+cummings       0.032 30.728    336
+hines          0.032 30.760    337
+baldwin        0.032 30.793    338
+griffith       0.032 30.824    339
+valdez         0.032 30.856    340
+hubbard        0.032 30.888    341
+salazar        0.032 30.920    342
+reeves         0.032 30.951    343
+warner         0.031 30.983    344
+stevenson      0.031 31.014    345
+burgess        0.031 31.045    346
+santos         0.031 31.076    347
+tate           0.031 31.107    348
+cross          0.031 31.138    349
+garner         0.031 31.169    350
+mann           0.031 31.200    351
+mack           0.031 31.231    352
+moss           0.031 31.262    353
+thornton       0.031 31.292    354
+dennis         0.031 31.323    355
+mcgee          0.031 31.354    356
+farmer         0.030 31.384    357
+delgado        0.030 31.415    358
+aguilar        0.030 31.445    359
+vega           0.030 31.475    360
+glover         0.030 31.505    361
+manning        0.030 31.535    362
+cohen          0.030 31.566    363
+harmon         0.030 31.596    364
+rodgers        0.030 31.626    365
+robbins        0.030 31.656    366
+newton         0.030 31.686    367
+todd           0.030 31.716    368
+blair          0.030 31.746    369
+higgins        0.030 31.776    370
+ingram         0.030 31.806    371
+reese          0.030 31.836    372
+cannon         0.030 31.865    373
+strickland     0.030 31.895    374
+townsend       0.030 31.925    375
+potter         0.030 31.955    376
+goodwin        0.030 31.984    377
+walton         0.030 32.014    378
+rowe           0.029 32.043    379
+hampton        0.029 32.073    380
+ortega         0.029 32.102    381
+patton         0.029 32.131    382
+swanson        0.029 32.161    383
+joseph         0.029 32.190    384
+francis        0.029 32.219    385
+goodman        0.029 32.248    386
+maldonado      0.029 32.277    387
+yates          0.029 32.305    388
+becker         0.029 32.334    389
+erickson       0.029 32.363    390
+hodges         0.029 32.392    391
+rios           0.029 32.421    392
+conner         0.029 32.449    393
+adkins         0.029 32.478    394
+webster        0.028 32.506    395
+norman         0.028 32.535    396
+malone         0.028 32.563    397
+hammond        0.028 32.591    398
+flowers        0.028 32.620    399
+cobb           0.028 32.648    400
+moody          0.028 32.676    401
+quinn          0.028 32.704    402
+blake          0.028 32.732    403
+maxwell        0.028 32.759    404
+pope           0.028 32.787    405
+floyd          0.027 32.814    406
+osborne        0.027 32.842    407
+paul           0.027 32.869    408
+mccarthy       0.027 32.896    409
+guerrero       0.027 32.924    410
+lindsey        0.027 32.951    411
+estrada        0.027 32.978    412
+sandoval       0.027 33.005    413
+gibbs          0.027 33.032    414
+tyler          0.027 33.059    415
+gross          0.027 33.086    416
+fitzgerald     0.027 33.113    417
+stokes         0.027 33.140    418
+doyle          0.027 33.167    419
+sherman        0.027 33.193    420
+saunders       0.027 33.220    421
+wise           0.027 33.247    422
+colon          0.027 33.274    423
+gill           0.027 33.300    424
+alvarado       0.027 33.327    425
+greer          0.026 33.353    426
+padilla        0.026 33.380    427
+simon          0.026 33.406    428
+waters         0.026 33.432    429
+nunez          0.026 33.459    430
+ballard        0.026 33.485    431
+schwartz       0.026 33.511    432
+mcbride        0.026 33.536    433
+houston        0.026 33.562    434
+christensen    0.026 33.588    435
+klein          0.026 33.614    436
+pratt          0.026 33.640    437
+briggs         0.026 33.666    438
+parsons        0.026 33.692    439
+mclaughlin     0.026 33.717    440
+zimmerman      0.026 33.743    441
+french         0.026 33.769    442
+buchanan       0.026 33.794    443
+moran          0.026 33.820    444
+copeland       0.025 33.845    445
+roy            0.025 33.871    446
+pittman        0.025 33.896    447
+brady          0.025 33.922    448
+mccormick      0.025 33.947    449
+holloway       0.025 33.972    450
+brock          0.025 33.998    451
+poole          0.025 34.023    452
+frank          0.025 34.048    453
+logan          0.025 34.073    454
+owen           0.025 34.098    455
+bass           0.025 34.122    456
+marsh          0.025 34.147    457
+drake          0.025 34.172    458
+wong           0.025 34.197    459
+jefferson      0.025 34.221    460
+park           0.025 34.246    461
+morton         0.025 34.271    462
+abbott         0.025 34.295    463
+sparks         0.025 34.320    464
+patrick        0.024 34.344    465
+norton         0.024 34.369    466
+huff           0.024 34.393    467
+clayton        0.024 34.417    468
+massey         0.024 34.442    469
+lloyd          0.024 34.466    470
+figueroa       0.024 34.490    471
+carson         0.024 34.514    472
+bowers         0.024 34.538    473
+roberson       0.024 34.563    474
+barton         0.024 34.587    475
+tran           0.024 34.611    476
+lamb           0.024 34.635    477
+harrington     0.024 34.659    478
+casey          0.024 34.683    479
+boone          0.024 34.706    480
+cortez         0.024 34.730    481
+clarke         0.024 34.754    482
+mathis         0.024 34.778    483
+singleton      0.024 34.801    484
+wilkins        0.024 34.825    485
+cain           0.024 34.849    486
+bryan          0.024 34.872    487
+underwood      0.024 34.896    488
+hogan          0.024 34.920    489
+mckenzie       0.023 34.943    490
+collier        0.023 34.966    491
+luna           0.023 34.990    492
+phelps         0.023 35.013    493
+mcguire        0.023 35.036    494
+allison        0.023 35.059    495
+bridges        0.023 35.083    496
+wilkerson      0.023 35.106    497
+nash           0.023 35.129    498
+summers        0.023 35.152    499
+atkins         0.023 35.175    500
+wilcox         0.023 35.198    501
+pitts          0.023 35.221    502
+conley         0.023 35.244    503
+marquez        0.023 35.267    504
+burnett        0.023 35.290    505
+richard        0.023 35.313    506
+cochran        0.023 35.335    507
+chase          0.023 35.358    508
+davenport      0.023 35.381    509
+hood           0.023 35.404    510
+gates          0.023 35.427    511
+clay           0.023 35.449    512
+ayala          0.023 35.472    513
+sawyer         0.023 35.495    514
+roman          0.023 35.517    515
+vazquez        0.023 35.540    516
+dickerson      0.023 35.562    517
+hodge          0.022 35.585    518
+acosta         0.022 35.607    519
+flynn          0.022 35.630    520
+espinoza       0.022 35.652    521
+nicholson      0.022 35.675    522
+monroe         0.022 35.697    523
+wolf           0.022 35.719    524
+morrow         0.022 35.741    525
+kirk           0.022 35.763    526
+randall        0.022 35.785    527
+anthony        0.022 35.807    528
+whitaker       0.022 35.829    529
+oconnor        0.022 35.851    530
+skinner        0.022 35.873    531
+ware           0.022 35.895    532
+molina         0.022 35.916    533
+kirby          0.022 35.938    534
+huffman        0.022 35.960    535
+bradford       0.022 35.982    536
+charles        0.022 36.003    537
+gilmore        0.022 36.025    538
+dominguez      0.022 36.046    539
+oneal          0.022 36.068    540
+bruce          0.022 36.090    541
+lang           0.021 36.111    542
+combs          0.021 36.132    543
+kramer         0.021 36.154    544
+heath          0.021 36.175    545
+hancock        0.021 36.196    546
+gallagher      0.021 36.218    547
+gaines         0.021 36.239    548
+shaffer        0.021 36.260    549
+short          0.021 36.281    550
+wiggins        0.021 36.302    551
+mathews        0.021 36.323    552
+mcclain        0.021 36.344    553
+fischer        0.021 36.365    554
+wall           0.021 36.386    555
+small          0.021 36.407    556
+melton         0.021 36.428    557
+hensley        0.021 36.449    558
+bond           0.021 36.470    559
+dyer           0.021 36.491    560
+cameron        0.021 36.511    561
+grimes         0.021 36.532    562
+contreras      0.021 36.553    563
+christian      0.021 36.573    564
+wyatt          0.021 36.594    565
+baxter         0.021 36.615    566
+snow           0.021 36.635    567
+mosley         0.021 36.656    568
+shepherd       0.021 36.677    569
+larsen         0.021 36.697    570
+hoover         0.021 36.718    571
+beasley        0.020 36.738    572
+glenn          0.020 36.758    573
+petersen       0.020 36.779    574
+whitehead      0.020 36.799    575
+meyers         0.020 36.819    576
+keith          0.020 36.840    577
+garrison       0.020 36.860    578
+vincent        0.020 36.880    579
+shields        0.020 36.900    580
+horn           0.020 36.920    581
+savage         0.020 36.941    582
+olsen          0.020 36.961    583
+schroeder      0.020 36.981    584
+hartman        0.020 37.001    585
+woodard        0.020 37.021    586
+mueller        0.020 37.041    587
+kemp           0.020 37.061    588
+deleon         0.020 37.081    589
+booth          0.020 37.101    590
+patel          0.020 37.121    591
+calhoun        0.020 37.140    592
+wiley          0.020 37.160    593
+eaton          0.020 37.180    594
+cline          0.020 37.200    595
+navarro        0.020 37.220    596
+harrell        0.020 37.240    597
+lester         0.020 37.259    598
+humphrey       0.020 37.279    599
+parrish        0.020 37.299    600
+duran          0.020 37.318    601
+hutchinson     0.020 37.338    602
+hess           0.020 37.358    603
+dorsey         0.020 37.377    604
+bullock        0.020 37.397    605
+robles         0.020 37.416    606
+beard          0.019 37.436    607
+dalton         0.019 37.455    608
+avila          0.019 37.475    609
+vance          0.019 37.494    610
+rich           0.019 37.514    611
+blackwell      0.019 37.533    612
+york           0.019 37.552    613
+johns          0.019 37.572    614
+blankenship    0.019 37.591    615
+trevino        0.019 37.610    616
+salinas        0.019 37.630    617
+campos         0.019 37.649    618
+pruitt         0.019 37.668    619
+moses          0.019 37.688    620
+callahan       0.019 37.707    621
+golden         0.019 37.726    622
+montoya        0.019 37.745    623
+hardin         0.019 37.764    624
+guerra         0.019 37.783    625
+mcdowell       0.019 37.802    626
+carey          0.019 37.821    627
+stafford       0.019 37.840    628
+gallegos       0.019 37.859    629
+henson         0.019 37.878    630
+wilkinson      0.019 37.897    631
+booker         0.019 37.916    632
+merritt        0.019 37.935    633
+miranda        0.019 37.953    634
+atkinson       0.019 37.972    635
+orr            0.019 37.991    636
+decker         0.019 38.010    637
+hobbs          0.019 38.028    638
+preston        0.019 38.047    639
+tanner         0.019 38.066    640
+knox           0.019 38.084    641
+pacheco        0.019 38.103    642
+stephenson     0.018 38.121    643
+glass          0.018 38.140    644
+rojas          0.018 38.158    645
+serrano        0.018 38.176    646
+marks          0.018 38.195    647
+hickman        0.018 38.213    648
+english        0.018 38.231    649
+sweeney        0.018 38.249    650
+strong         0.018 38.267    651
+prince         0.018 38.285    652
+mcclure        0.018 38.304    653
+conway         0.018 38.322    654
+walter         0.018 38.340    655
+roth           0.018 38.358    656
+maynard        0.018 38.376    657
+farrell        0.018 38.394    658
+lowery         0.018 38.411    659
+hurst          0.018 38.429    660
+nixon          0.018 38.447    661
+weiss          0.018 38.465    662
+trujillo       0.018 38.483    663
+ellison        0.018 38.500    664
+sloan          0.018 38.518    665
+juarez         0.018 38.536    666
+winters        0.018 38.553    667
+mclean         0.018 38.571    668
+randolph       0.018 38.588    669
+leon           0.018 38.606    670
+boyer          0.018 38.624    671
+villarreal     0.018 38.641    672
+mccall         0.018 38.659    673
+gentry         0.018 38.676    674
+carrillo       0.017 38.694    675
+kent           0.017 38.711    676
+ayers          0.017 38.729    677
+lara           0.017 38.746    678
+shannon        0.017 38.763    679
+sexton         0.017 38.781    680
+pace           0.017 38.798    681
+hull           0.017 38.815    682
+leblanc        0.017 38.833    683
+browning       0.017 38.850    684
+velasquez      0.017 38.867    685
+leach          0.017 38.884    686
+chang          0.017 38.901    687
+house          0.017 38.918    688
+sellers        0.017 38.936    689
+herring        0.017 38.953    690
+noble          0.017 38.970    691
+foley          0.017 38.987    692
+bartlett       0.017 39.004    693
+mercado        0.017 39.021    694
+landry         0.017 39.037    695
+durham         0.017 39.054    696
+walls          0.017 39.071    697
+barr           0.017 39.088    698
+mckee          0.017 39.105    699
+bauer          0.017 39.122    700
+rivers         0.017 39.139    701
+everett        0.017 39.155    702
+bradshaw       0.017 39.172    703
+pugh           0.017 39.189    704
+velez          0.017 39.206    705
+rush           0.017 39.222    706
+estes          0.017 39.239    707
+dodson         0.017 39.255    708
+morse          0.017 39.272    709
+sheppard       0.017 39.289    710
+weeks          0.017 39.305    711
+camacho        0.017 39.322    712
+bean           0.017 39.338    713
+barron         0.017 39.355    714
+livingston     0.017 39.371    715
+middleton      0.016 39.388    716
+spears         0.016 39.404    717
+branch         0.016 39.420    718
+blevins        0.016 39.437    719
+chen           0.016 39.453    720
+kerr           0.016 39.469    721
+mcconnell      0.016 39.486    722
+hatfield       0.016 39.502    723
+harding        0.016 39.518    724
+ashley         0.016 39.535    725
+solis          0.016 39.551    726
+herman         0.016 39.567    727
+frost          0.016 39.583    728
+giles          0.016 39.599    729
+blackburn      0.016 39.616    730
+william        0.016 39.632    731
+pennington     0.016 39.648    732
+woodward       0.016 39.664    733
+finley         0.016 39.680    734
+mcintosh       0.016 39.696    735
+koch           0.016 39.713    736
+best           0.016 39.729    737
+solomon        0.016 39.745    738
+mccullough     0.016 39.761    739
+dudley         0.016 39.777    740
+nolan          0.016 39.793    741
+blanchard      0.016 39.809    742
+rivas          0.016 39.825    743
+brennan        0.016 39.841    744
+mejia          0.016 39.856    745
+kane           0.016 39.872    746
+benton         0.016 39.888    747
+joyce          0.016 39.904    748
+buckley        0.016 39.920    749
+haley          0.016 39.936    750
+valentine      0.016 39.952    751
+maddox         0.016 39.967    752
+russo          0.016 39.983    753
+mcknight       0.016 39.999    754
+buck           0.016 40.015    755
+moon           0.016 40.030    756
+mcmillan       0.016 40.046    757
+crosby         0.016 40.062    758
+berg           0.016 40.077    759
+dotson         0.016 40.093    760
+mays           0.016 40.109    761
+roach          0.016 40.124    762
+church         0.016 40.140    763
+chan           0.016 40.155    764
+richmond       0.016 40.171    765
+meadows        0.016 40.187    766
+faulkner       0.016 40.202    767
+oneill         0.016 40.218    768
+knapp          0.016 40.233    769
+kline          0.015 40.248    770
+barry          0.015 40.264    771
+ochoa          0.015 40.279    772
+jacobson       0.015 40.295    773
+gay            0.015 40.310    774
+avery          0.015 40.326    775
+hendricks      0.015 40.341    776
+horne          0.015 40.356    777
+shepard        0.015 40.372    778
+hebert         0.015 40.387    779
+cherry         0.015 40.402    780
+cardenas       0.015 40.418    781
+mcintyre       0.015 40.433    782
+whitney        0.015 40.448    783
+waller         0.015 40.463    784
+holman         0.015 40.478    785
+donaldson      0.015 40.494    786
+cantu          0.015 40.509    787
+terrell        0.015 40.524    788
+morin          0.015 40.539    789
+gillespie      0.015 40.555    790
+fuentes        0.015 40.570    791
+tillman        0.015 40.585    792
+sanford        0.015 40.600    793
+bentley        0.015 40.615    794
+peck           0.015 40.630    795
+key            0.015 40.645    796
+salas          0.015 40.660    797
+rollins        0.015 40.676    798
+gamble         0.015 40.691    799
+dickson        0.015 40.706    800
+battle         0.015 40.721    801
+santana        0.015 40.736    802
+cabrera        0.015 40.751    803
+cervantes      0.015 40.766    804
+howe           0.015 40.781    805
+hinton         0.015 40.796    806
+hurley         0.015 40.811    807
+spence         0.015 40.825    808
+zamora         0.015 40.840    809
+yang           0.015 40.855    810
+mcneil         0.015 40.870    811
+suarez         0.015 40.885    812
+case           0.015 40.900    813
+petty          0.015 40.915    814
+gould          0.015 40.929    815
+mcfarland      0.015 40.944    816
+sampson        0.015 40.959    817
+carver         0.015 40.974    818
+bray           0.015 40.989    819
+rosario        0.015 41.003    820
+macdonald      0.015 41.018    821
+stout          0.015 41.033    822
+hester         0.015 41.047    823
+melendez       0.015 41.062    824
+dillon         0.015 41.077    825
+farley         0.015 41.091    826
+hopper         0.015 41.106    827
+galloway       0.015 41.121    828
+potts          0.015 41.135    829
+bernard        0.015 41.150    830
+joyner         0.014 41.164    831
+stein          0.014 41.179    832
+aguirre        0.014 41.193    833
+osborn         0.014 41.208    834
+mercer         0.014 41.222    835
+bender         0.014 41.236    836
+franco         0.014 41.251    837
+rowland        0.014 41.265    838
+sykes          0.014 41.280    839
+benjamin       0.014 41.294    840
+travis         0.014 41.308    841
+pickett        0.014 41.323    842
+crane          0.014 41.337    843
+sears          0.014 41.351    844
+mayo           0.014 41.365    845
+dunlap         0.014 41.379    846
+hayden         0.014 41.394    847
+wilder         0.014 41.408    848
+mckay          0.014 41.422    849
+coffey         0.014 41.436    850
+mccarty        0.014 41.450    851
+ewing          0.014 41.464    852
+cooley         0.014 41.478    853
+vaughan        0.014 41.492    854
+bonner         0.014 41.506    855
+cotton         0.014 41.520    856
+holder         0.014 41.534    857
+stark          0.014 41.548    858
+ferrell        0.014 41.562    859
+cantrell       0.014 41.575    860
+fulton         0.014 41.589    861
+lynn           0.014 41.603    862
+lott           0.014 41.617    863
+calderon       0.014 41.631    864
+rosa           0.014 41.644    865
+pollard        0.014 41.658    866
+hooper         0.014 41.672    867
+burch          0.014 41.686    868
+mullen         0.014 41.700    869
+fry            0.014 41.713    870
+riddle         0.014 41.727    871
+levy           0.014 41.741    872
+david          0.014 41.754    873
+duke           0.014 41.768    874
+odonnell       0.014 41.782    875
+guy            0.014 41.795    876
+michael        0.014 41.809    877
+britt          0.014 41.823    878
+frederick      0.014 41.836    879
+daugherty      0.014 41.850    880
+berger         0.014 41.864    881
+dillard        0.014 41.877    882
+alston         0.014 41.891    883
+jarvis         0.014 41.904    884
+frye           0.014 41.918    885
+riggs          0.014 41.932    886
+chaney         0.014 41.945    887
+odom           0.013 41.959    888
+duffy          0.013 41.972    889
+fitzpatrick    0.013 41.986    890
+valenzuela     0.013 41.999    891
+merrill        0.013 42.012    892
+mayer          0.013 42.026    893
+alford         0.013 42.039    894
+mcpherson      0.013 42.053    895
+acevedo        0.013 42.066    896
+donovan        0.013 42.079    897
+barrera        0.013 42.093    898
+albert         0.013 42.106    899
+cote           0.013 42.119    900
+reilly         0.013 42.133    901
+compton        0.013 42.146    902
+raymond        0.013 42.159    903
+mooney         0.013 42.173    904
+mcgowan        0.013 42.186    905
+craft          0.013 42.199    906
+cleveland      0.013 42.212    907
+clemons        0.013 42.226    908
+wynn           0.013 42.239    909
+nielsen        0.013 42.252    910
+baird          0.013 42.265    911
+stanton        0.013 42.278    912
+snider         0.013 42.292    913
+rosales        0.013 42.305    914
+bright         0.013 42.318    915
+witt           0.013 42.331    916
+stuart         0.013 42.344    917
+hays           0.013 42.357    918
+holden         0.013 42.371    919
+rutledge       0.013 42.384    920
+kinney         0.013 42.397    921
+clements       0.013 42.410    922
+castaneda      0.013 42.423    923
+slater         0.013 42.436    924
+hahn           0.013 42.449    925
+emerson        0.013 42.462    926
+conrad         0.013 42.475    927
+burks          0.013 42.488    928
+delaney        0.013 42.501    929
+pate           0.013 42.514    930
+lancaster      0.013 42.527    931
+sweet          0.013 42.540    932
+justice        0.013 42.552    933
+tyson          0.013 42.565    934
+sharpe         0.013 42.578    935
+whitfield      0.013 42.591    936
+talley         0.013 42.604    937
+macias         0.013 42.617    938
+irwin          0.013 42.629    939
+burris         0.013 42.642    940
+ratliff        0.013 42.655    941
+mccray         0.013 42.668    942
+madden         0.013 42.681    943
+kaufman        0.013 42.693    944
+beach          0.013 42.706    945
+goff           0.013 42.719    946
+cash           0.013 42.732    947
+bolton         0.013 42.744    948
+mcfadden       0.013 42.757    949
+levine         0.013 42.770    950
+good           0.013 42.782    951
+byers          0.013 42.795    952
+kirkland       0.013 42.808    953
+kidd           0.013 42.821    954
+workman        0.013 42.833    955
+carney         0.013 42.846    956
+dale           0.013 42.859    957
+mcleod         0.013 42.871    958
+holcomb        0.013 42.884    959
+england        0.013 42.896    960
+finch          0.013 42.909    961
+head           0.012 42.921    962
+burt           0.012 42.934    963
+hendrix        0.012 42.946    964
+sosa           0.012 42.959    965
+haney          0.012 42.971    966
+franks         0.012 42.984    967
+sargent        0.012 42.996    968
+nieves         0.012 43.009    969
+downs          0.012 43.021    970
+rasmussen      0.012 43.033    971
+bird           0.012 43.046    972
+hewitt         0.012 43.058    973
+lindsay        0.012 43.071    974
+le             0.012 43.083    975
+foreman        0.012 43.095    976
+valencia       0.012 43.108    977
+oneil          0.012 43.120    978
+delacruz       0.012 43.132    979
+vinson         0.012 43.145    980
+dejesus        0.012 43.157    981
+hyde           0.012 43.169    982
+forbes         0.012 43.182    983
+gilliam        0.012 43.194    984
+guthrie        0.012 43.206    985
+wooten         0.012 43.218    986
+huber          0.012 43.231    987
+barlow         0.012 43.243    988
+boyle          0.012 43.255    989
+mcmahon        0.012 43.267    990
+buckner        0.012 43.279    991
+rocha          0.012 43.291    992
+puckett        0.012 43.303    993
+langley        0.012 43.315    994
+knowles        0.012 43.328    995
+cooke          0.012 43.340    996
+velazquez      0.012 43.352    997
+whitley        0.012 43.364    998
+noel           0.012 43.376    999
+vang           0.012 43.388   1000
+shea           0.012 43.399   1001
+rouse          0.012 43.411   1002
+hartley        0.012 43.423   1003
+mayfield       0.012 43.435   1004
+elder          0.012 43.447   1005
+rankin         0.012 43.459   1006
+hanna          0.012 43.471   1007
+cowan          0.012 43.483   1008
+lucero         0.012 43.495   1009
+arroyo         0.012 43.507   1010
+slaughter      0.012 43.519   1011
+haas           0.012 43.531   1012
+oconnell       0.012 43.542   1013
+minor          0.012 43.554   1014
+kendrick       0.012 43.566   1015
+shirley        0.012 43.578   1016
+kendall        0.012 43.590   1017
+boucher        0.012 43.602   1018
+archer         0.012 43.613   1019
+boggs          0.012 43.625   1020
+odell          0.012 43.637   1021
+dougherty      0.012 43.649   1022
+andersen       0.012 43.661   1023
+newell         0.012 43.672   1024
+crowe          0.012 43.684   1025
+wang           0.012 43.696   1026
+friedman       0.012 43.708   1027
+bland          0.012 43.719   1028
+swain          0.012 43.731   1029
+holley         0.012 43.743   1030
+felix          0.012 43.754   1031
+pearce         0.012 43.766   1032
+childs         0.012 43.778   1033
+yarbrough      0.012 43.789   1034
+galvan         0.012 43.801   1035
+proctor        0.012 43.812   1036
+meeks          0.012 43.824   1037
+lozano         0.012 43.836   1038
+mora           0.012 43.847   1039
+rangel         0.012 43.859   1040
+bacon          0.012 43.870   1041
+villanueva     0.012 43.882   1042
+schaefer       0.012 43.893   1043
+rosado         0.012 43.905   1044
+helms          0.012 43.917   1045
+boyce          0.012 43.928   1046
+goss           0.012 43.940   1047
+stinson        0.011 43.951   1048
+smart          0.011 43.963   1049
+lake           0.011 43.974   1050
+ibarra         0.011 43.986   1051
+hutchins       0.011 43.997   1052
+covington      0.011 44.009   1053
+reyna          0.011 44.020   1054
+gregg          0.011 44.032   1055
+werner         0.011 44.043   1056
+crowley        0.011 44.054   1057
+hatcher        0.011 44.066   1058
+mackey         0.011 44.077   1059
+bunch          0.011 44.089   1060
+womack         0.011 44.100   1061
+polk           0.011 44.111   1062
+jamison        0.011 44.123   1063
+dodd           0.011 44.134   1064
+childress      0.011 44.146   1065
+childers       0.011 44.157   1066
+camp           0.011 44.168   1067
+villa          0.011 44.180   1068
+dye            0.011 44.191   1069
+springer       0.011 44.202   1070
+mahoney        0.011 44.214   1071
+dailey         0.011 44.225   1072
+belcher        0.011 44.236   1073
+lockhart       0.011 44.248   1074
+griggs         0.011 44.259   1075
+costa          0.011 44.270   1076
+connor         0.011 44.281   1077
+brandt         0.011 44.293   1078
+winter         0.011 44.304   1079
+walden         0.011 44.315   1080
+moser          0.011 44.326   1081
+tracy          0.011 44.338   1082
+tatum          0.011 44.349   1083
+mccann         0.011 44.360   1084
+akers          0.011 44.371   1085
+lutz           0.011 44.382   1086
+pryor          0.011 44.393   1087
+law            0.011 44.404   1088
+orozco         0.011 44.415   1089
+mcallister     0.011 44.427   1090
+lugo           0.011 44.438   1091
+davies         0.011 44.449   1092
+shoemaker      0.011 44.460   1093
+madison        0.011 44.471   1094
+rutherford     0.011 44.482   1095
+newsome        0.011 44.493   1096
+magee          0.011 44.504   1097
+chamberlain    0.011 44.515   1098
+blanton        0.011 44.526   1099
+simms          0.011 44.537   1100
+godfrey        0.011 44.548   1101
+flanagan       0.011 44.559   1102
+crum           0.011 44.570   1103
+cordova        0.011 44.581   1104
+escobar        0.011 44.592   1105
+downing        0.011 44.603   1106
+sinclair       0.011 44.614   1107
+donahue        0.011 44.625   1108
+krueger        0.011 44.636   1109
+mcginnis       0.011 44.647   1110
+gore           0.011 44.658   1111
+farris         0.011 44.669   1112
+webber         0.011 44.680   1113
+corbett        0.011 44.691   1114
+andrade        0.011 44.701   1115
+starr          0.011 44.712   1116
+lyon           0.011 44.723   1117
+yoder          0.011 44.734   1118
+hastings       0.011 44.745   1119
+mcgrath        0.011 44.756   1120
+spivey         0.011 44.767   1121
+krause         0.011 44.778   1122
+harden         0.011 44.788   1123
+crabtree       0.011 44.799   1124
+kirkpatrick    0.011 44.810   1125
+hollis         0.011 44.821   1126
+brandon        0.011 44.832   1127
+arrington      0.011 44.843   1128
+ervin          0.011 44.853   1129
+clifton        0.011 44.864   1130
+ritter         0.011 44.875   1131
+mcghee         0.011 44.886   1132
+bolden         0.011 44.897   1133
+maloney        0.011 44.907   1134
+gagnon         0.011 44.918   1135
+dunbar         0.011 44.929   1136
+ponce          0.011 44.940   1137
+pike           0.011 44.950   1138
+mayes          0.011 44.961   1139
+heard          0.011 44.972   1140
+beatty         0.011 44.983   1141
+mobley         0.011 44.993   1142
+kimball        0.011 45.004   1143
+butts          0.011 45.015   1144
+montes         0.011 45.026   1145
+herbert        0.011 45.036   1146
+grady          0.011 45.047   1147
+eldridge       0.011 45.058   1148
+braun          0.011 45.068   1149
+hamm           0.011 45.079   1150
+gibbons        0.011 45.090   1151
+seymour        0.011 45.100   1152
+moyer          0.011 45.111   1153
+manley         0.011 45.122   1154
+herron         0.011 45.132   1155
+plummer        0.011 45.143   1156
+elmore         0.011 45.153   1157
+cramer         0.011 45.164   1158
+gary           0.011 45.175   1159
+rucker         0.011 45.185   1160
+hilton         0.011 45.196   1161
+blue           0.011 45.206   1162
+pierson        0.011 45.217   1163
+fontenot       0.011 45.227   1164
+field          0.011 45.238   1165
+rubio          0.011 45.248   1166
+grace          0.011 45.259   1167
+goldstein      0.011 45.269   1168
+elkins         0.011 45.280   1169
+wills          0.010 45.290   1170
+novak          0.010 45.301   1171
+john           0.010 45.311   1172
+hickey         0.010 45.322   1173
+worley         0.010 45.332   1174
+gorman         0.010 45.343   1175
+katz           0.010 45.353   1176
+dickinson      0.010 45.364   1177
+broussard      0.010 45.374   1178
+fritz          0.010 45.384   1179
+woodruff       0.010 45.395   1180
+crow           0.010 45.405   1181
+christopher    0.010 45.416   1182
+britton        0.010 45.426   1183
+forrest        0.010 45.436   1184
+nance          0.010 45.447   1185
+lehman         0.010 45.457   1186
+bingham        0.010 45.467   1187
+zuniga         0.010 45.478   1188
+whaley         0.010 45.488   1189
+shafer         0.010 45.498   1190
+coffman        0.010 45.509   1191
+steward        0.010 45.519   1192
+delarosa       0.010 45.529   1193
+nix            0.010 45.540   1194
+neely          0.010 45.550   1195
+numbers        0.010 45.560   1196
+mata           0.010 45.571   1197
+manuel         0.010 45.581   1198
+davila         0.010 45.591   1199
+mccabe         0.010 45.601   1200
+kessler        0.010 45.612   1201
+emery          0.010 45.622   1202
+bowling        0.010 45.632   1203
+hinkle         0.010 45.643   1204
+welsh          0.010 45.653   1205
+pagan          0.010 45.663   1206
+goldberg       0.010 45.673   1207
+goins          0.010 45.683   1208
+crouch         0.010 45.694   1209
+cuevas         0.010 45.704   1210
+quinones       0.010 45.714   1211
+mcdermott      0.010 45.724   1212
+hendrickson    0.010 45.734   1213
+samuels        0.010 45.745   1214
+denton         0.010 45.755   1215
+bergeron       0.010 45.765   1216
+lam            0.010 45.775   1217
+ivey           0.010 45.785   1218
+locke          0.010 45.795   1219
+haines         0.010 45.805   1220
+thurman        0.010 45.815   1221
+snell          0.010 45.825   1222
+hoskins        0.010 45.836   1223
+byrne          0.010 45.846   1224
+milton         0.010 45.856   1225
+winston        0.010 45.866   1226
+arthur         0.010 45.876   1227
+arias          0.010 45.886   1228
+stanford       0.010 45.896   1229
+roe            0.010 45.906   1230
+corbin         0.010 45.916   1231
+beltran        0.010 45.926   1232
+chappell       0.010 45.936   1233
+hurt           0.010 45.946   1234
+downey         0.010 45.956   1235
+dooley         0.010 45.966   1236
+tuttle         0.010 45.976   1237
+couch          0.010 45.986   1238
+payton         0.010 45.996   1239
+mcelroy        0.010 46.006   1240
+crockett       0.010 46.016   1241
+groves         0.010 46.026   1242
+clement        0.010 46.036   1243
+leslie         0.010 46.046   1244
+cartwright     0.010 46.055   1245
+dickey         0.010 46.065   1246
+mcgill         0.010 46.075   1247
+dubois         0.010 46.085   1248
+muniz          0.010 46.095   1249
+erwin          0.010 46.105   1250
+self           0.010 46.115   1251
+tolbert        0.010 46.125   1252
+dempsey        0.010 46.134   1253
+cisneros       0.010 46.144   1254
+sewell         0.010 46.154   1255
+latham         0.010 46.164   1256
+garland        0.010 46.174   1257
+vigil          0.010 46.183   1258
+tapia          0.010 46.193   1259
+sterling       0.010 46.203   1260
+rainey         0.010 46.213   1261
+norwood        0.010 46.223   1262
+lacy           0.010 46.232   1263
+stroud         0.010 46.242   1264
+meade          0.010 46.252   1265
+amos           0.010 46.262   1266
+tipton         0.010 46.271   1267
+lord           0.010 46.281   1268
+kuhn           0.010 46.291   1269
+hilliard       0.010 46.301   1270
+bonilla        0.010 46.311   1271
+teague         0.010 46.320   1272
+courtney       0.010 46.330   1273
+gunn           0.010 46.340   1274
+ho             0.010 46.349   1275
+greenwood      0.010 46.359   1276
+correa         0.010 46.369   1277
+reece          0.010 46.378   1278
+weston         0.010 46.388   1279
+poe            0.010 46.398   1280
+trent          0.010 46.407   1281
+pineda         0.010 46.417   1282
+phipps         0.010 46.427   1283
+frey           0.010 46.436   1284
+kaiser         0.010 46.446   1285
+ames           0.010 46.456   1286
+paige          0.010 46.465   1287
+gunter         0.010 46.475   1288
+schmitt        0.010 46.484   1289
+milligan       0.010 46.494   1290
+espinosa       0.010 46.503   1291
+carlton        0.010 46.513   1292
+bowden         0.010 46.523   1293
+vickers        0.010 46.532   1294
+lowry          0.010 46.542   1295
+pritchard      0.010 46.551   1296
+costello       0.010 46.561   1297
+piper          0.009 46.570   1298
+mcclellan      0.009 46.580   1299
+lovell         0.009 46.589   1300
+drew           0.009 46.599   1301
+sheehan        0.009 46.608   1302
+quick          0.009 46.617   1303
+hatch          0.009 46.627   1304
+dobson         0.009 46.636   1305
+singh          0.009 46.646   1306
+jeffries       0.009 46.655   1307
+hollingsworth  0.009 46.665   1308
+sorensen       0.009 46.674   1309
+meza           0.009 46.684   1310
+fink           0.009 46.693   1311
+donnelly       0.009 46.702   1312
+burrell        0.009 46.712   1313
+bruno          0.009 46.721   1314
+tomlinson      0.009 46.731   1315
+colbert        0.009 46.740   1316
+billings       0.009 46.749   1317
+ritchie        0.009 46.759   1318
+helton         0.009 46.768   1319
+sutherland     0.009 46.777   1320
+peoples        0.009 46.787   1321
+mcqueen        0.009 46.796   1322
+gaston         0.009 46.806   1323
+thomason       0.009 46.815   1324
+mckinley       0.009 46.824   1325
+givens         0.009 46.834   1326
+crocker        0.009 46.843   1327
+vogel          0.009 46.852   1328
+robison        0.009 46.862   1329
+dunham         0.009 46.871   1330
+coker          0.009 46.880   1331
+swartz         0.009 46.890   1332
+keys           0.009 46.899   1333
+lilly          0.009 46.908   1334
+ladner         0.009 46.917   1335
+hannah         0.009 46.927   1336
+willard        0.009 46.936   1337
+richter        0.009 46.945   1338
+hargrove       0.009 46.955   1339
+edmonds        0.009 46.964   1340
+brantley       0.009 46.973   1341
+albright       0.009 46.982   1342
+murdock        0.009 46.992   1343
+boswell        0.009 47.001   1344
+muller         0.009 47.010   1345
+quintero       0.009 47.019   1346
+padgett        0.009 47.028   1347
+kenney         0.009 47.038   1348
+daly           0.009 47.047   1349
+connolly       0.009 47.056   1350
+pierre         0.009 47.065   1351
+inman          0.009 47.074   1352
+quintana       0.009 47.084   1353
+lund           0.009 47.093   1354
+barnard        0.009 47.102   1355
+villegas       0.009 47.111   1356
+simons         0.009 47.120   1357
+land           0.009 47.129   1358
+huggins        0.009 47.138   1359
+tidwell        0.009 47.148   1360
+sanderson      0.009 47.157   1361
+bullard        0.009 47.166   1362
+mcclendon      0.009 47.175   1363
+duarte         0.009 47.184   1364
+draper         0.009 47.193   1365
+meredith       0.009 47.202   1366
+marrero        0.009 47.211   1367
+dwyer          0.009 47.220   1368
+abrams         0.009 47.230   1369
+stover         0.009 47.239   1370
+goode          0.009 47.248   1371
+fraser         0.009 47.257   1372
+crews          0.009 47.266   1373
+bernal         0.009 47.275   1374
+smiley         0.009 47.284   1375
+godwin         0.009 47.293   1376
+fish           0.009 47.302   1377
+conklin        0.009 47.311   1378
+mcneal         0.009 47.320   1379
+baca           0.009 47.329   1380
+esparza        0.009 47.338   1381
+crowder        0.009 47.347   1382
+bower          0.009 47.356   1383
+nicholas       0.009 47.365   1384
+chung          0.009 47.374   1385
+brewster       0.009 47.383   1386
+mcneill        0.009 47.392   1387
+dick           0.009 47.401   1388
+rodrigues      0.009 47.409   1389
+leal           0.009 47.418   1390
+coates         0.009 47.427   1391
+raines         0.009 47.436   1392
+mccain         0.009 47.445   1393
+mccord         0.009 47.454   1394
+miner          0.009 47.463   1395
+holbrook       0.009 47.472   1396
+swift          0.009 47.481   1397
+dukes          0.009 47.489   1398
+carlisle       0.009 47.498   1399
+aldridge       0.009 47.507   1400
+ackerman       0.009 47.516   1401
+starks         0.009 47.525   1402
+ricks          0.009 47.533   1403
+holliday       0.009 47.542   1404
+ferris         0.009 47.551   1405
+hairston       0.009 47.560   1406
+sheffield      0.009 47.569   1407
+lange          0.009 47.577   1408
+fountain       0.009 47.586   1409
+marino         0.009 47.595   1410
+doss           0.009 47.604   1411
+betts          0.009 47.612   1412
+kaplan         0.009 47.621   1413
+carmichael     0.009 47.630   1414
+bloom          0.009 47.639   1415
+ruffin         0.009 47.647   1416
+penn           0.009 47.656   1417
+kern           0.009 47.665   1418
+bowles         0.009 47.673   1419
+sizemore       0.009 47.682   1420
+larkin         0.009 47.691   1421
+dupree         0.009 47.699   1422
+jewell         0.009 47.708   1423
+silver         0.009 47.717   1424
+seals          0.009 47.726   1425
+metcalf        0.009 47.734   1426
+hutchison      0.009 47.743   1427
+henley         0.009 47.751   1428
+farr           0.009 47.760   1429
+castle         0.009 47.769   1430
+mccauley       0.009 47.777   1431
+hankins        0.009 47.786   1432
+gustafson      0.009 47.795   1433
+deal           0.009 47.803   1434
+curran         0.009 47.812   1435
+ash            0.009 47.821   1436
+waddell        0.009 47.829   1437
+ramey          0.009 47.838   1438
+cates          0.009 47.847   1439
+pollock        0.009 47.855   1440
+major          0.009 47.864   1441
+irvin          0.009 47.872   1442
+cummins        0.009 47.881   1443
+messer         0.009 47.890   1444
+heller         0.009 47.898   1445
+dewitt         0.009 47.907   1446
+lin            0.009 47.915   1447
+funk           0.009 47.924   1448
+cornett        0.009 47.932   1449
+palacios       0.009 47.941   1450
+galindo        0.009 47.949   1451
+cano           0.009 47.958   1452
+hathaway       0.009 47.966   1453
+singer         0.008 47.975   1454
+pham           0.008 47.983   1455
+enriquez       0.008 47.992   1456
+aaron          0.008 48.000   1457
+salgado        0.008 48.009   1458
+pelletier      0.008 48.017   1459
+painter        0.008 48.026   1460
+wiseman        0.008 48.034   1461
+blount         0.008 48.043   1462
+hand           0.008 48.051   1463
+feliciano      0.008 48.059   1464
+temple         0.008 48.068   1465
+houser         0.008 48.076   1466
+doherty        0.008 48.085   1467
+mead           0.008 48.093   1468
+mcgraw         0.008 48.101   1469
+toney          0.008 48.110   1470
+swan           0.008 48.118   1471
+melvin         0.008 48.126   1472
+capps          0.008 48.135   1473
+blanco         0.008 48.143   1474
+blackmon       0.008 48.152   1475
+wesley         0.008 48.160   1476
+thomson        0.008 48.168   1477
+mcmanus        0.008 48.177   1478
+fair           0.008 48.185   1479
+burkett        0.008 48.193   1480
+post           0.008 48.202   1481
+gleason        0.008 48.210   1482
+rudolph        0.008 48.218   1483
+ott            0.008 48.227   1484
+dickens        0.008 48.235   1485
+cormier        0.008 48.243   1486
+voss           0.008 48.251   1487
+rushing        0.008 48.260   1488
+rosenberg      0.008 48.268   1489
+hurd           0.008 48.276   1490
+dumas          0.008 48.285   1491
+benitez        0.008 48.293   1492
+arellano       0.008 48.301   1493
+story          0.008 48.309   1494
+marin          0.008 48.318   1495
+caudill        0.008 48.326   1496
+bragg          0.008 48.334   1497
+jaramillo      0.008 48.343   1498
+huerta         0.008 48.351   1499
+gipson         0.008 48.359   1500
+colvin         0.008 48.367   1501
+biggs          0.008 48.376   1502
+vela           0.008 48.384   1503
+platt          0.008 48.392   1504
+cassidy        0.008 48.400   1505
+tompkins       0.008 48.408   1506
+mccollum       0.008 48.417   1507
+kay            0.008 48.425   1508
+gabriel        0.008 48.433   1509
+dolan          0.008 48.441   1510
+daley          0.008 48.450   1511
+crump          0.008 48.458   1512
+street         0.008 48.466   1513
+sneed          0.008 48.474   1514
+kilgore        0.008 48.482   1515
+grove          0.008 48.491   1516
+grimm          0.008 48.499   1517
+davison        0.008 48.507   1518
+brunson        0.008 48.515   1519
+prater         0.008 48.523   1520
+marcum         0.008 48.531   1521
+devine         0.008 48.540   1522
+kyle           0.008 48.548   1523
+dodge          0.008 48.556   1524
+stratton       0.008 48.564   1525
+rosas          0.008 48.572   1526
+choi           0.008 48.580   1527
+tripp          0.008 48.589   1528
+ledbetter      0.008 48.597   1529
+lay            0.008 48.605   1530
+hightower      0.008 48.613   1531
+haywood        0.008 48.621   1532
+feldman        0.008 48.629   1533
+epps           0.008 48.637   1534
+yeager         0.008 48.645   1535
+posey          0.008 48.653   1536
+sylvester      0.008 48.662   1537
+scruggs        0.008 48.670   1538
+cope           0.008 48.678   1539
+stubbs         0.008 48.686   1540
+richey         0.008 48.694   1541
+overton        0.008 48.702   1542
+trotter        0.008 48.710   1543
+sprague        0.008 48.718   1544
+cordero        0.008 48.726   1545
+butcher        0.008 48.734   1546
+burger         0.008 48.742   1547
+stiles         0.008 48.750   1548
+burgos         0.008 48.758   1549
+woodson        0.008 48.766   1550
+horner         0.008 48.774   1551
+bassett        0.008 48.782   1552
+purcell        0.008 48.790   1553
+haskins        0.008 48.798   1554
+gee            0.008 48.806   1555
+akins          0.008 48.814   1556
+abraham        0.008 48.823   1557
+hoyt           0.008 48.830   1558
+ziegler        0.008 48.838   1559
+spaulding      0.008 48.846   1560
+hadley         0.008 48.854   1561
+grubbs         0.008 48.862   1562
+sumner         0.008 48.870   1563
+murillo        0.008 48.878   1564
+zavala         0.008 48.886   1565
+shook          0.008 48.894   1566
+lockwood       0.008 48.902   1567
+jarrett        0.008 48.910   1568
+driscoll       0.008 48.918   1569
+dahl           0.008 48.926   1570
+thorpe         0.008 48.934   1571
+sheridan       0.008 48.942   1572
+redmond        0.008 48.949   1573
+putnam         0.008 48.957   1574
+mcwilliams     0.008 48.965   1575
+mcrae          0.008 48.973   1576
+cornell        0.008 48.981   1577
+felton         0.008 48.989   1578
+romano         0.008 48.997   1579
+joiner         0.008 49.005   1580
+sadler         0.008 49.012   1581
+hedrick        0.008 49.020   1582
+hager          0.008 49.028   1583
+hagen          0.008 49.036   1584
+fitch          0.008 49.044   1585
+coulter        0.008 49.052   1586
+thacker        0.008 49.059   1587
+mansfield      0.008 49.067   1588
+langston       0.008 49.075   1589
+guidry         0.008 49.083   1590
+ferreira       0.008 49.091   1591
+corley         0.008 49.098   1592
+conn           0.008 49.106   1593
+rossi          0.008 49.114   1594
+lackey         0.008 49.122   1595
+cody           0.008 49.130   1596
+baez           0.008 49.137   1597
+saenz          0.008 49.145   1598
+mcnamara       0.008 49.153   1599
+darnell        0.008 49.160   1600
+michel         0.008 49.168   1601
+mcmullen       0.008 49.176   1602
+mckenna        0.008 49.184   1603
+mcdonough      0.008 49.191   1604
+link           0.008 49.199   1605
+engel          0.008 49.207   1606
+browne         0.008 49.215   1607
+roper          0.008 49.222   1608
+peacock        0.008 49.230   1609
+eubanks        0.008 49.238   1610
+drummond       0.008 49.245   1611
+stringer       0.008 49.253   1612
+pritchett      0.008 49.261   1613
+parham         0.008 49.268   1614
+mims           0.008 49.276   1615
+landers        0.008 49.284   1616
+ham            0.008 49.291   1617
+grayson        0.008 49.299   1618
+stacy          0.008 49.307   1619
+schafer        0.008 49.314   1620
+egan           0.008 49.322   1621
+timmons        0.008 49.330   1622
+ohara          0.008 49.337   1623
+keen           0.008 49.345   1624
+hamlin         0.008 49.353   1625
+finn           0.008 49.360   1626
+cortes         0.008 49.368   1627
+mcnair         0.008 49.376   1628
+louis          0.008 49.383   1629
+clifford       0.008 49.391   1630
+nadeau         0.008 49.398   1631
+moseley        0.008 49.406   1632
+michaud        0.008 49.414   1633
+rosen          0.008 49.421   1634
+oakes          0.008 49.429   1635
+kurtz          0.008 49.436   1636
+jeffers        0.008 49.444   1637
+calloway       0.008 49.452   1638
+beal           0.008 49.459   1639
+bautista       0.008 49.467   1640
+winn           0.008 49.474   1641
+suggs          0.008 49.482   1642
+stern          0.008 49.490   1643
+stapleton      0.008 49.497   1644
+lyles          0.008 49.505   1645
+laird          0.008 49.512   1646
+montano        0.008 49.520   1647
+diamond        0.008 49.527   1648
+dawkins        0.008 49.535   1649
+roland         0.008 49.543   1650
+hagan          0.008 49.550   1651
+goldman        0.008 49.558   1652
+bryson         0.008 49.565   1653
+barajas        0.008 49.573   1654
+lovett         0.008 49.580   1655
+segura         0.008 49.588   1656
+metz           0.008 49.595   1657
+lockett        0.008 49.603   1658
+langford       0.008 49.610   1659
+hinson         0.008 49.618   1660
+eastman        0.008 49.625   1661
+rock           0.008 49.633   1662
+hooks          0.008 49.640   1663
+woody          0.007 49.648   1664
+smallwood      0.007 49.655   1665
+shapiro        0.007 49.663   1666
+crowell        0.007 49.670   1667
+whalen         0.007 49.678   1668
+triplett       0.007 49.685   1669
+hooker         0.007 49.693   1670
+chatman        0.007 49.700   1671
+aldrich        0.007 49.708   1672
+cahill         0.007 49.715   1673
+youngblood     0.007 49.723   1674
+ybarra         0.007 49.730   1675
+stallings      0.007 49.738   1676
+sheets         0.007 49.745   1677
+samuel         0.007 49.752   1678
+reeder         0.007 49.760   1679
+person         0.007 49.767   1680
+pack           0.007 49.775   1681
+lacey          0.007 49.782   1682
+connelly       0.007 49.790   1683
+bateman        0.007 49.797   1684
+abernathy      0.007 49.804   1685
+winkler        0.007 49.812   1686
+wilkes         0.007 49.819   1687
+masters        0.007 49.827   1688
+hackett        0.007 49.834   1689
+granger        0.007 49.841   1690
+gillis         0.007 49.849   1691
+schmitz        0.007 49.856   1692
+sapp           0.007 49.863   1693
+napier         0.007 49.871   1694
+souza          0.007 49.878   1695
+lanier         0.007 49.886   1696
+gomes          0.007 49.893   1697
+weir           0.007 49.900   1698
+otero          0.007 49.908   1699
+ledford        0.007 49.915   1700
+burroughs      0.007 49.922   1701
+babcock        0.007 49.930   1702
+ventura        0.007 49.937   1703
+siegel         0.007 49.944   1704
+dugan          0.007 49.952   1705
+clinton        0.007 49.959   1706
+christie       0.007 49.966   1707
+bledsoe        0.007 49.974   1708
+atwood         0.007 49.981   1709
+wray           0.007 49.988   1710
+varner         0.007 49.996   1711
+spangler       0.007 50.003   1712
+otto           0.007 50.010   1713
+anaya          0.007 50.017   1714
+staley         0.007 50.025   1715
+kraft          0.007 50.032   1716
+fournier       0.007 50.039   1717
+eddy           0.007 50.047   1718
+belanger       0.007 50.054   1719
+wolff          0.007 50.061   1720
+thorne         0.007 50.069   1721
+bynum          0.007 50.076   1722
+burnette       0.007 50.083   1723
+boykin         0.007 50.090   1724
+swenson        0.007 50.098   1725
+purvis         0.007 50.105   1726
+pina           0.007 50.112   1727
+khan           0.007 50.119   1728
+duvall         0.007 50.127   1729
+darby          0.007 50.134   1730
+xiong          0.007 50.141   1731
+kauffman       0.007 50.148   1732
+ali            0.007 50.156   1733
+yu             0.007 50.163   1734
+healy          0.007 50.170   1735
+engle          0.007 50.177   1736
+corona         0.007 50.185   1737
+benoit         0.007 50.192   1738
+valle          0.007 50.199   1739
+steiner        0.007 50.206   1740
+spicer         0.007 50.214   1741
+shaver         0.007 50.221   1742
+randle         0.007 50.228   1743
+lundy          0.007 50.235   1744
+dow            0.007 50.242   1745
+chin           0.007 50.250   1746
+calvert        0.007 50.257   1747
+staton         0.007 50.264   1748
+neff           0.007 50.271   1749
+kearney        0.007 50.278   1750
+darden         0.007 50.286   1751
+oakley         0.007 50.293   1752
+medeiros       0.007 50.300   1753
+mccracken      0.007 50.307   1754
+crenshaw       0.007 50.314   1755
+block          0.007 50.322   1756
+beaver         0.007 50.329   1757
+perdue         0.007 50.336   1758
+dill           0.007 50.343   1759
+whittaker      0.007 50.350   1760
+tobin          0.007 50.357   1761
+cornelius      0.007 50.365   1762
+washburn       0.007 50.372   1763
+hogue          0.007 50.379   1764
+goodrich       0.007 50.386   1765
+easley         0.007 50.393   1766
+bravo          0.007 50.400   1767
+dennison       0.007 50.407   1768
+vera           0.007 50.414   1769
+shipley        0.007 50.422   1770
+kerns          0.007 50.429   1771
+jorgensen      0.007 50.436   1772
+crain          0.007 50.443   1773
+abel           0.007 50.450   1774
+villalobos     0.007 50.457   1775
+maurer         0.007 50.464   1776
+longoria       0.007 50.471   1777
+keene          0.007 50.478   1778
+coon           0.007 50.485   1779
+sierra         0.007 50.492   1780
+witherspoon    0.007 50.499   1781
+staples        0.007 50.506   1782
+pettit         0.007 50.513   1783
+kincaid        0.007 50.520   1784
+eason          0.007 50.528   1785
+madrid         0.007 50.535   1786
+echols         0.007 50.542   1787
+lusk           0.007 50.549   1788
+wu             0.007 50.556   1789
+stahl          0.007 50.563   1790
+currie         0.007 50.570   1791
+thayer         0.007 50.577   1792
+shultz         0.007 50.584   1793
+sherwood       0.007 50.591   1794
+mcnally        0.007 50.598   1795
+seay           0.007 50.604   1796
+north          0.007 50.611   1797
+maher          0.007 50.618   1798
+kenny          0.007 50.625   1799
+hope           0.007 50.632   1800
+gagne          0.007 50.639   1801
+barrow         0.007 50.646   1802
+nava           0.007 50.653   1803
+myles          0.007 50.660   1804
+moreland       0.007 50.667   1805
+honeycutt      0.007 50.674   1806
+hearn          0.007 50.681   1807
+diggs          0.007 50.688   1808
+caron          0.007 50.695   1809
+whitten        0.007 50.702   1810
+westbrook      0.007 50.709   1811
+stovall        0.007 50.716   1812
+ragland        0.007 50.723   1813
+queen          0.007 50.730   1814
+munson         0.007 50.736   1815
+meier          0.007 50.743   1816
+looney         0.007 50.750   1817
+kimble         0.007 50.757   1818
+jolly          0.007 50.764   1819
+hobson         0.007 50.771   1820
+london         0.007 50.778   1821
+goddard        0.007 50.785   1822
+culver         0.007 50.792   1823
+burr           0.007 50.799   1824
+presley        0.007 50.806   1825
+negron         0.007 50.813   1826
+connell        0.007 50.819   1827
+tovar          0.007 50.826   1828
+marcus         0.007 50.833   1829
+huddleston     0.007 50.840   1830
+hammer         0.007 50.847   1831
+ashby          0.007 50.854   1832
+salter         0.007 50.861   1833
+root           0.007 50.868   1834
+pendleton      0.007 50.875   1835
+oleary         0.007 50.881   1836
+nickerson      0.007 50.888   1837
+myrick         0.007 50.895   1838
+judd           0.007 50.902   1839
+jacobsen       0.007 50.909   1840
+elliot         0.007 50.916   1841
+bain           0.007 50.923   1842
+adair          0.007 50.929   1843
+starnes        0.007 50.936   1844
+sheldon        0.007 50.943   1845
+matos          0.007 50.950   1846
+light          0.007 50.957   1847
+busby          0.007 50.964   1848
+herndon        0.007 50.971   1849
+hanley         0.007 50.977   1850
+bellamy        0.007 50.984   1851
+jack           0.007 50.991   1852
+doty           0.007 50.998   1853
+bartley        0.007 51.005   1854
+yazzie         0.007 51.011   1855
+rowell         0.007 51.018   1856
+parson         0.007 51.025   1857
+gifford        0.007 51.032   1858
+cullen         0.007 51.039   1859
+christiansen   0.007 51.045   1860
+benavides      0.007 51.052   1861
+barnhart       0.007 51.059   1862
+talbot         0.007 51.066   1863
+mock           0.007 51.072   1864
+crandall       0.007 51.079   1865
+connors        0.007 51.086   1866
+bonds          0.007 51.093   1867
+whitt          0.007 51.099   1868
+gage           0.007 51.106   1869
+bergman        0.007 51.113   1870
+arredondo      0.007 51.120   1871
+addison        0.007 51.126   1872
+marion         0.007 51.133   1873
+lujan          0.007 51.140   1874
+dowdy          0.007 51.147   1875
+jernigan       0.007 51.153   1876
+huynh          0.007 51.160   1877
+bouchard       0.007 51.167   1878
+dutton         0.007 51.173   1879
+rhoades        0.007 51.180   1880
+ouellette      0.007 51.187   1881
+kiser          0.007 51.193   1882
+rubin          0.007 51.200   1883
+herrington     0.007 51.207   1884
+hare           0.007 51.213   1885
+denny          0.007 51.220   1886
+blackman       0.007 51.227   1887
+babb           0.007 51.233   1888
+allred         0.007 51.240   1889
+rudd           0.007 51.247   1890
+paulson        0.007 51.253   1891
+ogden          0.007 51.260   1892
+koenig         0.007 51.267   1893
+jacob          0.007 51.273   1894
+irving         0.007 51.280   1895
+geiger         0.007 51.287   1896
+begay          0.007 51.293   1897
+parra          0.007 51.300   1898
+champion       0.007 51.306   1899
+lassiter       0.007 51.313   1900
+hawk           0.007 51.320   1901
+esposito       0.007 51.326   1902
+cho            0.007 51.333   1903
+waldron        0.007 51.340   1904
+vernon         0.007 51.346   1905
+ransom         0.007 51.353   1906
+prather        0.007 51.359   1907
+keenan         0.007 51.366   1908
+jean           0.007 51.373   1909
+grover         0.007 51.379   1910
+chacon         0.007 51.386   1911
+vick           0.007 51.392   1912
+sands          0.007 51.399   1913
+roark          0.007 51.405   1914
+parr           0.007 51.412   1915
+mayberry       0.007 51.419   1916
+greenberg      0.007 51.425   1917
+coley          0.007 51.432   1918
+bruner         0.007 51.438   1919
+whitman        0.007 51.445   1920
+skaggs         0.007 51.451   1921
+shipman        0.007 51.458   1922
+means          0.007 51.465   1923
+leary          0.007 51.471   1924
+hutton         0.007 51.478   1925
+romo           0.007 51.484   1926
+medrano        0.007 51.491   1927
+ladd           0.007 51.497   1928
+kruse          0.007 51.504   1929
+friend         0.007 51.511   1930
+darling        0.007 51.517   1931
+askew          0.007 51.524   1932
+valentin       0.007 51.530   1933
+schulz         0.007 51.537   1934
+alfaro         0.007 51.543   1935
+tabor          0.007 51.550   1936
+mohr           0.007 51.556   1937
+gallo          0.007 51.563   1938
+bermudez       0.007 51.569   1939
+pereira        0.007 51.576   1940
+isaac          0.007 51.582   1941
+bliss          0.007 51.589   1942
+reaves         0.006 51.595   1943
+flint          0.006 51.602   1944
+comer          0.006 51.608   1945
+boston         0.006 51.615   1946
+woodall        0.006 51.621   1947
+naquin         0.006 51.628   1948
+guevara        0.006 51.634   1949
+earl           0.006 51.641   1950
+delong         0.006 51.647   1951
+carrier        0.006 51.654   1952
+pickens        0.006 51.660   1953
+brand          0.006 51.666   1954
+tilley         0.006 51.673   1955
+schaffer       0.006 51.679   1956
+read           0.006 51.686   1957
+lim            0.006 51.692   1958
+knutson        0.006 51.699   1959
+fenton         0.006 51.705   1960
+doran          0.006 51.712   1961
+chu            0.006 51.718   1962
+vogt           0.006 51.724   1963
+vann           0.006 51.731   1964
+prescott       0.006 51.737   1965
+mclain         0.006 51.744   1966
+landis         0.006 51.750   1967
+corcoran       0.006 51.757   1968
+ambrose        0.006 51.763   1969
+zapata         0.006 51.769   1970
+hyatt          0.006 51.776   1971
+hemphill       0.006 51.782   1972
+faulk          0.006 51.789   1973
+call           0.006 51.795   1974
+dove           0.006 51.801   1975
+boudreaux      0.006 51.808   1976
+aragon         0.006 51.814   1977
+whitlock       0.006 51.821   1978
+trejo          0.006 51.827   1979
+tackett        0.006 51.833   1980
+shearer        0.006 51.840   1981
+saldana        0.006 51.846   1982
+hanks          0.006 51.852   1983
+gold           0.006 51.859   1984
+driver         0.006 51.865   1985
+mckinnon       0.006 51.871   1986
+koehler        0.006 51.878   1987
+champagne      0.006 51.884   1988
+bourgeois      0.006 51.891   1989
+pool           0.006 51.897   1990
+keyes          0.006 51.903   1991
+goodson        0.006 51.910   1992
+foote          0.006 51.916   1993
+early          0.006 51.922   1994
+lunsford       0.006 51.929   1995
+goldsmith      0.006 51.935   1996
+flood          0.006 51.941   1997
+winslow        0.006 51.948   1998
+sams           0.006 51.954   1999
+reagan         0.006 51.960   2000
+mccloud        0.006 51.967   2001
+hough          0.006 51.973   2002
+esquivel       0.006 51.979   2003
+naylor         0.006 51.985   2004
+loomis         0.006 51.992   2005
+coronado       0.006 51.998   2006
+ludwig         0.006 52.004   2007
+braswell       0.006 52.011   2008
+bearden        0.006 52.017   2009
+sherrill       0.006 52.023   2010
+huang          0.006 52.029   2011
+fagan          0.006 52.036   2012
+ezell          0.006 52.042   2013
+edmondson      0.006 52.048   2014
+cyr            0.006 52.054   2015
+cronin         0.006 52.061   2016
+nunn           0.006 52.067   2017
+lemon          0.006 52.073   2018
+guillory       0.006 52.079   2019
+grier          0.006 52.086   2020
+dubose         0.006 52.092   2021
+traylor        0.006 52.098   2022
+ryder          0.006 52.104   2023
+dobbins        0.006 52.111   2024
+coyle          0.006 52.117   2025
+aponte         0.006 52.123   2026
+whitmore       0.006 52.129   2027
+smalls         0.006 52.136   2028
+rowan          0.006 52.142   2029
+malloy         0.006 52.148   2030
+cardona        0.006 52.154   2031
+braxton        0.006 52.160   2032
+borden         0.006 52.167   2033
+humphries      0.006 52.173   2034
+carrasco       0.006 52.179   2035
+ruff           0.006 52.185   2036
+metzger        0.006 52.191   2037
+huntley        0.006 52.198   2038
+hinojosa       0.006 52.204   2039
+finney         0.006 52.210   2040
+madsen         0.006 52.216   2041
+hong           0.006 52.222   2042
+hills          0.006 52.228   2043
+ernst          0.006 52.235   2044
+dozier         0.006 52.241   2045
+burkhart       0.006 52.247   2046
+bowser         0.006 52.253   2047
+peralta        0.006 52.259   2048
+daigle         0.006 52.265   2049
+whittington    0.006 52.272   2050
+sorenson       0.006 52.278   2051
+saucedo        0.006 52.284   2052
+roche          0.006 52.290   2053
+redding        0.006 52.296   2054
+loyd           0.006 52.302   2055
+fugate         0.006 52.308   2056
+avalos         0.006 52.315   2057
+waite          0.006 52.321   2058
+lind           0.006 52.327   2059
+huston         0.006 52.333   2060
+hay            0.006 52.339   2061
+benedict       0.006 52.345   2062
+hawthorne      0.006 52.351   2063
+hamby          0.006 52.357   2064
+boyles         0.006 52.363   2065
+boles          0.006 52.370   2066
+regan          0.006 52.376   2067
+faust          0.006 52.382   2068
+crook          0.006 52.388   2069
+beam           0.006 52.394   2070
+barger         0.006 52.400   2071
+hinds          0.006 52.406   2072
+gallardo       0.006 52.412   2073
+elias          0.006 52.418   2074
+willoughby     0.006 52.424   2075
+willingham     0.006 52.430   2076
+wilburn        0.006 52.436   2077
+eckert         0.006 52.442   2078
+busch          0.006 52.448   2079
+zepeda         0.006 52.455   2080
+worthington    0.006 52.461   2081
+tinsley        0.006 52.467   2082
+russ           0.006 52.473   2083
+li             0.006 52.479   2084
+hoff           0.006 52.485   2085
+hawley         0.006 52.491   2086
+carmona        0.006 52.497   2087
+varela         0.006 52.503   2088
+rector         0.006 52.509   2089
+newcomb        0.006 52.515   2090
+mallory        0.006 52.521   2091
+kinsey         0.006 52.527   2092
+dube           0.006 52.533   2093
+whatley        0.006 52.539   2094
+strange        0.006 52.545   2095
+ragsdale       0.006 52.551   2096
+ivy            0.006 52.557   2097
+bernstein      0.006 52.563   2098
+becerra        0.006 52.569   2099
+yost           0.006 52.575   2100
+mattson        0.006 52.581   2101
+ly             0.006 52.587   2102
+felder         0.006 52.593   2103
+cheek          0.006 52.599   2104
+luke           0.006 52.605   2105
+handy          0.006 52.611   2106
+grossman       0.006 52.617   2107
+gauthier       0.006 52.623   2108
+escobedo       0.006 52.629   2109
+braden         0.006 52.635   2110
+beckman        0.006 52.641   2111
+mott           0.006 52.647   2112
+hillman        0.006 52.653   2113
+gil            0.006 52.659   2114
+flaherty       0.006 52.665   2115
+dykes          0.006 52.671   2116
+doe            0.006 52.677   2117
+stockton       0.006 52.683   2118
+stearns        0.006 52.688   2119
+lofton         0.006 52.694   2120
+kitchen        0.006 52.700   2121
+coats          0.006 52.706   2122
+cavazos        0.006 52.712   2123
+beavers        0.006 52.718   2124
+barrios        0.006 52.724   2125
+tang           0.006 52.730   2126
+parish         0.006 52.736   2127
+mosher         0.006 52.742   2128
+lincoln        0.006 52.748   2129
+cardwell       0.006 52.754   2130
+coles          0.006 52.760   2131
+burnham        0.006 52.766   2132
+weller         0.006 52.772   2133
+lemons         0.006 52.777   2134
+beebe          0.006 52.783   2135
+aguilera       0.006 52.789   2136
+ring           0.006 52.795   2137
+parnell        0.006 52.801   2138
+harman         0.006 52.807   2139
+couture        0.006 52.813   2140
+alley          0.006 52.819   2141
+schumacher     0.006 52.825   2142
+redd           0.006 52.830   2143
+dobbs          0.006 52.836   2144
+blum           0.006 52.842   2145
+blalock        0.006 52.848   2146
+merchant       0.006 52.854   2147
+ennis          0.006 52.860   2148
+denson         0.006 52.866   2149
+cottrell       0.006 52.871   2150
+chester        0.006 52.877   2151
+brannon        0.006 52.883   2152
+bagley         0.006 52.889   2153
+aviles         0.006 52.895   2154
+watt           0.006 52.901   2155
+sousa          0.006 52.906   2156
+rosenthal      0.006 52.912   2157
+rooney         0.006 52.918   2158
+dietz          0.006 52.924   2159
+blank          0.006 52.930   2160
+paquette       0.006 52.936   2161
+mcclelland     0.006 52.941   2162
+duff           0.006 52.947   2163
+velasco        0.006 52.953   2164
+lentz          0.006 52.959   2165
+grubb          0.006 52.965   2166
+burrows        0.006 52.970   2167
+barbour        0.006 52.976   2168
+ulrich         0.006 52.982   2169
+shockley       0.006 52.988   2170
+rader          0.006 52.994   2171
+german         0.006 52.999   2172
+beyer          0.006 53.005   2173
+mixon          0.006 53.011   2174
+layton         0.006 53.017   2175
+altman         0.006 53.022   2176
+alonzo         0.006 53.028   2177
+weathers       0.006 53.034   2178
+titus          0.006 53.040   2179
+stoner         0.006 53.046   2180
+squires        0.006 53.051   2181
+shipp          0.006 53.057   2182
+priest         0.006 53.063   2183
+lipscomb       0.006 53.069   2184
+cutler         0.006 53.074   2185
+caballero      0.006 53.080   2186
+zimmer         0.006 53.086   2187
+willett        0.006 53.092   2188
+thurston       0.006 53.097   2189
+storey         0.006 53.103   2190
+medley         0.006 53.109   2191
+lyle           0.006 53.114   2192
+epperson       0.006 53.120   2193
+shah           0.006 53.126   2194
+mcmillian      0.006 53.132   2195
+baggett        0.006 53.137   2196
+torrez         0.006 53.143   2197
+laws           0.006 53.149   2198
+hirsch         0.006 53.155   2199
+dent           0.006 53.160   2200
+corey          0.006 53.166   2201
+poirier        0.006 53.172   2202
+peachey        0.006 53.177   2203
+jacques        0.006 53.183   2204
+farrar         0.006 53.189   2205
+creech         0.006 53.194   2206
+barth          0.006 53.200   2207
+trimble        0.006 53.206   2208
+france         0.006 53.211   2209
+dupre          0.006 53.217   2210
+albrecht       0.006 53.223   2211
+sample         0.006 53.228   2212
+lawler         0.006 53.234   2213
+crisp          0.006 53.240   2214
+conroy         0.006 53.245   2215
+chadwick       0.006 53.251   2216
+wetzel         0.006 53.257   2217
+nesbitt        0.006 53.262   2218
+murry          0.006 53.268   2219
+jameson        0.006 53.274   2220
+wilhelm        0.006 53.279   2221
+patten         0.006 53.285   2222
+minton         0.006 53.291   2223
+matson         0.006 53.296   2224
+kimbrough      0.006 53.302   2225
+iverson        0.006 53.307   2226
+guinn          0.006 53.313   2227
+gale           0.006 53.319   2228
+fortune        0.006 53.324   2229
+croft          0.006 53.330   2230
+toth           0.006 53.336   2231
+pulliam        0.006 53.341   2232
+nugent         0.006 53.347   2233
+newby          0.006 53.352   2234
+littlejohn     0.006 53.358   2235
+dias           0.006 53.364   2236
+canales        0.006 53.369   2237
+bernier        0.006 53.375   2238
+baron          0.006 53.380   2239
+barney         0.006 53.386   2240
+singletary     0.006 53.392   2241
+renteria       0.006 53.397   2242
+pruett         0.006 53.403   2243
+mchugh         0.006 53.408   2244
+mabry          0.006 53.414   2245
+landrum        0.006 53.420   2246
+brower         0.006 53.425   2247
+weldon         0.006 53.431   2248
+stoddard       0.006 53.436   2249
+ruth           0.006 53.442   2250
+cagle          0.006 53.448   2251
+stjohn         0.006 53.453   2252
+scales         0.006 53.459   2253
+kohler         0.006 53.464   2254
+kellogg        0.006 53.470   2255
+hopson         0.006 53.475   2256
+gant           0.006 53.481   2257
+tharp          0.006 53.486   2258
+gann           0.006 53.492   2259
+zeigler        0.006 53.498   2260
+pringle        0.006 53.503   2261
+hammons        0.006 53.509   2262
+fairchild      0.006 53.514   2263
+deaton         0.006 53.520   2264
+chavis         0.006 53.525   2265
+carnes         0.006 53.531   2266
+rowley         0.006 53.536   2267
+matlock        0.006 53.542   2268
+libby          0.006 53.547   2269
+kearns         0.006 53.553   2270
+irizarry       0.006 53.558   2271
+carrington     0.006 53.564   2272
+starkey        0.006 53.569   2273
+pepper         0.006 53.575   2274
+lopes          0.006 53.580   2275
+jarrell        0.006 53.586   2276
+fay            0.006 53.591   2277
+craven         0.006 53.597   2278
+beverly        0.006 53.602   2279
+baum           0.006 53.608   2280
+spain          0.005 53.613   2281
+littlefield    0.005 53.619   2282
+linn           0.005 53.624   2283
+humphreys      0.005 53.630   2284
+hook           0.005 53.635   2285
+high           0.005 53.641   2286
+etheridge      0.005 53.646   2287
+cuellar        0.005 53.652   2288
+chastain       0.005 53.657   2289
+chance         0.005 53.663   2290
+bundy          0.005 53.668   2291
+speer          0.005 53.674   2292
+skelton        0.005 53.679   2293
+quiroz         0.005 53.685   2294
+pyle           0.005 53.690   2295
+portillo       0.005 53.696   2296
+ponder         0.005 53.701   2297
+moulton        0.005 53.706   2298
+machado        0.005 53.712   2299
+liu            0.005 53.717   2300
+killian        0.005 53.723   2301
+hutson         0.005 53.728   2302
+hitchcock      0.005 53.734   2303
+ellsworth      0.005 53.739   2304
+dowling        0.005 53.745   2305
+cloud          0.005 53.750   2306
+burdick        0.005 53.756   2307
+spann          0.005 53.761   2308
+pedersen       0.005 53.767   2309
+levin          0.005 53.772   2310
+leggett        0.005 53.778   2311
+hayward        0.005 53.783   2312
+hacker         0.005 53.788   2313
+dietrich       0.005 53.794   2314
+beaulieu       0.005 53.799   2315
+barksdale      0.005 53.805   2316
+wakefield      0.005 53.810   2317
+snowden        0.005 53.816   2318
+paris          0.005 53.821   2319
+briscoe        0.005 53.827   2320
+bowie          0.005 53.832   2321
+berman         0.005 53.837   2322
+ogle           0.005 53.843   2323
+mcgregor       0.005 53.848   2324
+laughlin       0.005 53.854   2325
+helm           0.005 53.859   2326
+burden         0.005 53.864   2327
+wheatley       0.005 53.870   2328
+schreiber      0.005 53.875   2329
+pressley       0.005 53.881   2330
+parris         0.005 53.886   2331
+ng             0.005 53.892   2332
+alaniz         0.005 53.897   2333
+agee           0.005 53.902   2334
+urban          0.005 53.908   2335
+swann          0.005 53.913   2336
+snodgrass      0.005 53.919   2337
+schuster       0.005 53.924   2338
+radford        0.005 53.929   2339
+monk           0.005 53.935   2340
+mattingly      0.005 53.940   2341
+main           0.005 53.945   2342
+lamar          0.005 53.951   2343
+harp           0.005 53.956   2344
+girard         0.005 53.962   2345
+cheney         0.005 53.967   2346
+yancey         0.005 53.972   2347
+wagoner        0.005 53.978   2348
+ridley         0.005 53.983   2349
+lombardo       0.005 53.988   2350
+lau            0.005 53.994   2351
+hudgins        0.005 53.999   2352
+gaskins        0.005 54.005   2353
+duckworth      0.005 54.010   2354
+coe            0.005 54.015   2355
+coburn         0.005 54.021   2356
+willey         0.005 54.026   2357
+prado          0.005 54.031   2358
+newberry       0.005 54.037   2359
+magana         0.005 54.042   2360
+hammonds       0.005 54.048   2361
+elam           0.005 54.053   2362
+whipple        0.005 54.058   2363
+slade          0.005 54.064   2364
+serna          0.005 54.069   2365
+ojeda          0.005 54.074   2366
+liles          0.005 54.080   2367
+dorman         0.005 54.085   2368
+diehl          0.005 54.090   2369
+angel          0.005 54.096   2370
+upton          0.005 54.101   2371
+reardon        0.005 54.106   2372
+michaels       0.005 54.112   2373
+kelsey         0.005 54.117   2374
+goetz          0.005 54.122   2375
+eller          0.005 54.128   2376
+bauman         0.005 54.133   2377
+baer           0.005 54.138   2378
+augustine      0.005 54.144   2379
+layne          0.005 54.149   2380
+hummel         0.005 54.154   2381
+brenner        0.005 54.159   2382
+amaya          0.005 54.165   2383
+adamson        0.005 54.170   2384
+ornelas        0.005 54.175   2385
+dowell         0.005 54.181   2386
+cloutier       0.005 54.186   2387
+christy        0.005 54.191   2388
+castellanos    0.005 54.197   2389
+wing           0.005 54.202   2390
+wellman        0.005 54.207   2391
+saylor         0.005 54.212   2392
+orourke        0.005 54.218   2393
+moya           0.005 54.223   2394
+montalvo       0.005 54.228   2395
+kilpatrick     0.005 54.234   2396
+harley         0.005 54.239   2397
+durbin         0.005 54.244   2398
+shell          0.005 54.249   2399
+oldham         0.005 54.255   2400
+kang           0.005 54.260   2401
+garvin         0.005 54.265   2402
+foss           0.005 54.270   2403
+branham        0.005 54.276   2404
+bartholomew    0.005 54.281   2405
+templeton      0.005 54.286   2406
+maguire        0.005 54.291   2407
+holton         0.005 54.297   2408
+alonso         0.005 54.302   2409
+rider          0.005 54.307   2410
+monahan        0.005 54.312   2411
+mccormack      0.005 54.318   2412
+beaty          0.005 54.323   2413
+anders         0.005 54.328   2414
+streeter       0.005 54.333   2415
+nieto          0.005 54.338   2416
+nielson        0.005 54.344   2417
+moffett        0.005 54.349   2418
+lankford       0.005 54.354   2419
+keating        0.005 54.359   2420
+heck           0.005 54.365   2421
+gatlin         0.005 54.370   2422
+delatorre      0.005 54.375   2423
+callaway       0.005 54.380   2424
+adcock         0.005 54.385   2425
+worrell        0.005 54.391   2426
+unger          0.005 54.396   2427
+robinette      0.005 54.401   2428
+nowak          0.005 54.406   2429
+jeter          0.005 54.411   2430
+brunner        0.005 54.417   2431
+ashton         0.005 54.422   2432
+steen          0.005 54.427   2433
+parrott        0.005 54.432   2434
+overstreet     0.005 54.437   2435
+nobles         0.005 54.443   2436
+montanez       0.005 54.448   2437
+luther         0.005 54.453   2438
+clevenger      0.005 54.458   2439
+brinkley       0.005 54.463   2440
+trahan         0.005 54.468   2441
+quarles        0.005 54.474   2442
+pickering      0.005 54.479   2443
+pederson       0.005 54.484   2444
+jansen         0.005 54.489   2445
+grantham       0.005 54.494   2446
+gilchrist      0.005 54.499   2447
+crespo         0.005 54.505   2448
+aiken          0.005 54.510   2449
+schell         0.005 54.515   2450
+schaeffer      0.005 54.520   2451
+lorenz         0.005 54.525   2452
+leyva          0.005 54.530   2453
+harms          0.005 54.536   2454
+dyson          0.005 54.541   2455
+wallis         0.005 54.546   2456
+pease          0.005 54.551   2457
+leavitt        0.005 54.556   2458
+hyman          0.005 54.561   2459
+cheng          0.005 54.566   2460
+cavanaugh      0.005 54.571   2461
+batts          0.005 54.577   2462
+warden         0.005 54.582   2463
+seaman         0.005 54.587   2464
+rockwell       0.005 54.592   2465
+quezada        0.005 54.597   2466
+paxton         0.005 54.602   2467
+linder         0.005 54.607   2468
+houck          0.005 54.612   2469
+fontaine       0.005 54.618   2470
+durant         0.005 54.623   2471
+caruso         0.005 54.628   2472
+adler          0.005 54.633   2473
+pimentel       0.005 54.638   2474
+mize           0.005 54.643   2475
+lytle          0.005 54.648   2476
+donald         0.005 54.653   2477
+cleary         0.005 54.658   2478
+cason          0.005 54.664   2479
+acker          0.005 54.669   2480
+switzer        0.005 54.674   2481
+salmon         0.005 54.679   2482
+isaacs         0.005 54.684   2483
+higginbotham   0.005 54.689   2484
+han            0.005 54.694   2485
+waterman       0.005 54.699   2486
+vandyke        0.005 54.704   2487
+stamper        0.005 54.709   2488
+sisk           0.005 54.714   2489
+shuler         0.005 54.719   2490
+riddick        0.005 54.724   2491
+redman         0.005 54.730   2492
+mcmahan        0.005 54.735   2493
+levesque       0.005 54.740   2494
+hatton         0.005 54.745   2495
+bronson        0.005 54.750   2496
+bollinger      0.005 54.755   2497
+arnett         0.005 54.760   2498
+okeefe         0.005 54.765   2499
+gerber         0.005 54.770   2500
+gannon         0.005 54.775   2501
+farnsworth     0.005 54.780   2502
+baughman       0.005 54.785   2503
+silverman      0.005 54.790   2504
+satterfield    0.005 54.795   2505
+royal          0.005 54.800   2506
+mccrary        0.005 54.805   2507
+kowalski       0.005 54.810   2508
+joy            0.005 54.816   2509
+grigsby        0.005 54.821   2510
+greco          0.005 54.826   2511
+cabral         0.005 54.831   2512
+trout          0.005 54.836   2513
+rinehart       0.005 54.841   2514
+mahon          0.005 54.846   2515
+linton         0.005 54.851   2516
+gooden         0.005 54.856   2517
+curley         0.005 54.861   2518
+baugh          0.005 54.866   2519
+wyman          0.005 54.871   2520
+weiner         0.005 54.876   2521
+schwab         0.005 54.881   2522
+schuler        0.005 54.886   2523
+morrissey      0.005 54.891   2524
+mahan          0.005 54.896   2525
+coy            0.005 54.901   2526
+bunn           0.005 54.906   2527
+andrew         0.005 54.911   2528
+thrasher       0.005 54.916   2529
+spear          0.005 54.921   2530
+waggoner       0.005 54.926   2531
+shelley        0.005 54.931   2532
+robert         0.005 54.936   2533
+qualls         0.005 54.941   2534
+purdy          0.005 54.946   2535
+mcwhorter      0.005 54.951   2536
+mauldin        0.005 54.956   2537
+mark           0.005 54.961   2538
+jordon         0.005 54.966   2539
+gilman         0.005 54.971   2540
+perryman       0.005 54.976   2541
+newsom         0.005 54.981   2542
+menard         0.005 54.985   2543
+martino        0.005 54.990   2544
+graf           0.005 54.995   2545
+billingsley    0.005 55.000   2546
+artis          0.005 55.005   2547
+simpkins       0.005 55.010   2548
+salisbury      0.005 55.015   2549
+quintanilla    0.005 55.020   2550
+gilliland      0.005 55.025   2551
+fraley         0.005 55.030   2552
+foust          0.005 55.035   2553
+crouse         0.005 55.040   2554
+scarborough    0.005 55.045   2555
+ngo            0.005 55.050   2556
+grissom        0.005 55.055   2557
+fultz          0.005 55.060   2558
+rico           0.005 55.065   2559
+marlow         0.005 55.069   2560
+markham        0.005 55.074   2561
+madrigal       0.005 55.079   2562
+lawton         0.005 55.084   2563
+barfield       0.005 55.089   2564
+whiting        0.005 55.094   2565
+varney         0.005 55.099   2566
+schwarz        0.005 55.104   2567
+huey           0.005 55.109   2568
+gooch          0.005 55.114   2569
+arce           0.005 55.119   2570
+wheat          0.005 55.123   2571
+truong         0.005 55.128   2572
+poulin         0.005 55.133   2573
+mackenzie      0.005 55.138   2574
+leone          0.005 55.143   2575
+hurtado        0.005 55.148   2576
+selby          0.005 55.153   2577
+gaither        0.005 55.158   2578
+fortner        0.005 55.162   2579
+culpepper      0.005 55.167   2580
+coughlin       0.005 55.172   2581
+brinson        0.005 55.177   2582
+boudreau       0.005 55.182   2583
+barkley        0.005 55.187   2584
+bales          0.005 55.192   2585
+stepp          0.005 55.196   2586
+holm           0.005 55.201   2587
+tan            0.005 55.206   2588
+schilling      0.005 55.211   2589
+morrell        0.005 55.216   2590
+kahn           0.005 55.221   2591
+heaton         0.005 55.225   2592
+gamez          0.005 55.230   2593
+douglass       0.005 55.235   2594
+causey         0.005 55.240   2595
+brothers       0.005 55.245   2596
+turpin         0.005 55.250   2597
+shanks         0.005 55.254   2598
+schrader       0.005 55.259   2599
+meek           0.005 55.264   2600
+isom           0.005 55.269   2601
+hardison       0.005 55.274   2602
+carranza       0.005 55.278   2603
+yanez          0.005 55.283   2604
+way            0.005 55.288   2605
+scroggins      0.005 55.293   2606
+schofield      0.005 55.298   2607
+runyon         0.005 55.302   2608
+ratcliff       0.005 55.307   2609
+murrell        0.005 55.312   2610
+moeller        0.005 55.317   2611
+irby           0.005 55.322   2612
+currier        0.005 55.326   2613
+butterfield    0.005 55.331   2614
+yee            0.005 55.336   2615
+ralston        0.005 55.341   2616
+pullen         0.005 55.346   2617
+pinson         0.005 55.350   2618
+estep          0.005 55.355   2619
+east           0.005 55.360   2620
+carbone        0.005 55.365   2621
+lance          0.005 55.370   2622
+hawks          0.005 55.374   2623
+ellington      0.005 55.379   2624
+casillas       0.005 55.384   2625
+spurlock       0.005 55.389   2626
+sikes          0.005 55.393   2627
+motley         0.005 55.398   2628
+mccartney      0.005 55.403   2629
+kruger         0.005 55.408   2630
+isbell         0.005 55.412   2631
+houle          0.005 55.417   2632
+francisco      0.005 55.422   2633
+burk           0.005 55.427   2634
+bone           0.005 55.431   2635
+tomlin         0.005 55.436   2636
+shelby         0.005 55.441   2637
+quigley        0.005 55.446   2638
+neumann        0.005 55.450   2639
+lovelace       0.005 55.455   2640
+fennell        0.005 55.460   2641
+colby          0.005 55.465   2642
+cheatham       0.005 55.469   2643
+bustamante     0.005 55.474   2644
+skidmore       0.005 55.479   2645
+hidalgo        0.005 55.483   2646
+forman         0.005 55.488   2647
+culp           0.005 55.493   2648
+bowens         0.005 55.498   2649
+betancourt     0.005 55.502   2650
+aquino         0.005 55.507   2651
+robb           0.005 55.512   2652
+rea            0.005 55.516   2653
+milner         0.005 55.521   2654
+martel         0.005 55.526   2655
+gresham        0.005 55.531   2656
+wiles          0.005 55.535   2657
+ricketts       0.005 55.540   2658
+gavin          0.005 55.545   2659
+dowd           0.005 55.549   2660
+collazo        0.005 55.554   2661
+bostic         0.005 55.559   2662
+blakely        0.005 55.563   2663
+sherrod        0.005 55.568   2664
+power          0.005 55.573   2665
+kenyon         0.005 55.577   2666
+gandy          0.005 55.582   2667
+ebert          0.005 55.587   2668
+deloach        0.005 55.591   2669
+cary           0.005 55.596   2670
+bull           0.005 55.601   2671
+allard         0.005 55.606   2672
+sauer          0.005 55.610   2673
+robins         0.005 55.615   2674
+olivares       0.005 55.619   2675
+gillette       0.005 55.624   2676
+chestnut       0.005 55.629   2677
+bourque        0.005 55.633   2678
+paine          0.005 55.638   2679
+lyman          0.005 55.643   2680
+hite           0.005 55.647   2681
+hauser         0.005 55.652   2682
+devore         0.005 55.657   2683
+crawley        0.005 55.661   2684
+chapa          0.005 55.666   2685
+vu             0.005 55.671   2686
+tobias         0.005 55.675   2687
+talbert        0.005 55.680   2688
+poindexter     0.005 55.684   2689
+millard        0.005 55.689   2690
+meador         0.005 55.694   2691
+mcduffie       0.005 55.698   2692
+mattox         0.005 55.703   2693
+kraus          0.005 55.708   2694
+harkins        0.005 55.712   2695
+choate         0.005 55.717   2696
+bess           0.005 55.721   2697
+wren           0.005 55.726   2698
+sledge         0.005 55.731   2699
+sanborn        0.005 55.735   2700
+outlaw         0.005 55.740   2701
+kinder         0.005 55.745   2702
+geary          0.005 55.749   2703
+cornwell       0.005 55.754   2704
+barclay        0.005 55.758   2705
+adam           0.005 55.763   2706
+abney          0.005 55.768   2707
+seward         0.005 55.772   2708
+rhoads         0.005 55.777   2709
+howland        0.005 55.781   2710
+fortier        0.005 55.786   2711
+easter         0.005 55.791   2712
+benner         0.005 55.795   2713
+vines          0.005 55.800   2714
+tubbs          0.005 55.804   2715
+troutman       0.005 55.809   2716
+rapp           0.005 55.813   2717
+noe            0.005 55.818   2718
+mccurdy        0.005 55.823   2719
+harder         0.005 55.827   2720
+deluca         0.005 55.832   2721
+westmoreland   0.005 55.836   2722
+south          0.005 55.841   2723
+havens         0.005 55.845   2724
+guajardo       0.005 55.850   2725
+ely            0.005 55.855   2726
+clary          0.005 55.859   2727
+seal           0.005 55.864   2728
+meehan         0.005 55.868   2729
+herzog         0.005 55.873   2730
+guillen        0.005 55.877   2731
+ashcraft       0.005 55.882   2732
+waugh          0.005 55.886   2733
+renner         0.005 55.891   2734
+milam          0.005 55.895   2735
+jung           0.005 55.900   2736
+elrod          0.005 55.905   2737
+churchill      0.005 55.909   2738
+buford         0.005 55.914   2739
+breaux         0.005 55.918   2740
+bolin          0.005 55.923   2741
+asher          0.005 55.927   2742
+windham        0.005 55.932   2743
+tirado         0.005 55.936   2744
+pemberton      0.005 55.941   2745
+nolen          0.005 55.945   2746
+noland         0.005 55.950   2747
+knott          0.005 55.954   2748
+emmons         0.005 55.959   2749
+cornish        0.005 55.963   2750
+christenson    0.005 55.968   2751
+brownlee       0.005 55.972   2752
+barbee         0.005 55.977   2753
+waldrop        0.004 55.981   2754
+pitt           0.004 55.986   2755
+olvera         0.004 55.990   2756
+lombardi       0.004 55.995   2757
+gruber         0.004 55.999   2758
+gaffney        0.004 56.004   2759
+eggleston      0.004 56.008   2760
+banda          0.004 56.013   2761
+archuleta      0.004 56.017   2762
+still          0.004 56.022   2763
+slone          0.004 56.026   2764
+prewitt        0.004 56.031   2765
+pfeiffer       0.004 56.035   2766
+nettles        0.004 56.040   2767
+mena           0.004 56.044   2768
+mcadams        0.004 56.049   2769
+henning        0.004 56.053   2770
+gardiner       0.004 56.058   2771
+cromwell       0.004 56.062   2772
+chisholm       0.004 56.067   2773
+burleson       0.004 56.071   2774
+box            0.004 56.076   2775
+vest           0.004 56.080   2776
+oglesby        0.004 56.085   2777
+mccarter       0.004 56.089   2778
+malcolm        0.004 56.093   2779
+lumpkin        0.004 56.098   2780
+larue          0.004 56.102   2781
+grey           0.004 56.107   2782
+wofford        0.004 56.111   2783
+vanhorn        0.004 56.116   2784
+thorn          0.004 56.120   2785
+teel           0.004 56.125   2786
+swafford       0.004 56.129   2787
+stclair        0.004 56.134   2788
+stanfield      0.004 56.138   2789
+ocampo         0.004 56.142   2790
+herrmann       0.004 56.147   2791
+hannon         0.004 56.151   2792
+arsenault      0.004 56.156   2793
+roush          0.004 56.160   2794
+mcalister      0.004 56.165   2795
+hiatt          0.004 56.169   2796
+gunderson      0.004 56.174   2797
+forsythe       0.004 56.178   2798
+duggan         0.004 56.182   2799
+delvalle       0.004 56.187   2800
+cintron        0.004 56.191   2801
+wilks          0.004 56.196   2802
+weinstein      0.004 56.200   2803
+uribe          0.004 56.205   2804
+rizzo          0.004 56.209   2805
+noyes          0.004 56.213   2806
+mclendon       0.004 56.218   2807
+gurley         0.004 56.222   2808
+bethea         0.004 56.227   2809
+winstead       0.004 56.231   2810
+maples         0.004 56.235   2811
+harry          0.004 56.240   2812
+guyton         0.004 56.244   2813
+giordano       0.004 56.249   2814
+alderman       0.004 56.253   2815
+valdes         0.004 56.258   2816
+polanco        0.004 56.262   2817
+pappas         0.004 56.266   2818
+lively         0.004 56.271   2819
+grogan         0.004 56.275   2820
+griffiths      0.004 56.279   2821
+bobo           0.004 56.284   2822
+arevalo        0.004 56.288   2823
+whitson        0.004 56.293   2824
+sowell         0.004 56.297   2825
+rendon         0.004 56.301   2826
+matthew        0.004 56.306   2827
+julian         0.004 56.310   2828
+fernandes      0.004 56.314   2829
+farrow         0.004 56.319   2830
+edmond         0.004 56.323   2831
+benavidez      0.004 56.328   2832
+ayres          0.004 56.332   2833
+alicea         0.004 56.336   2834
+stump          0.004 56.341   2835
+smalley        0.004 56.345   2836
+seitz          0.004 56.349   2837
+schulte        0.004 56.354   2838
+gilley         0.004 56.358   2839
+gallant        0.004 56.362   2840
+dewey          0.004 56.367   2841
+casper         0.004 56.371   2842
+canfield       0.004 56.376   2843
+wolford        0.004 56.380   2844
+omalley        0.004 56.384   2845
+mcnutt         0.004 56.389   2846
+mcnulty        0.004 56.393   2847
+mcgovern       0.004 56.397   2848
+hardman        0.004 56.402   2849
+harbin         0.004 56.406   2850
+cowart         0.004 56.410   2851
+chavarria      0.004 56.415   2852
+brink          0.004 56.419   2853
+beckett        0.004 56.423   2854
+bagwell        0.004 56.428   2855
+armstead       0.004 56.432   2856
+anglin         0.004 56.436   2857
+abreu          0.004 56.441   2858
+reynoso        0.004 56.445   2859
+krebs          0.004 56.449   2860
+jett           0.004 56.454   2861
+hoffmann       0.004 56.458   2862
+greenfield     0.004 56.462   2863
+forte          0.004 56.467   2864
+burney         0.004 56.471   2865
+broome         0.004 56.475   2866
+sisson         0.004 56.480   2867
+parent         0.004 56.484   2868
+jude           0.004 56.488   2869
+younger        0.004 56.492   2870
+trammell       0.004 56.497   2871
+partridge      0.004 56.501   2872
+marvin         0.004 56.505   2873
+mace           0.004 56.510   2874
+lomax          0.004 56.514   2875
+lemieux        0.004 56.518   2876
+gossett        0.004 56.522   2877
+frantz         0.004 56.527   2878
+fogle          0.004 56.531   2879
+cooney         0.004 56.535   2880
+broughton      0.004 56.540   2881
+pence          0.004 56.544   2882
+paulsen        0.004 56.548   2883
+neil           0.004 56.552   2884
+muncy          0.004 56.557   2885
+mcarthur       0.004 56.561   2886
+hollins        0.004 56.565   2887
+edward         0.004 56.570   2888
+beauchamp      0.004 56.574   2889
+withers        0.004 56.578   2890
+osorio         0.004 56.582   2891
+mulligan       0.004 56.587   2892
+hoyle          0.004 56.591   2893
+foy            0.004 56.595   2894
+dockery        0.004 56.599   2895
+cockrell       0.004 56.604   2896
+begley         0.004 56.608   2897
+amador         0.004 56.612   2898
+roby           0.004 56.616   2899
+rains          0.004 56.621   2900
+lindquist      0.004 56.625   2901
+gentile        0.004 56.629   2902
+everhart       0.004 56.633   2903
+bohannon       0.004 56.638   2904
+wylie          0.004 56.642   2905
+thao           0.004 56.646   2906
+sommers        0.004 56.650   2907
+purnell        0.004 56.655   2908
+palma          0.004 56.659   2909
+fortin         0.004 56.663   2910
+dunning        0.004 56.667   2911
+breeden        0.004 56.671   2912
+vail           0.004 56.676   2913
+phelan         0.004 56.680   2914
+phan           0.004 56.684   2915
+marx           0.004 56.688   2916
+cosby          0.004 56.693   2917
+colburn        0.004 56.697   2918
+chong          0.004 56.701   2919
+boling         0.004 56.705   2920
+biddle         0.004 56.709   2921
+ledesma        0.004 56.714   2922
+gaddis         0.004 56.718   2923
+denney         0.004 56.722   2924
+chow           0.004 56.726   2925
+bueno          0.004 56.730   2926
+berrios        0.004 56.735   2927
+wicker         0.004 56.739   2928
+tolliver       0.004 56.743   2929
+thibodeaux     0.004 56.747   2930
+nagle          0.004 56.751   2931
+lavoie         0.004 56.755   2932
+fisk           0.004 56.760   2933
+do             0.004 56.764   2934
+crist          0.004 56.768   2935
+barbosa        0.004 56.772   2936
+reedy          0.004 56.776   2937
+march          0.004 56.781   2938
+locklear       0.004 56.785   2939
+kolb           0.004 56.789   2940
+himes          0.004 56.793   2941
+behrens        0.004 56.797   2942
+beckwith       0.004 56.801   2943
+beckham        0.004 56.806   2944
+weems          0.004 56.810   2945
+wahl           0.004 56.814   2946
+shorter        0.004 56.818   2947
+shackelford    0.004 56.822   2948
+rees           0.004 56.826   2949
+muse           0.004 56.830   2950
+free           0.004 56.835   2951
+cerda          0.004 56.839   2952
+valadez        0.004 56.843   2953
+thibodeau      0.004 56.847   2954
+saavedra       0.004 56.851   2955
+ridgeway       0.004 56.855   2956
+reiter         0.004 56.859   2957
+mchenry        0.004 56.864   2958
+majors         0.004 56.868   2959
+lachance       0.004 56.872   2960
+keaton         0.004 56.876   2961
+israel         0.004 56.880   2962
+ferrara        0.004 56.884   2963
+falcon         0.004 56.888   2964
+clemens        0.004 56.892   2965
+blocker        0.004 56.897   2966
+applegate      0.004 56.901   2967
+paz            0.004 56.905   2968
+needham        0.004 56.909   2969
+mojica         0.004 56.913   2970
+kuykendall     0.004 56.917   2971
+hamel          0.004 56.921   2972
+escamilla      0.004 56.925   2973
+doughty        0.004 56.930   2974
+burchett       0.004 56.934   2975
+ainsworth      0.004 56.938   2976
+wilbur         0.004 56.942   2977
+vidal          0.004 56.946   2978
+upchurch       0.004 56.950   2979
+thigpen        0.004 56.954   2980
+strauss        0.004 56.958   2981
+spruill        0.004 56.962   2982
+sowers         0.004 56.967   2983
+riggins        0.004 56.971   2984
+ricker         0.004 56.975   2985
+mccombs        0.004 56.979   2986
+harlow         0.004 56.983   2987
+garnett        0.004 56.987   2988
+buffington     0.004 56.991   2989
+yi             0.004 56.995   2990
+sotelo         0.004 56.999   2991
+olivas         0.004 57.003   2992
+negrete        0.004 57.007   2993
+morey          0.004 57.012   2994
+macon          0.004 57.016   2995
+logsdon        0.004 57.020   2996
+lapointe       0.004 57.024   2997
+florence       0.004 57.028   2998
+cathey         0.004 57.032   2999
+bigelow        0.004 57.036   3000
+bello          0.004 57.040   3001
+westfall       0.004 57.044   3002
+stubblefield   0.004 57.048   3003
+peak           0.004 57.052   3004
+lindley        0.004 57.056   3005
+jeffrey        0.004 57.060   3006
+hein           0.004 57.065   3007
+hawes          0.004 57.069   3008
+farrington     0.004 57.073   3009
+edge           0.004 57.077   3010
+breen          0.004 57.081   3011
+birch          0.004 57.085   3012
+wilde          0.004 57.089   3013
+steed          0.004 57.093   3014
+sepulveda      0.004 57.097   3015
+reinhardt      0.004 57.101   3016
+proffitt       0.004 57.105   3017
+minter         0.004 57.109   3018
+messina        0.004 57.113   3019
+mcnabb         0.004 57.117   3020
+maier          0.004 57.121   3021
+keeler         0.004 57.125   3022
+gamboa         0.004 57.130   3023
+donohue        0.004 57.134   3024
+dexter         0.004 57.138   3025
+basham         0.004 57.142   3026
+shinn          0.004 57.146   3027
+orlando        0.004 57.150   3028
+crooks         0.004 57.154   3029
+cota           0.004 57.158   3030
+borders        0.004 57.162   3031
+bills          0.004 57.166   3032
+bachman        0.004 57.170   3033
+tisdale        0.004 57.174   3034
+tavares        0.004 57.178   3035
+schmid         0.004 57.182   3036
+pickard        0.004 57.186   3037
+jasper         0.004 57.190   3038
+gulley         0.004 57.194   3039
+fonseca        0.004 57.198   3040
+delossantos    0.004 57.202   3041
+condon         0.004 57.206   3042
+clancy         0.004 57.210   3043
+batista        0.004 57.214   3044
+wicks          0.004 57.218   3045
+wadsworth      0.004 57.222   3046
+new            0.004 57.226   3047
+martell        0.004 57.230   3048
+lo             0.004 57.234   3049
+littleton      0.004 57.238   3050
+ison           0.004 57.242   3051
+haag           0.004 57.246   3052
+folsom         0.004 57.250   3053
+brumfield      0.004 57.254   3054
+broyles        0.004 57.258   3055
+brito          0.004 57.262   3056
+mireles        0.004 57.266   3057
+mcdonnell      0.004 57.270   3058
+leclair        0.004 57.274   3059
+hamblin        0.004 57.278   3060
+gough          0.004 57.282   3061
+fanning        0.004 57.286   3062
+binder         0.004 57.290   3063
+winfield       0.004 57.294   3064
+whitworth      0.004 57.298   3065
+soriano        0.004 57.302   3066
+palumbo        0.004 57.306   3067
+newkirk        0.004 57.310   3068
+mangum         0.004 57.314   3069
+hutcherson     0.004 57.318   3070
+comstock       0.004 57.322   3071
+cecil          0.004 57.326   3072
+carlin         0.004 57.330   3073
+beall          0.004 57.334   3074
+bair           0.004 57.338   3075
+wendt          0.004 57.342   3076
+watters        0.004 57.346   3077
+walling        0.004 57.350   3078
+putman         0.004 57.354   3079
+otoole         0.004 57.358   3080
+oliva          0.004 57.362   3081
+morley         0.004 57.366   3082
+mares          0.004 57.370   3083
+lemus          0.004 57.373   3084
+keener         0.004 57.377   3085
+jeffery        0.004 57.381   3086
+hundley        0.004 57.385   3087
+dial           0.004 57.389   3088
+damico         0.004 57.393   3089
+billups        0.004 57.397   3090
+strother       0.004 57.401   3091
+mcfarlane      0.004 57.405   3092
+lamm           0.004 57.409   3093
+eaves          0.004 57.413   3094
+crutcher       0.004 57.417   3095
+caraballo      0.004 57.421   3096
+canty          0.004 57.425   3097
+atwell         0.004 57.429   3098
+taft           0.004 57.433   3099
+siler          0.004 57.437   3100
+rust           0.004 57.441   3101
+rawls          0.004 57.444   3102
+rawlings       0.004 57.448   3103
+prieto         0.004 57.452   3104
+niles          0.004 57.456   3105
+mcneely        0.004 57.460   3106
+mcafee         0.004 57.464   3107
+hulsey         0.004 57.468   3108
+harlan         0.004 57.472   3109
+hackney        0.004 57.476   3110
+galvez         0.004 57.480   3111
+escalante      0.004 57.484   3112
+delagarza      0.004 57.488   3113
+crider         0.004 57.492   3114
+charlton       0.004 57.496   3115
+bandy          0.004 57.499   3116
+wilbanks       0.004 57.503   3117
+stowe          0.004 57.507   3118
+steinberg      0.004 57.511   3119
+samson         0.004 57.515   3120
+renfro         0.004 57.519   3121
+masterson      0.004 57.523   3122
+massie         0.004 57.527   3123
+lanham         0.004 57.531   3124
+haskell        0.004 57.535   3125
+hamrick        0.004 57.539   3126
+fort           0.004 57.542   3127
+dehart         0.004 57.546   3128
+card           0.004 57.550   3129
+burdette       0.004 57.554   3130
+branson        0.004 57.558   3131
+bourne         0.004 57.562   3132
+babin          0.004 57.566   3133
+aleman         0.004 57.570   3134
+worthy         0.004 57.574   3135
+tibbs          0.004 57.578   3136
+sweat          0.004 57.582   3137
+smoot          0.004 57.585   3138
+slack          0.004 57.589   3139
+paradis        0.004 57.593   3140
+packard        0.004 57.597   3141
+mull           0.004 57.601   3142
+luce           0.004 57.605   3143
+houghton       0.004 57.609   3144
+gantt          0.004 57.613   3145
+furman         0.004 57.617   3146
+danner         0.004 57.620   3147
+christianson   0.004 57.624   3148
+burge          0.004 57.628   3149
+broderick      0.004 57.632   3150
+ashford        0.004 57.636   3151
+arndt          0.004 57.640   3152
+almeida        0.004 57.644   3153
+stallworth     0.004 57.648   3154
+shade          0.004 57.652   3155
+searcy         0.004 57.656   3156
+sager          0.004 57.659   3157
+noonan         0.004 57.663   3158
+mclemore       0.004 57.667   3159
+mcintire       0.004 57.671   3160
+maxey          0.004 57.675   3161
+lavigne        0.004 57.679   3162
+jobe           0.004 57.683   3163
+ireland        0.004 57.687   3164
+ferrer         0.004 57.690   3165
+falk           0.004 57.694   3166
+edgar          0.004 57.698   3167
+coffin         0.004 57.702   3168
+byrnes         0.004 57.706   3169
+aranda         0.004 57.710   3170
+apodaca        0.004 57.714   3171
+stamps         0.004 57.718   3172
+rounds         0.004 57.721   3173
+peek           0.004 57.725   3174
+olmstead       0.004 57.729   3175
+lewandowski    0.004 57.733   3176
+kaminski       0.004 57.737   3177
+her            0.004 57.741   3178
+dunaway        0.004 57.745   3179
+bruns          0.004 57.748   3180
+brackett       0.004 57.752   3181
+amato          0.004 57.756   3182
+reich          0.004 57.760   3183
+mcclung        0.004 57.764   3184
+lacroix        0.004 57.768   3185
+koontz         0.004 57.772   3186
+herrick        0.004 57.775   3187
+hardesty       0.004 57.779   3188
+flanders       0.004 57.783   3189
+cousins        0.004 57.787   3190
+close          0.004 57.791   3191
+cato           0.004 57.795   3192
+cade           0.004 57.799   3193
+vickery        0.004 57.802   3194
+shank          0.004 57.806   3195
+nagel          0.004 57.810   3196
+dupuis         0.004 57.814   3197
+croteau        0.004 57.818   3198
+cotter         0.004 57.821   3199
+cable          0.004 57.825   3200
+stuckey        0.004 57.829   3201
+stine          0.004 57.833   3202
+porterfield    0.004 57.837   3203
+pauley         0.004 57.841   3204
+nye            0.004 57.844   3205
+moffitt        0.004 57.848   3206
+lu             0.004 57.852   3207
+knudsen        0.004 57.856   3208
+hardwick       0.004 57.860   3209
+goforth        0.004 57.863   3210
+dupont         0.004 57.867   3211
+blunt          0.004 57.871   3212
+barrows        0.004 57.875   3213
+barnhill       0.004 57.879   3214
+shull          0.004 57.883   3215
+rash           0.004 57.886   3216
+ralph          0.004 57.890   3217
+penny          0.004 57.894   3218
+lorenzo        0.004 57.898   3219
+loftis         0.004 57.902   3220
+lemay          0.004 57.905   3221
+kitchens       0.004 57.909   3222
+horvath        0.004 57.913   3223
+grenier        0.004 57.917   3224
+fuchs          0.004 57.921   3225
+fairbanks      0.004 57.924   3226
+culbertson     0.004 57.928   3227
+calkins        0.004 57.932   3228
+burnside       0.004 57.936   3229
+beattie        0.004 57.940   3230
+ashworth       0.004 57.943   3231
+albertson      0.004 57.947   3232
+wertz          0.004 57.951   3233
+vo             0.004 57.955   3234
+vaught         0.004 57.958   3235
+vallejo        0.004 57.962   3236
+tyree          0.004 57.966   3237
+turk           0.004 57.970   3238
+tuck           0.004 57.974   3239
+tijerina       0.004 57.977   3240
+sage           0.004 57.981   3241
+picard         0.004 57.985   3242
+peterman       0.004 57.989   3243
+otis           0.004 57.993   3244
+marroquin      0.004 57.996   3245
+marr           0.004 58.000   3246
+lantz          0.004 58.004   3247
+hoang          0.004 58.008   3248
+demarco        0.004 58.011   3249
+daily          0.004 58.015   3250
+cone           0.004 58.019   3251
+berube         0.004 58.023   3252
+barnette       0.004 58.027   3253
+wharton        0.004 58.030   3254
+stinnett       0.004 58.034   3255
+slocum         0.004 58.038   3256
+scanlon        0.004 58.042   3257
+sander         0.004 58.045   3258
+pinto          0.004 58.049   3259
+mancuso        0.004 58.053   3260
+lima           0.004 58.057   3261
+judge          0.004 58.060   3262
+headley        0.004 58.064   3263
+epstein        0.004 58.068   3264
+counts         0.004 58.072   3265
+clarkson       0.004 58.076   3266
+carnahan       0.004 58.079   3267
+brice          0.004 58.083   3268
+boren          0.004 58.087   3269
+arteaga        0.004 58.091   3270
+adame          0.004 58.094   3271
+zook           0.004 58.098   3272
+whittle        0.004 58.102   3273
+whitehurst     0.004 58.106   3274
+wenzel         0.004 58.109   3275
+saxton         0.004 58.113   3276
+rhea           0.004 58.117   3277
+reddick        0.004 58.121   3278
+puente         0.004 58.124   3279
+hazel          0.004 58.128   3280
+handley        0.004 58.132   3281
+haggerty       0.004 58.136   3282
+earley         0.004 58.139   3283
+devlin         0.004 58.143   3284
+dallas         0.004 58.147   3285
+chaffin        0.004 58.151   3286
+cady           0.004 58.154   3287
+ahmed          0.004 58.158   3288
+acuna          0.004 58.162   3289
+solano         0.004 58.166   3290
+sigler         0.004 58.169   3291
+pollack        0.004 58.173   3292
+pendergrass    0.004 58.177   3293
+ostrander      0.004 58.181   3294
+janes          0.004 58.184   3295
+francois       0.004 58.188   3296
+fine           0.004 58.192   3297
+crutchfield    0.004 58.196   3298
+cordell        0.004 58.199   3299
+chamberlin     0.004 58.203   3300
+brubaker       0.004 58.207   3301
+baptiste       0.004 58.211   3302
+willson        0.004 58.214   3303
+reis           0.004 58.218   3304
+neeley         0.004 58.222   3305
+mullin         0.004 58.225   3306
+mercier        0.004 58.229   3307
+lira           0.004 58.233   3308
+layman         0.004 58.237   3309
+keeling        0.004 58.240   3310
+higdon         0.004 58.244   3311
+guest          0.004 58.248   3312
+forrester      0.004 58.251   3313
+espinal        0.004 58.255   3314
+dion           0.004 58.259   3315
+chapin         0.004 58.263   3316
+carl           0.004 58.266   3317
+warfield       0.004 58.270   3318
+toledo         0.004 58.274   3319
+pulido         0.004 58.277   3320
+peebles        0.004 58.281   3321
+nagy           0.004 58.285   3322
+montague       0.004 58.289   3323
+mello          0.004 58.292   3324
+lear           0.004 58.296   3325
+jaeger         0.004 58.300   3326
+hogg           0.004 58.303   3327
+graff          0.004 58.307   3328
+furr           0.004 58.311   3329
+derrick        0.004 58.314   3330
+cave           0.004 58.318   3331
+canada         0.004 58.322   3332
+soliz          0.004 58.326   3333
+poore          0.004 58.329   3334
+mendenhall     0.004 58.333   3335
+mclaurin       0.004 58.337   3336
+maestas        0.004 58.340   3337
+low            0.004 58.344   3338
+gable          0.004 58.348   3339
+belt           0.004 58.351   3340
+barraza        0.004 58.355   3341
+tillery        0.004 58.359   3342
+snead          0.004 58.362   3343
+pond           0.004 58.366   3344
+neill          0.004 58.370   3345
+mcculloch      0.004 58.373   3346
+mccorkle       0.004 58.377   3347
+lightfoot      0.004 58.381   3348
+hutchings      0.004 58.384   3349
+holloman       0.004 58.388   3350
+harness        0.004 58.392   3351
+dorn           0.004 58.395   3352
+council        0.004 58.399   3353
+bock           0.004 58.403   3354
+zielinski      0.004 58.406   3355
+turley         0.004 58.410   3356
+treadwell      0.004 58.414   3357
+stpierre       0.004 58.417   3358
+starling       0.004 58.421   3359
+somers         0.004 58.425   3360
+oswald         0.004 58.428   3361
+merrick        0.004 58.432   3362
+marquis        0.004 58.436   3363
+ivory          0.004 58.439   3364
+easterling     0.004 58.443   3365
+bivens         0.004 58.447   3366
+truitt         0.004 58.450   3367
+poston         0.004 58.454   3368
+parry          0.004 58.458   3369
+ontiveros      0.004 58.461   3370
+olivarez       0.004 58.465   3371
+neville        0.004 58.469   3372
+moreau         0.004 58.472   3373
+medlin         0.004 58.476   3374
+ma             0.004 58.479   3375
+lenz           0.004 58.483   3376
+knowlton       0.004 58.487   3377
+fairley        0.004 58.490   3378
+cobbs          0.004 58.494   3379
+chisolm        0.004 58.498   3380
+bannister      0.004 58.501   3381
+woodworth      0.004 58.505   3382
+toler          0.004 58.509   3383
+ocasio         0.004 58.512   3384
+noriega        0.004 58.516   3385
+neuman         0.004 58.519   3386
+moye           0.004 58.523   3387
+milburn        0.004 58.527   3388
+mcclanahan     0.004 58.530   3389
+lilley         0.004 58.534   3390
+hanes          0.004 58.538   3391
+flannery       0.004 58.541   3392
+dellinger      0.004 58.545   3393
+danielson      0.004 58.548   3394
+conti          0.004 58.552   3395
+blodgett       0.004 58.556   3396
+beers          0.004 58.559   3397
+weatherford    0.004 58.563   3398
+strain         0.004 58.567   3399
+karr           0.004 58.570   3400
+hitt           0.004 58.574   3401
+denham         0.004 58.577   3402
+custer         0.004 58.581   3403
+coble          0.004 58.585   3404
+clough         0.004 58.588   3405
+casteel        0.004 58.592   3406
+bolduc         0.004 58.595   3407
+batchelor      0.004 58.599   3408
+ammons         0.004 58.603   3409
+whitlow        0.004 58.606   3410
+tierney        0.004 58.610   3411
+staten         0.004 58.613   3412
+sibley         0.004 58.617   3413
+seifert        0.004 58.621   3414
+schubert       0.004 58.624   3415
+salcedo        0.004 58.628   3416
+mattison       0.004 58.631   3417
+laney          0.004 58.635   3418
+haggard        0.004 58.639   3419
+grooms         0.004 58.642   3420
+dix            0.004 58.646   3421
+dees           0.004 58.649   3422
+cromer         0.004 58.653   3423
+cooks          0.004 58.656   3424
+colson         0.004 58.660   3425
+caswell        0.004 58.664   3426
+zarate         0.004 58.667   3427
+swisher        0.004 58.671   3428
+stacey         0.004 58.674   3429
+shin           0.004 58.678   3430
+ragan          0.004 58.682   3431
+pridgen        0.004 58.685   3432
+mcvey          0.004 58.689   3433
+matheny        0.004 58.692   3434
+leigh          0.004 58.696   3435
+lafleur        0.004 58.699   3436
+franz          0.004 58.703   3437
+ferraro        0.004 58.707   3438
+dugger         0.004 58.710   3439
+whiteside      0.004 58.714   3440
+rigsby         0.004 58.717   3441
+mcmurray       0.004 58.721   3442
+lehmann        0.004 58.724   3443
+large          0.004 58.728   3444
+jacoby         0.004 58.732   3445
+hildebrand     0.004 58.735   3446
+hendrick       0.004 58.739   3447
+headrick       0.004 58.742   3448
+goad           0.004 58.746   3449
+fincher        0.004 58.749   3450
+drury          0.004 58.753   3451
+borges         0.004 58.756   3452
+archibald      0.004 58.760   3453
+albers         0.004 58.764   3454
+woodcock       0.004 58.767   3455
+trapp          0.004 58.771   3456
+soares         0.004 58.774   3457
+seaton         0.004 58.778   3458
+richie         0.004 58.781   3459
+monson         0.004 58.785   3460
+luckett        0.004 58.788   3461
+lindberg       0.004 58.792   3462
+kopp           0.004 58.795   3463
+keeton         0.004 58.799   3464
+hsu            0.004 58.803   3465
+healey         0.004 58.806   3466
+garvey         0.004 58.810   3467
+gaddy          0.004 58.813   3468
+fain           0.004 58.817   3469
+burchfield     0.004 58.820   3470
+badger         0.004 58.824   3471
+wentworth      0.004 58.827   3472
+strand         0.004 58.831   3473
+stack          0.004 58.834   3474
+spooner        0.004 58.838   3475
+saucier        0.004 58.841   3476
+sales          0.004 58.845   3477
+ruby           0.004 58.849   3478
+ricci          0.004 58.852   3479
+plunkett       0.004 58.856   3480
+pannell        0.004 58.859   3481
+ness           0.004 58.863   3482
+leger          0.004 58.866   3483
+hoy            0.004 58.870   3484
+freitas        0.004 58.873   3485
+fong           0.004 58.877   3486
+elizondo       0.004 58.880   3487
+duval          0.004 58.884   3488
+chun           0.004 58.887   3489
+calvin         0.004 58.891   3490
+beaudoin       0.004 58.894   3491
+urbina         0.004 58.898   3492
+stock          0.004 58.901   3493
+rickard        0.004 58.905   3494
+partin         0.004 58.908   3495
+moe            0.004 58.912   3496
+mcgrew         0.004 58.916   3497
+mcclintock     0.004 58.919   3498
+ledoux         0.004 58.923   3499
+forsyth        0.004 58.926   3500
+faison         0.004 58.930   3501
+devries        0.004 58.933   3502
+bertrand       0.004 58.937   3503
+wasson         0.003 58.940   3504
+tilton         0.003 58.944   3505
+scarbrough     0.003 58.947   3506
+pride          0.003 58.951   3507
+oh             0.003 58.954   3508
+leung          0.003 58.958   3509
+larry          0.003 58.961   3510
+irvine         0.003 58.965   3511
+garber         0.003 58.968   3512
+denning        0.003 58.972   3513
+corral         0.003 58.975   3514
+colley         0.003 58.979   3515
+castleberry    0.003 58.982   3516
+bowlin         0.003 58.986   3517
+bogan          0.003 58.989   3518
+beale          0.003 58.993   3519
+baines         0.003 58.996   3520
+true           0.003 59.000   3521
+trice          0.003 59.003   3522
+rayburn        0.003 59.007   3523
+parkinson      0.003 59.010   3524
+pak            0.003 59.013   3525
+nunes          0.003 59.017   3526
+mcmillen       0.003 59.020   3527
+leahy          0.003 59.024   3528
+lea            0.003 59.027   3529
+kimmel         0.003 59.031   3530
+higgs          0.003 59.034   3531
+fulmer         0.003 59.038   3532
+carden         0.003 59.041   3533
+bedford        0.003 59.045   3534
+taggart        0.003 59.048   3535
+spearman       0.003 59.052   3536
+register       0.003 59.055   3537
+prichard       0.003 59.059   3538
+morrill        0.003 59.062   3539
+koonce         0.003 59.066   3540
+heinz          0.003 59.069   3541
+hedges         0.003 59.073   3542
+guenther       0.003 59.076   3543
+grice          0.003 59.079   3544
+findley        0.003 59.083   3545
+earle          0.003 59.086   3546
+dover          0.003 59.090   3547
+creighton      0.003 59.093   3548
+boothe         0.003 59.097   3549
+bayer          0.003 59.100   3550
+arreola        0.003 59.104   3551
+vitale         0.003 59.107   3552
+valles         0.003 59.111   3553
+see            0.003 59.114   3554
+raney          0.003 59.118   3555
+peter          0.003 59.121   3556
+osgood         0.003 59.124   3557
+lowell         0.003 59.128   3558
+hanlon         0.003 59.131   3559
+burley         0.003 59.135   3560
+bounds         0.003 59.138   3561
+worden         0.003 59.142   3562
+weatherly      0.003 59.145   3563
+vetter         0.003 59.149   3564
+tanaka         0.003 59.152   3565
+stiltner       0.003 59.155   3566
+sell           0.003 59.159   3567
+nevarez        0.003 59.162   3568
+mosby          0.003 59.166   3569
+montero        0.003 59.169   3570
+melancon       0.003 59.173   3571
+harter         0.003 59.176   3572
+hamer          0.003 59.179   3573
+goble          0.003 59.183   3574
+gladden        0.003 59.186   3575
+gist           0.003 59.190   3576
+ginn           0.003 59.193   3577
+akin           0.003 59.197   3578
+zaragoza       0.003 59.200   3579
+towns          0.003 59.203   3580
+tarver         0.003 59.207   3581
+sammons        0.003 59.210   3582
+royster        0.003 59.214   3583
+oreilly        0.003 59.217   3584
+muir           0.003 59.221   3585
+morehead       0.003 59.224   3586
+luster         0.003 59.227   3587
+kingsley       0.003 59.231   3588
+kelso          0.003 59.234   3589
+grisham        0.003 59.238   3590
+glynn          0.003 59.241   3591
+baumann        0.003 59.244   3592
+alves          0.003 59.248   3593
+yount          0.003 59.251   3594
+tamayo         0.003 59.255   3595
+tam            0.003 59.258   3596
+paterson       0.003 59.261   3597
+oates          0.003 59.265   3598
+menendez       0.003 59.268   3599
+longo          0.003 59.272   3600
+hargis         0.003 59.275   3601
+greenlee       0.003 59.278   3602
+gillen         0.003 59.282   3603
+desantis       0.003 59.285   3604
+conover        0.003 59.289   3605
+breedlove      0.003 59.292   3606
+wayne          0.003 59.295   3607
+sumpter        0.003 59.299   3608
+scherer        0.003 59.302   3609
+rupp           0.003 59.306   3610
+reichert       0.003 59.309   3611
+heredia        0.003 59.312   3612
+fallon         0.003 59.316   3613
+creel          0.003 59.319   3614
+cohn           0.003 59.323   3615
+clemmons       0.003 59.326   3616
+casas          0.003 59.329   3617
+bickford       0.003 59.333   3618
+belton         0.003 59.336   3619
+bach           0.003 59.339   3620
+williford      0.003 59.343   3621
+whitcomb       0.003 59.346   3622
+tennant        0.003 59.350   3623
+sutter         0.003 59.353   3624
+stull          0.003 59.356   3625
+sessions       0.003 59.360   3626
+mccallum       0.003 59.363   3627
+manson         0.003 59.366   3628
+langlois       0.003 59.370   3629
+keel           0.003 59.373   3630
+keegan         0.003 59.377   3631
+emanuel        0.003 59.380   3632
+dangelo        0.003 59.383   3633
+dancy          0.003 59.387   3634
+damron         0.003 59.390   3635
+clapp          0.003 59.393   3636
+clanton        0.003 59.397   3637
+bankston       0.003 59.400   3638
+trinidad       0.003 59.404   3639
+oliveira       0.003 59.407   3640
+mintz          0.003 59.410   3641
+mcinnis        0.003 59.414   3642
+martens        0.003 59.417   3643
+mabe           0.003 59.420   3644
+laster         0.003 59.424   3645
+jolley         0.003 59.427   3646
+irish          0.003 59.430   3647
+hildreth       0.003 59.434   3648
+hefner         0.003 59.437   3649
+glaser         0.003 59.440   3650
+duckett        0.003 59.444   3651
+demers         0.003 59.447   3652
+brockman       0.003 59.450   3653
+blais          0.003 59.454   3654
+back           0.003 59.457   3655
+alcorn         0.003 59.461   3656
+agnew          0.003 59.464   3657
+toliver        0.003 59.467   3658
+tice           0.003 59.471   3659
+song           0.003 59.474   3660
+seeley         0.003 59.477   3661
+najera         0.003 59.481   3662
+musser         0.003 59.484   3663
+mcfall         0.003 59.487   3664
+laplante       0.003 59.491   3665
+galvin         0.003 59.494   3666
+fajardo        0.003 59.497   3667
+doan           0.003 59.501   3668
+coyne          0.003 59.504   3669
+copley         0.003 59.507   3670
+clawson        0.003 59.511   3671
+cheung         0.003 59.514   3672
+barone         0.003 59.517   3673
+wynne          0.003 59.521   3674
+woodley        0.003 59.524   3675
+tremblay       0.003 59.527   3676
+stoll          0.003 59.531   3677
+sparrow        0.003 59.534   3678
+sparkman       0.003 59.537   3679
+schweitzer     0.003 59.541   3680
+sasser         0.003 59.544   3681
+samples        0.003 59.547   3682
+roney          0.003 59.551   3683
+ramon          0.003 59.554   3684
+legg           0.003 59.557   3685
+lai            0.003 59.561   3686
+joe            0.003 59.564   3687
+heim           0.003 59.567   3688
+farias         0.003 59.570   3689
+concepcion     0.003 59.574   3690
+colwell        0.003 59.577   3691
+christman      0.003 59.580   3692
+bratcher       0.003 59.584   3693
+alba           0.003 59.587   3694
+winchester     0.003 59.590   3695
+upshaw         0.003 59.594   3696
+southerland    0.003 59.597   3697
+sorrell        0.003 59.600   3698
+shay           0.003 59.604   3699
+sells          0.003 59.607   3700
+mount          0.003 59.610   3701
+mccloskey      0.003 59.614   3702
+martindale     0.003 59.617   3703
+luttrell       0.003 59.620   3704
+loveless       0.003 59.623   3705
+lovejoy        0.003 59.627   3706
+linares        0.003 59.630   3707
+latimer        0.003 59.633   3708
+holly          0.003 59.637   3709
+embry          0.003 59.640   3710
+coombs         0.003 59.643   3711
+bratton        0.003 59.647   3712
+bostick        0.003 59.650   3713
+boss           0.003 59.653   3714
+venable        0.003 59.657   3715
+tuggle         0.003 59.660   3716
+toro           0.003 59.663   3717
+staggs         0.003 59.666   3718
+sandlin        0.003 59.670   3719
+jefferies      0.003 59.673   3720
+heckman        0.003 59.676   3721
+griffis        0.003 59.680   3722
+crayton        0.003 59.683   3723
+clem           0.003 59.686   3724
+button         0.003 59.689   3725
+browder        0.003 59.693   3726
+allan          0.003 59.696   3727
+thorton        0.003 59.699   3728
+sturgill       0.003 59.703   3729
+sprouse        0.003 59.706   3730
+royer          0.003 59.709   3731
+rousseau       0.003 59.712   3732
+ridenour       0.003 59.716   3733
+pogue          0.003 59.719   3734
+perales        0.003 59.722   3735
+peeples        0.003 59.725   3736
+metzler        0.003 59.729   3737
+mesa           0.003 59.732   3738
+mccutcheon     0.003 59.735   3739
+mcbee          0.003 59.739   3740
+jay            0.003 59.742   3741
+hornsby        0.003 59.745   3742
+heffner        0.003 59.748   3743
+corrigan       0.003 59.752   3744
+armijo         0.003 59.755   3745
+vue            0.003 59.758   3746
+romeo          0.003 59.761   3747
+plante         0.003 59.765   3748
+peyton         0.003 59.768   3749
+paredes        0.003 59.771   3750
+macklin        0.003 59.774   3751
+hussey         0.003 59.778   3752
+hodgson        0.003 59.781   3753
+granados       0.003 59.784   3754
+frias          0.003 59.788   3755
+carman         0.003 59.791   3756
+brent          0.003 59.794   3757
+becnel         0.003 59.797   3758
+batten         0.003 59.801   3759
+almanza        0.003 59.804   3760
+turney         0.003 59.807   3761
+teal           0.003 59.810   3762
+sturgeon       0.003 59.814   3763
+meeker         0.003 59.817   3764
+mcdaniels      0.003 59.820   3765
+limon          0.003 59.823   3766
+keeney         0.003 59.827   3767
+kee            0.003 59.830   3768
+hutto          0.003 59.833   3769
+holguin        0.003 59.836   3770
+gorham         0.003 59.840   3771
+fishman        0.003 59.843   3772
+fierro         0.003 59.846   3773
+blanchette     0.003 59.849   3774
+rodrigue       0.003 59.852   3775
+reddy          0.003 59.856   3776
+osburn         0.003 59.859   3777
+oden           0.003 59.862   3778
+lerma          0.003 59.865   3779
+kirkwood       0.003 59.869   3780
+keefer         0.003 59.872   3781
+haugen         0.003 59.875   3782
+hammett        0.003 59.878   3783
+chalmers       0.003 59.882   3784
+carlos         0.003 59.885   3785
+brinkman       0.003 59.888   3786
+baumgartner    0.003 59.891   3787
+zhang          0.003 59.894   3788
+valerio        0.003 59.898   3789
+tellez         0.003 59.901   3790
+steffen        0.003 59.904   3791
+shumate        0.003 59.907   3792
+sauls          0.003 59.910   3793
+ripley         0.003 59.914   3794
+kemper         0.003 59.917   3795
+jacks          0.003 59.920   3796
+guffey         0.003 59.923   3797
+evers          0.003 59.927   3798
+craddock       0.003 59.930   3799
+carvalho       0.003 59.933   3800
+blaylock       0.003 59.936   3801
+banuelos       0.003 59.939   3802
+balderas       0.003 59.943   3803
+wooden         0.003 59.946   3804
+wheaton        0.003 59.949   3805
+turnbull       0.003 59.952   3806
+shuman         0.003 59.955   3807
+pointer        0.003 59.959   3808
+mosier         0.003 59.962   3809
+mccue          0.003 59.965   3810
+ligon          0.003 59.968   3811
+kozlowski      0.003 59.971   3812
+johansen       0.003 59.975   3813
+ingle          0.003 59.978   3814
+herr           0.003 59.981   3815
+briones        0.003 59.984   3816
+southern       0.003 59.987   3817
+snipes         0.003 59.990   3818
+rickman        0.003 59.994   3819
+pipkin         0.003 59.997   3820
+peace          0.003 60.000   3821
+pantoja        0.003 60.003   3822
+orosco         0.003 60.006   3823
+moniz          0.003 60.010   3824
+lawless        0.003 60.013   3825
+kunkel         0.003 60.016   3826
+hibbard        0.003 60.019   3827
+galarza        0.003 60.022   3828
+enos           0.003 60.025   3829
+bussey         0.003 60.029   3830
+settle         0.003 60.032   3831
+schott         0.003 60.035   3832
+salcido        0.003 60.038   3833
+perreault      0.003 60.041   3834
+mcdougal       0.003 60.044   3835
+mccool         0.003 60.048   3836
+haight         0.003 60.051   3837
+garris         0.003 60.054   3838
+ferry          0.003 60.057   3839
+easton         0.003 60.060   3840
+conyers        0.003 60.063   3841
+atherton       0.003 60.067   3842
+wimberly       0.003 60.070   3843
+utley          0.003 60.073   3844
+stephen        0.003 60.076   3845
+spellman       0.003 60.079   3846
+smithson       0.003 60.082   3847
+slagle         0.003 60.085   3848
+skipper        0.003 60.089   3849
+ritchey        0.003 60.092   3850
+rand           0.003 60.095   3851
+petit          0.003 60.098   3852
+osullivan      0.003 60.101   3853
+oaks           0.003 60.104   3854
+nutt           0.003 60.108   3855
+mcvay          0.003 60.111   3856
+mccreary       0.003 60.114   3857
+mayhew         0.003 60.117   3858
+knoll          0.003 60.120   3859
+jewett         0.003 60.123   3860
+harwood        0.003 60.126   3861
+hailey         0.003 60.130   3862
+cardoza        0.003 60.133   3863
+ashe           0.003 60.136   3864
+arriaga        0.003 60.139   3865
+andres         0.003 60.142   3866
+zeller         0.003 60.145   3867
+wirth          0.003 60.148   3868
+whitmire       0.003 60.152   3869
+stauffer       0.003 60.155   3870
+spring         0.003 60.158   3871
+rountree       0.003 60.161   3872
+redden         0.003 60.164   3873
+mccaffrey      0.003 60.167   3874
+martz          0.003 60.170   3875
+loving         0.003 60.173   3876
+larose         0.003 60.177   3877
+langdon        0.003 60.180   3878
+humes          0.003 60.183   3879
+gaskin         0.003 60.186   3880
+faber          0.003 60.189   3881
+doll           0.003 60.192   3882
+devito         0.003 60.195   3883
+cass           0.003 60.199   3884
+almond         0.003 60.202   3885
+wingfield      0.003 60.205   3886
+wingate        0.003 60.208   3887
+villareal      0.003 60.211   3888
+tyner          0.003 60.214   3889
+smothers       0.003 60.217   3890
+severson       0.003 60.220   3891
+reno           0.003 60.223   3892
+pennell        0.003 60.227   3893
+maupin         0.003 60.230   3894
+leighton       0.003 60.233   3895
+janssen        0.003 60.236   3896
+hassell        0.003 60.239   3897
+hallman        0.003 60.242   3898
+halcomb        0.003 60.245   3899
+folse          0.003 60.248   3900
+fitzsimmons    0.003 60.251   3901
+fahey          0.003 60.255   3902
+cranford       0.003 60.258   3903
+bolen          0.003 60.261   3904
+battles        0.003 60.264   3905
+battaglia      0.003 60.267   3906
+wooldridge     0.003 60.270   3907
+weed           0.003 60.273   3908
+trask          0.003 60.276   3909
+rosser         0.003 60.279   3910
+regalado       0.003 60.283   3911
+mcewen         0.003 60.286   3912
+keefe          0.003 60.289   3913
+fuqua          0.003 60.292   3914
+echevarria     0.003 60.295   3915
+domingo        0.003 60.298   3916
+dang           0.003 60.301   3917
+caro           0.003 60.304   3918
+boynton        0.003 60.307   3919
+andrus         0.003 60.310   3920
+wild           0.003 60.314   3921
+viera          0.003 60.317   3922
+vanmeter       0.003 60.320   3923
+taber          0.003 60.323   3924
+spradlin       0.003 60.326   3925
+seibert        0.003 60.329   3926
+provost        0.003 60.332   3927
+prentice       0.003 60.335   3928
+oliphant       0.003 60.338   3929
+laporte        0.003 60.341   3930
+hwang          0.003 60.344   3931
+hatchett       0.003 60.347   3932
+hass           0.003 60.351   3933
+greiner        0.003 60.354   3934
+freedman       0.003 60.357   3935
+covert         0.003 60.360   3936
+chilton        0.003 60.363   3937
+byars          0.003 60.366   3938
+wiese          0.003 60.369   3939
+venegas        0.003 60.372   3940
+swank          0.003 60.375   3941
+shrader        0.003 60.378   3942
+roderick       0.003 60.381   3943
+roberge        0.003 60.384   3944
+mullis         0.003 60.387   3945
+mortensen      0.003 60.391   3946
+mccune         0.003 60.394   3947
+marlowe        0.003 60.397   3948
+kirchner       0.003 60.400   3949
+keck           0.003 60.403   3950
+isaacson       0.003 60.406   3951
+hostetler      0.003 60.409   3952
+halverson      0.003 60.412   3953
+gunther        0.003 60.415   3954
+griswold       0.003 60.418   3955
+gerard         0.003 60.421   3956
+fenner         0.003 60.424   3957
+durden         0.003 60.427   3958
+blackwood      0.003 60.430   3959
+bertram        0.003 60.433   3960
+ahrens         0.003 60.437   3961
+sawyers        0.003 60.440   3962
+savoy          0.003 60.443   3963
+nabors         0.003 60.446   3964
+mcswain        0.003 60.449   3965
+mackay         0.003 60.452   3966
+loy            0.003 60.455   3967
+lavender       0.003 60.458   3968
+lash           0.003 60.461   3969
+labbe          0.003 60.464   3970
+jessup         0.003 60.467   3971
+hubert         0.003 60.470   3972
+fullerton      0.003 60.473   3973
+donnell        0.003 60.476   3974
+cruse          0.003 60.479   3975
+crittenden     0.003 60.482   3976
+correia        0.003 60.485   3977
+centeno        0.003 60.488   3978
+caudle         0.003 60.491   3979
+canady         0.003 60.495   3980
+callender      0.003 60.498   3981
+alarcon        0.003 60.501   3982
+ahern          0.003 60.504   3983
+winfrey        0.003 60.507   3984
+tribble        0.003 60.510   3985
+tom            0.003 60.513   3986
+styles         0.003 60.516   3987
+salley         0.003 60.519   3988
+roden          0.003 60.522   3989
+musgrove       0.003 60.525   3990
+minnick        0.003 60.528   3991
+fortenberry    0.003 60.531   3992
+carrion        0.003 60.534   3993
+bunting        0.003 60.537   3994
+bethel         0.003 60.540   3995
+batiste        0.003 60.543   3996
+woo            0.003 60.546   3997
+whited         0.003 60.549   3998
+underhill      0.003 60.552   3999
+stillwell      0.003 60.555   4000
+silvia         0.003 60.558   4001
+rauch          0.003 60.561   4002
+pippin         0.003 60.564   4003
+perrin         0.003 60.567   4004
+messenger      0.003 60.570   4005
+mancini        0.003 60.573   4006
+lister         0.003 60.576   4007
+kinard         0.003 60.579   4008
+hartmann       0.003 60.582   4009
+fleck          0.003 60.585   4010
+broadway       0.003 60.588   4011
+wilt           0.003 60.591   4012
+treadway       0.003 60.594   4013
+thornhill      0.003 60.598   4014
+speed          0.003 60.601   4015
+spalding       0.003 60.604   4016
+sam            0.003 60.607   4017
+rafferty       0.003 60.610   4018
+pitre          0.003 60.613   4019
+patino         0.003 60.616   4020
+ordonez        0.003 60.619   4021
+linkous        0.003 60.622   4022
+kelleher       0.003 60.625   4023
+homan          0.003 60.628   4024
+holiday        0.003 60.631   4025
+galbraith      0.003 60.634   4026
+feeney         0.003 60.637   4027
+dorris         0.003 60.640   4028
+curtin         0.003 60.643   4029
+coward         0.003 60.646   4030
+camarillo      0.003 60.649   4031
+buss           0.003 60.652   4032
+bunnell        0.003 60.655   4033
+bolt           0.003 60.658   4034
+beeler         0.003 60.661   4035
+autry          0.003 60.664   4036
+alcala         0.003 60.667   4037
+witte          0.003 60.670   4038
+wentz          0.003 60.673   4039
+stidham        0.003 60.676   4040
+shively        0.003 60.679   4041
+nunley         0.003 60.682   4042
+meacham        0.003 60.685   4043
+martins        0.003 60.688   4044
+lemke          0.003 60.691   4045
+lefebvre       0.003 60.694   4046
+kaye           0.003 60.696   4047
+hynes          0.003 60.699   4048
+horowitz       0.003 60.702   4049
+hoppe          0.003 60.705   4050
+holcombe       0.003 60.708   4051
+estrella       0.003 60.711   4052
+dunne          0.003 60.714   4053
+derr           0.003 60.717   4054
+cochrane       0.003 60.720   4055
+brittain       0.003 60.723   4056
+bedard         0.003 60.726   4057
+beauregard     0.003 60.729   4058
+torrence       0.003 60.732   4059
+strunk         0.003 60.735   4060
+soria          0.003 60.738   4061
+simonson       0.003 60.741   4062
+shumaker       0.003 60.744   4063
+scoggins       0.003 60.747   4064
+packer         0.003 60.750   4065
+oconner        0.003 60.753   4066
+moriarty       0.003 60.756   4067
+leroy          0.003 60.759   4068
+kuntz          0.003 60.762   4069
+ives           0.003 60.765   4070
+hutcheson      0.003 60.768   4071
+horan          0.003 60.771   4072
+hales          0.003 60.774   4073
+garmon         0.003 60.777   4074
+fitts          0.003 60.780   4075
+dell           0.003 60.783   4076
+bohn           0.003 60.786   4077
+atchison       0.003 60.789   4078
+worth          0.003 60.792   4079
+wisniewski     0.003 60.795   4080
+will           0.003 60.798   4081
+vanwinkle      0.003 60.801   4082
+sturm          0.003 60.804   4083
+sallee         0.003 60.807   4084
+prosser        0.003 60.810   4085
+moen           0.003 60.812   4086
+lundberg       0.003 60.815   4087
+kunz           0.003 60.818   4088
+kohl           0.003 60.821   4089
+keane          0.003 60.824   4090
+jorgenson      0.003 60.827   4091
+jaynes         0.003 60.830   4092
+funderburk     0.003 60.833   4093
+freed          0.003 60.836   4094
+frame          0.003 60.839   4095
+durr           0.003 60.842   4096
+creamer        0.003 60.845   4097
+cosgrove       0.003 60.848   4098
+candelaria     0.003 60.851   4099
+berlin         0.003 60.854   4100
+batson         0.003 60.857   4101
+vanhoose       0.003 60.860   4102
+thomsen        0.003 60.863   4103
+teeter         0.003 60.866   4104
+sommer         0.003 60.869   4105
+smyth          0.003 60.872   4106
+sena           0.003 60.874   4107
+redmon         0.003 60.877   4108
+orellana       0.003 60.880   4109
+maness         0.003 60.883   4110
+lennon         0.003 60.886   4111
+heflin         0.003 60.889   4112
+goulet         0.003 60.892   4113
+frick          0.003 60.895   4114
+forney         0.003 60.898   4115
+dollar         0.003 60.901   4116
+bunker         0.003 60.904   4117
+asbury         0.003 60.907   4118
+aguiar         0.003 60.910   4119
+talbott        0.003 60.913   4120
+southard       0.003 60.916   4121
+pleasant       0.003 60.919   4122
+mowery         0.003 60.921   4123
+mears          0.003 60.924   4124
+lemmon         0.003 60.927   4125
+krieger        0.003 60.930   4126
+hickson        0.003 60.933   4127
+gracia         0.003 60.936   4128
+elston         0.003 60.939   4129
+duong          0.003 60.942   4130
+delgadillo     0.003 60.945   4131
+dayton         0.003 60.948   4132
+dasilva        0.003 60.951   4133
+conaway        0.003 60.954   4134
+catron         0.003 60.957   4135
+bruton         0.003 60.960   4136
+bradbury       0.003 60.962   4137
+bordelon       0.003 60.965   4138
+bivins         0.003 60.968   4139
+bittner        0.003 60.971   4140
+bergstrom      0.003 60.974   4141
+beals          0.003 60.977   4142
+abell          0.003 60.980   4143
+whelan         0.003 60.983   4144
+travers        0.003 60.986   4145
+tejada         0.003 60.989   4146
+pulley         0.003 60.992   4147
+pino           0.003 60.995   4148
+norfleet       0.003 60.997   4149
+nealy          0.003 61.000   4150
+maes           0.003 61.003   4151
+loper          0.003 61.006   4152
+held           0.003 61.009   4153
+gerald         0.003 61.012   4154
+gatewood       0.003 61.015   4155
+frierson       0.003 61.018   4156
+freund         0.003 61.021   4157
+finnegan       0.003 61.024   4158
+cupp           0.003 61.027   4159
+covey          0.003 61.029   4160
+catalano       0.003 61.032   4161
+boehm          0.003 61.035   4162
+bader          0.003 61.038   4163
+yoon           0.003 61.041   4164
+walston        0.003 61.044   4165
+tenney         0.003 61.047   4166
+sipes          0.003 61.050   4167
+roller         0.003 61.053   4168
+rawlins        0.003 61.056   4169
+medlock        0.003 61.058   4170
+mccaskill      0.003 61.061   4171
+mccallister    0.003 61.064   4172
+marcotte       0.003 61.067   4173
+maclean        0.003 61.070   4174
+hughey         0.003 61.073   4175
+henke          0.003 61.076   4176
+harwell        0.003 61.079   4177
+gladney        0.003 61.082   4178
+gilson         0.003 61.084   4179
+dew            0.003 61.087   4180
+chism          0.003 61.090   4181
+caskey         0.003 61.093   4182
+brandenburg    0.003 61.096   4183
+baylor         0.003 61.099   4184
+villasenor     0.003 61.102   4185
+veal           0.003 61.105   4186
+van            0.003 61.108   4187
+thatcher       0.003 61.110   4188
+stegall        0.003 61.113   4189
+shore          0.003 61.116   4190
+petrie         0.003 61.119   4191
+nowlin         0.003 61.122   4192
+navarrete      0.003 61.125   4193
+muhammad       0.003 61.128   4194
+lombard        0.003 61.131   4195
+loftin         0.003 61.133   4196
+lemaster       0.003 61.136   4197
+kroll          0.003 61.139   4198
+kovach         0.003 61.142   4199
+kimbrell       0.003 61.145   4200
+kidwell        0.003 61.148   4201
+hershberger    0.003 61.151   4202
+fulcher        0.003 61.154   4203
+eng            0.003 61.156   4204
+cantwell       0.003 61.159   4205
+bustos         0.003 61.162   4206
+boland         0.003 61.165   4207
+bobbitt        0.003 61.168   4208
+binkley        0.003 61.171   4209
+wester         0.003 61.174   4210
+weis           0.003 61.177   4211
+verdin         0.003 61.179   4212
+tong           0.003 61.182   4213
+tiller         0.003 61.185   4214
+sisco          0.003 61.188   4215
+sharkey        0.003 61.191   4216
+seymore        0.003 61.194   4217
+rosenbaum      0.003 61.197   4218
+rohr           0.003 61.199   4219
+quinonez       0.003 61.202   4220
+pinkston       0.003 61.205   4221
+nation         0.003 61.208   4222
+malley         0.003 61.211   4223
+logue          0.003 61.214   4224
+lessard        0.003 61.217   4225
+lerner         0.003 61.220   4226
+lebron         0.003 61.222   4227
+krauss         0.003 61.225   4228
+klinger        0.003 61.228   4229
+halstead       0.003 61.231   4230
+haller         0.003 61.234   4231
+getz           0.003 61.237   4232
+burrow         0.003 61.240   4233
+brant          0.003 61.242   4234
+alger          0.003 61.245   4235
+victor         0.003 61.248   4236
+shores         0.003 61.251   4237
+scully         0.003 61.254   4238
+pounds         0.003 61.257   4239
+pfeifer        0.003 61.259   4240
+perron         0.003 61.262   4241
+nelms          0.003 61.265   4242
+munn           0.003 61.268   4243
+mcmaster       0.003 61.271   4244
+mckenney       0.003 61.274   4245
+manns          0.003 61.277   4246
+knudson        0.003 61.279   4247
+hutchens       0.003 61.282   4248
+huskey         0.003 61.285   4249
+goebel         0.003 61.288   4250
+flagg          0.003 61.291   4251
+cushman        0.003 61.294   4252
+click          0.003 61.296   4253
+castellano     0.003 61.299   4254
+carder         0.003 61.302   4255
+bumgarner      0.003 61.305   4256
+blaine         0.003 61.308   4257
+bible          0.003 61.311   4258
+wampler        0.003 61.314   4259
+spinks         0.003 61.316   4260
+robson         0.003 61.319   4261
+neel           0.003 61.322   4262
+mcreynolds     0.003 61.325   4263
+mathias        0.003 61.328   4264
+maas           0.003 61.331   4265
+loera          0.003 61.333   4266
+kasper         0.003 61.336   4267
+jose           0.003 61.339   4268
+jenson         0.003 61.342   4269
+florez         0.003 61.345   4270
+coons          0.003 61.348   4271
+buckingham     0.003 61.350   4272
+brogan         0.003 61.353   4273
+berryman       0.003 61.356   4274
+wilmoth        0.003 61.359   4275
+wilhite        0.003 61.362   4276
+thrash         0.003 61.364   4277
+shephard       0.003 61.367   4278
+seidel         0.003 61.370   4279
+schulze        0.003 61.373   4280
+roldan         0.003 61.376   4281
+pettis         0.003 61.379   4282
+obryan         0.003 61.381   4283
+maki           0.003 61.384   4284
+mackie         0.003 61.387   4285
+hatley         0.003 61.390   4286
+frazer         0.003 61.393   4287
+fiore          0.003 61.395   4288
+falls          0.003 61.398   4289
+chesser        0.003 61.401   4290
+bui            0.003 61.404   4291
+bottoms        0.003 61.407   4292
+bisson         0.003 61.409   4293
+benefield      0.003 61.412   4294
+allman         0.003 61.415   4295
+wilke          0.003 61.418   4296
+trudeau        0.003 61.421   4297
+timm           0.003 61.423   4298
+shifflett      0.003 61.426   4299
+rau            0.003 61.429   4300
+mundy          0.003 61.432   4301
+milliken       0.003 61.435   4302
+mayers         0.003 61.437   4303
+leake          0.003 61.440   4304
+kohn           0.003 61.443   4305
+huntington     0.003 61.446   4306
+horsley        0.003 61.449   4307
+hermann        0.003 61.451   4308
+guerin         0.003 61.454   4309
+fryer          0.003 61.457   4310
+frizzell       0.003 61.460   4311
+foret          0.003 61.463   4312
+flemming       0.003 61.465   4313
+fife           0.003 61.468   4314
+criswell       0.003 61.471   4315
+carbajal       0.003 61.474   4316
+bozeman        0.003 61.477   4317
+boisvert       0.003 61.479   4318
+archie         0.003 61.482   4319
+antonio        0.003 61.485   4320
+angulo         0.003 61.488   4321
+wallen         0.003 61.491   4322
+tapp           0.003 61.493   4323
+silvers        0.003 61.496   4324
+ramsay         0.003 61.499   4325
+oshea          0.003 61.502   4326
+orta           0.003 61.505   4327
+moll           0.003 61.507   4328
+mckeever       0.003 61.510   4329
+mcgehee        0.003 61.513   4330
+luciano        0.003 61.516   4331
+linville       0.003 61.518   4332
+kiefer         0.003 61.521   4333
+ketchum        0.003 61.524   4334
+howerton       0.003 61.527   4335
+groce          0.003 61.530   4336
+gaylord        0.003 61.532   4337
+gass           0.003 61.535   4338
+fusco          0.003 61.538   4339
+corbitt        0.003 61.541   4340
+blythe         0.003 61.543   4341
+betz           0.003 61.546   4342
+bartels        0.003 61.549   4343
+amaral         0.003 61.552   4344
+aiello         0.003 61.555   4345
+yoo            0.003 61.557   4346
+weddle         0.003 61.560   4347
+troy           0.003 61.563   4348
+sun            0.003 61.566   4349
+sperry         0.003 61.568   4350
+seiler         0.003 61.571   4351
+runyan         0.003 61.574   4352
+raley          0.003 61.577   4353
+overby         0.003 61.579   4354
+osteen         0.003 61.582   4355
+olds           0.003 61.585   4356
+mckeown        0.003 61.588   4357
+mauro          0.003 61.591   4358
+matney         0.003 61.593   4359
+lauer          0.003 61.596   4360
+lattimore      0.003 61.599   4361
+hindman        0.003 61.602   4362
+hartwell       0.003 61.604   4363
+fredrickson    0.003 61.607   4364
+fredericks     0.003 61.610   4365
+espino         0.003 61.613   4366
+clegg          0.003 61.615   4367
+carswell       0.003 61.618   4368
+cambell        0.003 61.621   4369
+burkholder     0.003 61.624   4370
+august         0.003 61.627   4371
+woodbury       0.003 61.629   4372
+welker         0.003 61.632   4373
+totten         0.003 61.635   4374
+thornburg      0.003 61.638   4375
+theriault      0.003 61.640   4376
+stitt          0.003 61.643   4377
+stamm          0.003 61.646   4378
+stackhouse     0.003 61.649   4379
+simone         0.003 61.651   4380
+scholl         0.003 61.654   4381
+saxon          0.003 61.657   4382
+rife           0.003 61.660   4383
+razo           0.003 61.662   4384
+quinlan        0.003 61.665   4385
+pinkerton      0.003 61.668   4386
+olivo          0.003 61.671   4387
+nesmith        0.003 61.673   4388
+nall           0.003 61.676   4389
+mattos         0.003 61.679   4390
+leak           0.003 61.682   4391
+lafferty       0.003 61.684   4392
+justus         0.003 61.687   4393
+giron          0.003 61.690   4394
+geer           0.003 61.693   4395
+fielder        0.003 61.695   4396
+eagle          0.003 61.698   4397
+drayton        0.003 61.701   4398
+dortch         0.003 61.704   4399
+conners        0.003 61.706   4400
+conger         0.003 61.709   4401
+chau           0.003 61.712   4402
+boatwright     0.003 61.715   4403
+billiot        0.003 61.717   4404
+barden         0.003 61.720   4405
+armenta        0.003 61.723   4406
+antoine        0.003 61.726   4407
+tibbetts       0.003 61.728   4408
+steadman       0.003 61.731   4409
+slattery       0.003 61.734   4410
+sides          0.003 61.736   4411
+rinaldi        0.003 61.739   4412
+raynor         0.003 61.742   4413
+rayford        0.003 61.745   4414
+pinckney       0.003 61.747   4415
+pettigrew      0.003 61.750   4416
+nickel         0.003 61.753   4417
+milne          0.003 61.756   4418
+matteson       0.003 61.758   4419
+halsey         0.003 61.761   4420
+gonsalves      0.003 61.764   4421
+fellows        0.003 61.767   4422
+durand         0.003 61.769   4423
+desimone       0.003 61.772   4424
+cowley         0.003 61.775   4425
+cowles         0.003 61.777   4426
+brill          0.003 61.780   4427
+barham         0.003 61.783   4428
+barela         0.003 61.786   4429
+barba          0.003 61.788   4430
+ashmore        0.003 61.791   4431
+withrow        0.003 61.794   4432
+valenti        0.003 61.797   4433
+tejeda         0.003 61.799   4434
+spriggs        0.003 61.802   4435
+sayre          0.003 61.805   4436
+salerno        0.003 61.807   4437
+place          0.003 61.810   4438
+peltier        0.003 61.813   4439
+peel           0.003 61.816   4440
+merriman       0.003 61.818   4441
+matheson       0.003 61.821   4442
+lowman         0.003 61.824   4443
+lindstrom      0.003 61.826   4444
+hyland         0.003 61.829   4445
+homer          0.003 61.832   4446
+ha             0.003 61.835   4447
+giroux         0.003 61.837   4448
+fries          0.003 61.840   4449
+frasier        0.003 61.843   4450
+earls          0.003 61.846   4451
+dugas          0.003 61.848   4452
+damon          0.003 61.851   4453
+dabney         0.003 61.854   4454
+collado        0.003 61.856   4455
+briseno        0.003 61.859   4456
+baxley         0.003 61.862   4457
+andre          0.003 61.865   4458
+word           0.003 61.867   4459
+whyte          0.003 61.870   4460
+wenger         0.003 61.873   4461
+vanover        0.003 61.875   4462
+vanburen       0.003 61.878   4463
+thiel          0.003 61.881   4464
+schindler      0.003 61.883   4465
+schiller       0.003 61.886   4466
+rigby          0.003 61.889   4467
+pomeroy        0.003 61.892   4468
+passmore       0.003 61.894   4469
+marble         0.003 61.897   4470
+manzo          0.003 61.900   4471
+mahaffey       0.003 61.902   4472
+lindgren       0.003 61.905   4473
+laflamme       0.003 61.908   4474
+greathouse     0.003 61.911   4475
+fite           0.003 61.913   4476
+ferrari        0.003 61.916   4477
+calabrese      0.003 61.919   4478
+bayne          0.003 61.921   4479
+yamamoto       0.003 61.924   4480
+wick           0.003 61.927   4481
+townes         0.003 61.929   4482
+thames         0.003 61.932   4483
+steel          0.003 61.935   4484
+reinhart       0.003 61.937   4485
+peeler         0.003 61.940   4486
+naranjo        0.003 61.943   4487
+montez         0.003 61.945   4488
+mcdade         0.003 61.948   4489
+mast           0.003 61.951   4490
+markley        0.003 61.954   4491
+marchand       0.003 61.956   4492
+leeper         0.003 61.959   4493
+kong           0.003 61.962   4494
+kellum         0.003 61.964   4495
+hudgens        0.003 61.967   4496
+hennessey      0.003 61.970   4497
+hadden         0.003 61.972   4498
+guess          0.003 61.975   4499
+gainey         0.003 61.978   4500
+coppola        0.003 61.980   4501
+borrego        0.003 61.983   4502
+bolling        0.003 61.986   4503
+beane          0.003 61.988   4504
+ault           0.003 61.991   4505
+slaton         0.003 61.994   4506
+poland         0.003 61.997   4507
+pape           0.003 61.999   4508
+null           0.003 62.002   4509
+mulkey         0.003 62.005   4510
+lightner       0.003 62.007   4511
+langer         0.003 62.010   4512
+hillard        0.003 62.013   4513
+glasgow        0.003 62.015   4514
+fabian         0.003 62.018   4515
+ethridge       0.003 62.021   4516
+enright        0.003 62.023   4517
+derosa         0.003 62.026   4518
+baskin         0.003 62.029   4519
+alfred         0.003 62.031   4520
+weinberg       0.003 62.034   4521
+turman         0.003 62.037   4522
+tinker         0.003 62.039   4523
+somerville     0.003 62.042   4524
+pardo          0.003 62.045   4525
+noll           0.003 62.047   4526
+lashley        0.003 62.050   4527
+ingraham       0.003 62.052   4528
+hiller         0.003 62.055   4529
+hendon         0.003 62.058   4530
+glaze          0.003 62.060   4531
+flora          0.003 62.063   4532
+cothran        0.003 62.066   4533
+cooksey        0.003 62.068   4534
+conte          0.003 62.071   4535
+carrico        0.003 62.074   4536
+apple          0.003 62.076   4537
+abner          0.003 62.079   4538
+wooley         0.003 62.082   4539
+swope          0.003 62.084   4540
+summerlin      0.003 62.087   4541
+sturgis        0.003 62.090   4542
+sturdivant     0.003 62.092   4543
+stott          0.003 62.095   4544
+spurgeon       0.003 62.097   4545
+spillman       0.003 62.100   4546
+speight        0.003 62.103   4547
+roussel        0.003 62.105   4548
+popp           0.003 62.108   4549
+nutter         0.003 62.111   4550
+mckeon         0.003 62.113   4551
+mazza          0.003 62.116   4552
+magnuson       0.003 62.119   4553
+lanning        0.003 62.121   4554
+kozak          0.003 62.124   4555
+jankowski      0.003 62.127   4556
+heyward        0.003 62.129   4557
+forster        0.003 62.132   4558
+corwin         0.003 62.134   4559
+callaghan      0.003 62.137   4560
+bays           0.003 62.140   4561
+wortham        0.003 62.142   4562
+usher          0.003 62.145   4563
+theriot        0.003 62.148   4564
+sayers         0.003 62.150   4565
+sabo           0.003 62.153   4566
+rupert         0.003 62.155   4567
+poling         0.003 62.158   4568
+nathan         0.003 62.161   4569
+loya           0.003 62.163   4570
+lieberman      0.003 62.166   4571
+levi           0.003 62.169   4572
+laroche        0.003 62.171   4573
+labelle        0.003 62.174   4574
+howes          0.003 62.176   4575
+harr           0.003 62.179   4576
+garay          0.003 62.182   4577
+fogarty        0.003 62.184   4578
+everson        0.003 62.187   4579
+durkin         0.003 62.190   4580
+dominquez      0.003 62.192   4581
+chaves         0.003 62.195   4582
+chambliss      0.003 62.197   4583
+alfonso        0.003 62.200   4584
+witcher        0.003 62.203   4585
+wilber         0.003 62.205   4586
+vieira         0.003 62.208   4587
+vandiver       0.003 62.210   4588
+terrill        0.003 62.213   4589
+stoker         0.003 62.216   4590
+schreiner      0.003 62.218   4591
+nestor         0.003 62.221   4592
+moorman        0.003 62.224   4593
+liddell        0.003 62.226   4594
+lew            0.003 62.229   4595
+lawhorn        0.003 62.231   4596
+krug           0.003 62.234   4597
+irons          0.003 62.237   4598
+hylton         0.003 62.239   4599
+hollenbeck     0.003 62.242   4600
+herrin         0.003 62.244   4601
+hembree        0.003 62.247   4602
+hair           0.003 62.250   4603
+goolsby        0.003 62.252   4604
+goodin         0.003 62.255   4605
+gilmer         0.003 62.257   4606
+foltz          0.003 62.260   4607
+dinkins        0.003 62.263   4608
+daughtry       0.003 62.265   4609
+caban          0.003 62.268   4610
+brim           0.003 62.270   4611
+briley         0.003 62.273   4612
+bilodeau       0.003 62.276   4613
+bear           0.003 62.278   4614
+wyant          0.003 62.281   4615
+vergara        0.003 62.283   4616
+tallent        0.003 62.286   4617
+swearingen     0.003 62.289   4618
+stroup         0.003 62.291   4619
+sherry         0.003 62.294   4620
+scribner       0.003 62.296   4621
+roger          0.003 62.299   4622
+quillen        0.003 62.302   4623
+pitman         0.003 62.304   4624
+monaco         0.003 62.307   4625
+mccants        0.003 62.309   4626
+maxfield       0.003 62.312   4627
+martinson      0.003 62.315   4628
+landon         0.003 62.317   4629
+holtz          0.003 62.320   4630
+flournoy       0.003 62.322   4631
+brookins       0.003 62.325   4632
+brody          0.003 62.327   4633
+baumgardner    0.003 62.330   4634
+angelo         0.003 62.333   4635
+straub         0.003 62.335   4636
+sills          0.003 62.338   4637
+roybal         0.003 62.340   4638
+roundtree      0.003 62.343   4639
+oswalt         0.003 62.346   4640
+money          0.003 62.348   4641
+mcgriff        0.003 62.351   4642
+mcdougall      0.003 62.353   4643
+mccleary       0.003 62.356   4644
+maggard        0.003 62.358   4645
+gragg          0.003 62.361   4646
+gooding        0.003 62.364   4647
+godinez        0.003 62.366   4648
+doolittle      0.003 62.369   4649
+donato         0.003 62.371   4650
+cowell         0.003 62.374   4651
+cassell        0.003 62.376   4652
+bracken        0.003 62.379   4653
+appel          0.003 62.382   4654
+ahmad          0.003 62.384   4655
+zambrano       0.003 62.387   4656
+reuter         0.003 62.389   4657
+perea          0.003 62.392   4658
+olive          0.003 62.394   4659
+nakamura       0.003 62.397   4660
+monaghan       0.003 62.400   4661
+mickens        0.003 62.402   4662
+mcclinton      0.003 62.405   4663
+mcclary        0.003 62.407   4664
+marler         0.003 62.410   4665
+kish           0.003 62.412   4666
+judkins        0.003 62.415   4667
+gilbreath      0.003 62.417   4668
+freese         0.003 62.420   4669
+flanigan       0.003 62.423   4670
+felts          0.003 62.425   4671
+erdmann        0.003 62.428   4672
+dodds          0.003 62.430   4673
+chew           0.003 62.433   4674
+brownell       0.003 62.435   4675
+brazil         0.003 62.438   4676
+boatright      0.003 62.440   4677
+barreto        0.003 62.443   4678
+slayton        0.003 62.446   4679
+sandberg       0.003 62.448   4680
+saldivar       0.003 62.451   4681
+pettway        0.003 62.453   4682
+odum           0.003 62.456   4683
+narvaez        0.003 62.458   4684
+moultrie       0.003 62.461   4685
+montemayor     0.003 62.463   4686
+merrell        0.003 62.466   4687
+lees           0.003 62.468   4688
+keyser         0.003 62.471   4689
+hoke           0.003 62.474   4690
+hardaway       0.003 62.476   4691
+hannan         0.003 62.479   4692
+gilbertson     0.003 62.481   4693
+fogg           0.003 62.484   4694
+dumont         0.003 62.486   4695
+deberry        0.003 62.489   4696
+coggins        0.003 62.491   4697
+carrera        0.003 62.494   4698
+buxton         0.003 62.496   4699
+bucher         0.003 62.499   4700
+broadnax       0.003 62.502   4701
+beeson         0.003 62.504   4702
+araujo         0.003 62.507   4703
+appleton       0.003 62.509   4704
+amundson       0.003 62.512   4705
+aguayo         0.003 62.514   4706
+ackley         0.003 62.517   4707
+yocum          0.003 62.519   4708
+worsham        0.003 62.522   4709
+shivers        0.003 62.524   4710
+shelly         0.003 62.527   4711
+sanches        0.003 62.529   4712
+sacco          0.003 62.532   4713
+robey          0.003 62.535   4714
+rhoden         0.003 62.537   4715
+pender         0.003 62.540   4716
+ochs           0.003 62.542   4717
+mccurry        0.003 62.545   4718
+madera         0.003 62.547   4719
+luong          0.003 62.550   4720
+luis           0.003 62.552   4721
+knotts         0.003 62.555   4722
+jackman        0.003 62.557   4723
+heinrich       0.003 62.560   4724
+hargrave       0.003 62.562   4725
+gault          0.003 62.565   4726
+forest         0.003 62.567   4727
+comeaux        0.003 62.570   4728
+chitwood       0.003 62.572   4729
+child          0.003 62.575   4730
+caraway        0.003 62.577   4731
+boettcher      0.003 62.580   4732
+bernhardt      0.003 62.583   4733
+barrientos     0.003 62.585   4734
+zink           0.003 62.588   4735
+wickham        0.003 62.590   4736
+whiteman       0.003 62.593   4737
+thorp          0.003 62.595   4738
+stillman       0.003 62.598   4739
+settles        0.003 62.600   4740
+schoonover     0.003 62.603   4741
+roque          0.003 62.605   4742
+riddell        0.003 62.608   4743
+rey            0.003 62.610   4744
+pilcher        0.003 62.613   4745
+phifer         0.003 62.615   4746
+novotny        0.003 62.618   4747
+maple          0.003 62.620   4748
+macleod        0.003 62.623   4749
+hardee         0.003 62.625   4750
+haase          0.003 62.628   4751
+grider         0.003 62.630   4752
+fredrick       0.003 62.633   4753
+earnest        0.003 62.635   4754
+doucette       0.003 62.638   4755
+clausen        0.003 62.640   4756
+christmas      0.003 62.643   4757
+bevins         0.003 62.645   4758
+beamon         0.003 62.648   4759
+badillo        0.003 62.650   4760
+tolley         0.002 62.653   4761
+tindall        0.002 62.655   4762
+soule          0.002 62.658   4763
+snook          0.002 62.660   4764
+sebastian      0.002 62.663   4765
+seale          0.002 62.665   4766
+pitcher        0.002 62.668   4767
+pinkney        0.002 62.670   4768
+pellegrino     0.002 62.673   4769
+nowell         0.002 62.675   4770
+nemeth         0.002 62.678   4771
+nail           0.002 62.680   4772
+mondragon      0.002 62.683   4773
+mclane         0.002 62.685   4774
+lundgren       0.002 62.688   4775
+ingalls        0.002 62.690   4776
+hudspeth       0.002 62.693   4777
+hixson         0.002 62.695   4778
+gearhart       0.002 62.698   4779
+furlong        0.002 62.700   4780
+downes         0.002 62.703   4781
+dionne         0.002 62.705   4782
+dibble         0.002 62.708   4783
+deyoung        0.002 62.710   4784
+cornejo        0.002 62.713   4785
+camara         0.002 62.715   4786
+brookshire     0.002 62.718   4787
+boyette        0.002 62.720   4788
+wolcott        0.002 62.723   4789
+tracey         0.002 62.725   4790
+surratt        0.002 62.728   4791
+sellars        0.002 62.730   4792
+segal          0.002 62.733   4793
+salyer         0.002 62.735   4794
+reeve          0.002 62.738   4795
+rausch         0.002 62.740   4796
+philips        0.002 62.743   4797
+labonte        0.002 62.745   4798
+haro           0.002 62.748   4799
+gower          0.002 62.750   4800
+freeland       0.002 62.753   4801
+fawcett        0.002 62.755   4802
+eads           0.002 62.757   4803
+driggers       0.002 62.760   4804
+donley         0.002 62.762   4805
+collett        0.002 62.765   4806
+cage           0.002 62.767   4807
+bromley        0.002 62.770   4808
+boatman        0.002 62.772   4809
+ballinger      0.002 62.775   4810
+baldridge      0.002 62.777   4811
+volz           0.002 62.780   4812
+trombley       0.002 62.782   4813
+stonge         0.002 62.785   4814
+silas          0.002 62.787   4815
+shanahan       0.002 62.790   4816
+rivard         0.002 62.792   4817
+rhyne          0.002 62.795   4818
+pedroza        0.002 62.797   4819
+matias         0.002 62.799   4820
+mallard        0.002 62.802   4821
+jamieson       0.002 62.804   4822
+hedgepeth      0.002 62.807   4823
+hartnett       0.002 62.809   4824
+estevez        0.002 62.812   4825
+eskridge       0.002 62.814   4826
+denman         0.002 62.817   4827
+chiu           0.002 62.819   4828
+chinn          0.002 62.822   4829
+catlett        0.002 62.824   4830
+carmack        0.002 62.827   4831
+buie           0.002 62.829   4832
+book           0.002 62.832   4833
+bechtel        0.002 62.834   4834
+beardsley      0.002 62.836   4835
+bard           0.002 62.839   4836
+ballou         0.002 62.841   4837
+windsor        0.002 62.844   4838
+ulmer          0.002 62.846   4839
+storm          0.002 62.849   4840
+skeen          0.002 62.851   4841
+robledo        0.002 62.854   4842
+rincon         0.002 62.856   4843
+reitz          0.002 62.859   4844
+piazza         0.002 62.861   4845
+pearl          0.002 62.863   4846
+munger         0.002 62.866   4847
+moten          0.002 62.868   4848
+mcmichael      0.002 62.871   4849
+loftus         0.002 62.873   4850
+ledet          0.002 62.876   4851
+kersey         0.002 62.878   4852
+groff          0.002 62.881   4853
+fowlkes        0.002 62.883   4854
+folk           0.002 62.885   4855
+crumpton       0.002 62.888   4856
+collette       0.002 62.890   4857
+clouse         0.002 62.893   4858
+bettis         0.002 62.895   4859
+villagomez     0.002 62.898   4860
+timmerman      0.002 62.900   4861
+strom          0.002 62.903   4862
+saul           0.002 62.905   4863
+santoro        0.002 62.907   4864
+roddy          0.002 62.910   4865
+phillip        0.002 62.912   4866
+penrod         0.002 62.915   4867
+musselman      0.002 62.917   4868
+macpherson     0.002 62.920   4869
+leboeuf        0.002 62.922   4870
+harless        0.002 62.924   4871
+haddad         0.002 62.927   4872
+guido          0.002 62.929   4873
+golding        0.002 62.932   4874
+fulkerson      0.002 62.934   4875
+fannin         0.002 62.937   4876
+dulaney        0.002 62.939   4877
+dowdell        0.002 62.941   4878
+deane          0.002 62.944   4879
+cottle         0.002 62.946   4880
+ceja           0.002 62.949   4881
+cate           0.002 62.951   4882
+bosley         0.002 62.954   4883
+benge          0.002 62.956   4884
+albritton      0.002 62.958   4885
+voigt          0.002 62.961   4886
+trowbridge     0.002 62.963   4887
+soileau        0.002 62.966   4888
+seely          0.002 62.968   4889
+rome           0.002 62.971   4890
+rohde          0.002 62.973   4891
+pearsall       0.002 62.975   4892
+paulk          0.002 62.978   4893
+orth           0.002 62.980   4894
+nason          0.002 62.983   4895
+mota           0.002 62.985   4896
+mcmullin       0.002 62.987   4897
+marquardt      0.002 62.990   4898
+madigan        0.002 62.992   4899
+hoag           0.002 62.995   4900
+gillum         0.002 62.997   4901
+gayle          0.002 63.000   4902
+gabbard        0.002 63.002   4903
+fenwick        0.002 63.004   4904
+fender         0.002 63.007   4905
+eck            0.002 63.009   4906
+danforth       0.002 63.012   4907
+cushing        0.002 63.014   4908
+cress          0.002 63.016   4909
+creed          0.002 63.019   4910
+cazares        0.002 63.021   4911
+casanova       0.002 63.024   4912
+bey            0.002 63.026   4913
+bettencourt    0.002 63.029   4914
+barringer      0.002 63.031   4915
+baber          0.002 63.033   4916
+stansberry     0.002 63.036   4917
+schramm        0.002 63.038   4918
+rutter         0.002 63.041   4919
+rivero         0.002 63.043   4920
+race           0.002 63.045   4921
+oquendo        0.002 63.048   4922
+necaise        0.002 63.050   4923
+mouton         0.002 63.053   4924
+montenegro     0.002 63.055   4925
+miley          0.002 63.057   4926
+mcgough        0.002 63.060   4927
+marra          0.002 63.062   4928
+macmillan      0.002 63.065   4929
+lock           0.002 63.067   4930
+lamontagne     0.002 63.069   4931
+jasso          0.002 63.072   4932
+jaime          0.002 63.074   4933
+horst          0.002 63.077   4934
+hetrick        0.002 63.079   4935
+heilman        0.002 63.081   4936
+gaytan         0.002 63.084   4937
+gall           0.002 63.086   4938
+fried          0.002 63.089   4939
+fortney        0.002 63.091   4940
+eden           0.002 63.093   4941
+dingle         0.002 63.096   4942
+desjardins     0.002 63.098   4943
+dabbs          0.002 63.101   4944
+burbank        0.002 63.103   4945
+brigham        0.002 63.105   4946
+breland        0.002 63.108   4947
+beaman         0.002 63.110   4948
+banner         0.002 63.113   4949
+arriola        0.002 63.115   4950
+yarborough     0.002 63.117   4951
+wallin         0.002 63.120   4952
+treat          0.002 63.122   4953
+toscano        0.002 63.125   4954
+stowers        0.002 63.127   4955
+reiss          0.002 63.129   4956
+pichardo       0.002 63.132   4957
+orton          0.002 63.134   4958
+mitchel        0.002 63.136   4959
+michels        0.002 63.139   4960
+mcnamee        0.002 63.141   4961
+mccrory        0.002 63.144   4962
+leatherman     0.002 63.146   4963
+kell           0.002 63.148   4964
+keister        0.002 63.151   4965
+jerome         0.002 63.153   4966
+horning        0.002 63.156   4967
+hargett        0.002 63.158   4968
+guay           0.002 63.160   4969
+friday         0.002 63.163   4970
+ferro          0.002 63.165   4971
+deboer         0.002 63.167   4972
+dagostino      0.002 63.170   4973
+clemente       0.002 63.172   4974
+christ         0.002 63.175   4975
+carper         0.002 63.177   4976
+bowler         0.002 63.179   4977
+blanks         0.002 63.182   4978
+beaudry        0.002 63.184   4979
+willie         0.002 63.187   4980
+towle          0.002 63.189   4981
+tafoya         0.002 63.191   4982
+stricklin      0.002 63.194   4983
+strader        0.002 63.196   4984
+soper          0.002 63.198   4985
+sonnier        0.002 63.201   4986
+sigmon         0.002 63.203   4987
+schenk         0.002 63.205   4988
+saddler        0.002 63.208   4989
+rodman         0.002 63.210   4990
+pedigo         0.002 63.213   4991
+mendes         0.002 63.215   4992
+lunn           0.002 63.217   4993
+lohr           0.002 63.220   4994
+lahr           0.002 63.222   4995
+kingsbury      0.002 63.224   4996
+jarman         0.002 63.227   4997
+hume           0.002 63.229   4998
+holliman       0.002 63.232   4999
+hofmann        0.002 63.234   5000
+
diff --git a/utils/data-generators/barnum/source-data/latin-words.txt b/utils/data-generators/barnum/source-data/latin-words.txt
new file mode 100755
index 0000000..878a53b
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/latin-words.txt
@@ -0,0 +1,132 @@
+lorem
+ipsum
+dolor
+sit
+amet
+consectetuer
+adipiscing
+elitsed
+diam
+nonummy
+nibh
+euismod
+tincidunt
+ut
+laoreet
+doloremagna
+aliquam
+erat
+volutpat
+ut
+wisi
+enim
+ad
+minim
+veniamquis
+nostrud
+exerci
+tation
+ullamcorper
+suscipit
+lobortis
+nislut
+aliquip
+ex
+ea
+commodo
+consequat
+duis
+autem
+vel
+eum
+iriuredolor
+in
+hendrerit
+in
+vulputate
+velit
+esse
+molestie
+consequatvel
+illum
+dolore
+eu
+feugiat
+nulla
+facilisis
+at
+vero
+eros
+etaccumsan
+et
+iusto
+odio
+dignissim
+qui
+blandit
+praesent
+luptatumzzril
+delenit
+augue
+duis
+dolore
+te
+feugait
+nulla
+facilisi
+Utwisi
+enim
+ad
+minim
+veniam
+quis
+nostrud
+exerci
+tationullamcorper
+suscipit
+lobortis
+nisl
+ut
+aliquip
+ex
+ea
+commodoconsequat
+duis
+autem
+vel
+eum
+iriure
+dolor
+in
+hendrerit
+invulputate
+velit
+esse
+molestie
+consequat
+vel
+illum
+dolore
+eufeugiat
+nulla
+facilisis
+at
+vero
+eros
+et
+accumsan
+et
+iustoodio
+dignissim
+qui
+blandit
+praesent
+luptatum
+zzril
+delenitaugue
+duis
+dolore
+te
+feugait
+nulla
+facilisi
\ No newline at end of file
diff --git a/utils/data-generators/barnum/source-data/male-first-name.txt b/utils/data-generators/barnum/source-data/male-first-name.txt
new file mode 100755
index 0000000..5897d00
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/male-first-name.txt
@@ -0,0 +1,1219 @@
+james          3.318  3.318      1
+john           3.271  6.589      2
+robert         3.143  9.732      3
+michael        2.629 12.361      4
+william        2.451 14.812      5
+david          2.363 17.176      6
+richard        1.703 18.878      7
+charles        1.523 20.401      8
+joseph         1.404 21.805      9
+thomas         1.380 23.185     10
+christopher    1.035 24.220     11
+daniel         0.974 25.194     12
+paul           0.948 26.142     13
+mark           0.938 27.081     14
+donald         0.931 28.012     15
+george         0.927 28.939     16
+kenneth        0.826 29.766     17
+steven         0.780 30.546     18
+edward         0.779 31.325     19
+brian          0.736 32.061     20
+ronald         0.725 32.787     21
+anthony        0.721 33.508     22
+kevin          0.671 34.179     23
+jason          0.660 34.839     24
+matthew        0.657 35.496     25
+gary           0.650 36.147     26
+timothy        0.640 36.786     27
+jose           0.613 37.399     28
+larry          0.598 37.997     29
+jeffrey        0.591 38.588     30
+frank          0.581 39.169     31
+scott          0.546 39.715     32
+eric           0.544 40.259     33
+stephen        0.540 40.799     34
+andrew         0.537 41.335     35
+raymond        0.488 41.824     36
+gregory        0.441 42.265     37
+joshua         0.435 42.700     38
+jerry          0.432 43.132     39
+dennis         0.415 43.547     40
+walter         0.399 43.946     41
+patrick        0.389 44.335     42
+peter          0.381 44.716     43
+harold         0.371 45.087     44
+douglas        0.367 45.454     45
+henry          0.365 45.819     46
+carl           0.346 46.165     47
+arthur         0.335 46.500     48
+ryan           0.328 46.828     49
+roger          0.322 47.150     50
+joe            0.321 47.471     51
+juan           0.316 47.786     52
+jack           0.315 48.102     53
+albert         0.314 48.415     54
+jonathan       0.313 48.729     55
+justin         0.311 49.040     56
+terry          0.311 49.351     57
+gerald         0.309 49.660     58
+keith          0.308 49.968     59
+samuel         0.306 50.274     60
+willie         0.302 50.576     61
+ralph          0.282 50.859     62
+lawrence       0.282 51.141     63
+nicholas       0.275 51.415     64
+roy            0.273 51.688     65
+benjamin       0.270 51.958     66
+bruce          0.263 52.221     67
+brandon        0.260 52.480     68
+adam           0.259 52.740     69
+harry          0.251 52.991     70
+fred           0.251 53.241     71
+wayne          0.249 53.490     72
+billy          0.248 53.738     73
+steve          0.246 53.984     74
+louis          0.243 54.227     75
+jeremy         0.242 54.469     76
+aaron          0.240 54.710     77
+randy          0.232 54.942     78
+howard         0.230 55.172     79
+eugene         0.230 55.402     80
+carlos         0.229 55.630     81
+russell        0.224 55.854     82
+bobby          0.223 56.077     83
+victor         0.222 56.299     84
+martin         0.216 56.515     85
+ernest         0.215 56.730     86
+phillip        0.213 56.942     87
+todd           0.213 57.155     88
+jesse          0.209 57.364     89
+craig          0.206 57.570     90
+alan           0.204 57.774     91
+shawn          0.200 57.973     92
+clarence       0.197 58.170     93
+sean           0.197 58.368     94
+philip         0.197 58.565     95
+chris          0.197 58.761     96
+johnny         0.195 58.957     97
+earl           0.193 59.149     98
+jimmy          0.191 59.340     99
+antonio        0.190 59.531    100
+danny          0.190 59.720    101
+bryan          0.190 59.910    102
+tony           0.190 60.100    103
+luis           0.189 60.289    104
+mike           0.189 60.478    105
+stanley        0.186 60.665    106
+leonard        0.186 60.850    107
+nathan         0.185 61.035    108
+dale           0.184 61.219    109
+manuel         0.181 61.400    110
+rodney         0.180 61.581    111
+curtis         0.180 61.761    112
+norman         0.177 61.938    113
+allen          0.174 62.112    114
+marvin         0.171 62.283    115
+vincent        0.168 62.450    116
+glenn          0.167 62.617    117
+jeffery        0.166 62.783    118
+travis         0.166 62.949    119
+jeff           0.166 63.114    120
+chad           0.165 63.279    121
+jacob          0.165 63.444    122
+lee            0.162 63.606    123
+melvin         0.162 63.768    124
+alfred         0.162 63.930    125
+kyle           0.160 64.090    126
+francis        0.160 64.250    127
+bradley        0.159 64.409    128
+jesus          0.155 64.564    129
+herbert        0.155 64.719    130
+frederick      0.154 64.873    131
+ray            0.153 65.026    132
+joel           0.152 65.177    133
+edwin          0.148 65.326    134
+don            0.145 65.471    135
+eddie          0.144 65.615    136
+ricky          0.141 65.756    137
+troy           0.138 65.895    138
+randall        0.138 66.032    139
+barry          0.134 66.167    140
+alexander      0.132 66.299    141
+bernard        0.127 66.427    142
+mario          0.125 66.552    143
+leroy          0.125 66.676    144
+francisco      0.124 66.801    145
+marcus         0.124 66.925    146
+micheal        0.123 67.048    147
+theodore       0.123 67.171    148
+clifford       0.123 67.293    149
+miguel         0.122 67.415    150
+oscar          0.122 67.538    151
+jay            0.118 67.656    152
+jim            0.118 67.773    153
+tom            0.117 67.890    154
+calvin         0.115 68.006    155
+alex           0.115 68.120    156
+jon            0.115 68.235    157
+ronnie         0.113 68.348    158
+bill           0.112 68.461    159
+lloyd          0.112 68.573    160
+tommy          0.112 68.685    161
+leon           0.112 68.797    162
+derek          0.112 68.908    163
+warren         0.110 69.018    164
+darrell        0.108 69.126    165
+jerome         0.108 69.234    166
+floyd          0.107 69.340    167
+leo            0.106 69.446    168
+alvin          0.105 69.551    169
+tim            0.104 69.656    170
+wesley         0.104 69.760    171
+gordon         0.104 69.864    172
+dean           0.104 69.968    173
+greg           0.104 70.071    174
+jorge          0.104 70.175    175
+dustin         0.103 70.278    176
+pedro          0.103 70.381    177
+derrick        0.103 70.484    178
+dan            0.101 70.585    179
+lewis          0.099 70.684    180
+zachary        0.099 70.782    181
+corey          0.098 70.880    182
+herman         0.097 70.977    183
+maurice        0.097 71.074    184
+vernon         0.097 71.171    185
+roberto        0.097 71.268    186
+clyde          0.095 71.363    187
+glen           0.094 71.457    188
+hector         0.094 71.551    189
+shane          0.093 71.645    190
+ricardo        0.093 71.738    191
+sam            0.092 71.830    192
+rick           0.091 71.921    193
+lester         0.091 72.011    194
+brent          0.090 72.102    195
+ramon          0.090 72.192    196
+charlie        0.090 72.281    197
+tyler          0.089 72.371    198
+gilbert        0.089 72.460    199
+gene           0.087 72.547    200
+marc           0.087 72.634    201
+reginald       0.084 72.717    202
+ruben          0.082 72.800    203
+brett          0.082 72.882    204
+angel          0.082 72.964    205
+nathaniel      0.081 73.045    206
+rafael         0.081 73.126    207
+leslie         0.081 73.207    208
+edgar          0.080 73.287    209
+milton         0.080 73.367    210
+raul           0.079 73.446    211
+ben            0.078 73.524    212
+chester        0.078 73.602    213
+cecil          0.078 73.680    214
+duane          0.077 73.757    215
+franklin       0.077 73.834    216
+andre          0.076 73.910    217
+elmer          0.074 73.984    218
+brad           0.073 74.057    219
+gabriel        0.073 74.130    220
+ron            0.072 74.202    221
+mitchell       0.072 74.274    222
+roland         0.072 74.347    223
+arnold         0.072 74.419    224
+harvey         0.072 74.491    225
+jared          0.071 74.562    226
+adrian         0.069 74.631    227
+karl           0.069 74.699    228
+cory           0.068 74.767    229
+claude         0.068 74.835    230
+erik           0.068 74.903    231
+darryl         0.067 74.970    232
+jamie          0.066 75.037    233
+neil           0.066 75.102    234
+jessie         0.065 75.168    235
+christian      0.065 75.233    236
+javier         0.065 75.297    237
+fernando       0.065 75.362    238
+clinton        0.065 75.427    239
+ted            0.064 75.491    240
+mathew         0.064 75.555    241
+tyrone         0.064 75.619    242
+darren         0.064 75.683    243
+lonnie         0.064 75.746    244
+lance          0.063 75.810    245
+cody           0.063 75.873    246
+julio          0.063 75.936    247
+kelly          0.063 75.998    248
+kurt           0.062 76.061    249
+allan          0.061 76.122    250
+nelson         0.061 76.182    251
+guy            0.060 76.243    252
+clayton        0.060 76.303    253
+hugh           0.060 76.363    254
+max            0.059 76.421    255
+dwayne         0.059 76.480    256
+dwight         0.058 76.538    257
+armando        0.058 76.596    258
+felix          0.058 76.654    259
+jimmie         0.058 76.711    260
+everett        0.057 76.768    261
+jordan         0.056 76.824    262
+ian            0.056 76.880    263
+wallace        0.056 76.936    264
+ken            0.055 76.991    265
+bob            0.055 77.047    266
+jaime          0.055 77.102    267
+casey          0.054 77.156    268
+alfredo        0.054 77.210    269
+alberto        0.053 77.263    270
+dave           0.053 77.316    271
+ivan           0.053 77.369    272
+johnnie        0.052 77.421    273
+sidney         0.052 77.474    274
+byron          0.052 77.526    275
+julian         0.052 77.578    276
+isaac          0.051 77.629    277
+morris         0.051 77.680    278
+clifton        0.050 77.730    279
+willard        0.050 77.780    280
+daryl          0.050 77.831    281
+ross           0.050 77.880    282
+virgil         0.049 77.929    283
+andy           0.049 77.979    284
+marshall       0.049 78.028    285
+salvador       0.049 78.077    286
+perry          0.049 78.126    287
+kirk           0.049 78.175    288
+sergio         0.049 78.224    289
+marion         0.048 78.272    290
+tracy          0.048 78.320    291
+seth           0.048 78.368    292
+kent           0.048 78.416    293
+terrance       0.048 78.464    294
+rene           0.048 78.512    295
+eduardo        0.047 78.559    296
+terrence       0.047 78.606    297
+enrique        0.046 78.652    298
+freddie        0.046 78.698    299
+wade           0.045 78.743    300
+austin         0.044 78.786    301
+stuart         0.044 78.830    302
+fredrick       0.043 78.873    303
+arturo         0.043 78.917    304
+alejandro      0.043 78.960    305
+jackie         0.043 79.002    306
+joey           0.043 79.045    307
+nick           0.043 79.088    308
+luther         0.043 79.130    309
+wendell        0.042 79.172    310
+jeremiah       0.042 79.215    311
+evan           0.042 79.257    312
+julius         0.042 79.298    313
+dana           0.042 79.340    314
+donnie         0.041 79.381    315
+otis           0.041 79.422    316
+shannon        0.040 79.462    317
+trevor         0.040 79.503    318
+oliver         0.040 79.543    319
+luke           0.040 79.583    320
+homer          0.040 79.623    321
+gerard         0.040 79.663    322
+doug           0.040 79.703    323
+kenny          0.039 79.742    324
+hubert         0.039 79.782    325
+angelo         0.039 79.821    326
+shaun          0.039 79.859    327
+lyle           0.038 79.898    328
+matt           0.038 79.936    329
+lynn           0.038 79.974    330
+alfonso        0.038 80.012    331
+orlando        0.037 80.049    332
+rex            0.037 80.086    333
+carlton        0.037 80.123    334
+ernesto        0.037 80.160    335
+cameron        0.037 80.197    336
+neal           0.037 80.233    337
+pablo          0.036 80.270    338
+lorenzo        0.036 80.306    339
+omar           0.036 80.342    340
+wilbur         0.036 80.378    341
+blake          0.036 80.414    342
+grant          0.036 80.450    343
+horace         0.036 80.486    344
+roderick       0.036 80.521    345
+kerry          0.036 80.557    346
+abraham        0.035 80.592    347
+willis         0.035 80.627    348
+rickey         0.035 80.662    349
+jean           0.035 80.696    350
+ira            0.035 80.731    351
+andres         0.034 80.766    352
+cesar          0.034 80.800    353
+johnathan      0.034 80.834    354
+malcolm        0.034 80.868    355
+rudolph        0.034 80.902    356
+damon          0.034 80.936    357
+kelvin         0.034 80.970    358
+rudy           0.034 81.004    359
+preston        0.034 81.037    360
+alton          0.033 81.071    361
+archie         0.033 81.104    362
+marco          0.033 81.137    363
+wm             0.033 81.170    364
+pete           0.032 81.202    365
+randolph       0.032 81.234    366
+garry          0.032 81.267    367
+geoffrey       0.032 81.299    368
+jonathon       0.032 81.331    369
+felipe         0.032 81.363    370
+bennie         0.032 81.395    371
+gerardo        0.032 81.427    372
+ed             0.032 81.458    373
+dominic        0.032 81.490    374
+robin          0.032 81.522    375
+loren          0.032 81.553    376
+delbert        0.031 81.585    377
+colin          0.031 81.616    378
+guillermo      0.031 81.647    379
+earnest        0.031 81.678    380
+lucas          0.031 81.709    381
+benny          0.030 81.739    382
+noel           0.030 81.769    383
+spencer        0.030 81.799    384
+rodolfo        0.030 81.828    385
+myron          0.030 81.858    386
+edmund         0.030 81.887    387
+garrett        0.029 81.917    388
+salvatore      0.029 81.946    389
+cedric         0.029 81.975    390
+lowell         0.029 82.004    391
+gregg          0.029 82.032    392
+sherman        0.028 82.061    393
+wilson         0.028 82.089    394
+devin          0.028 82.117    395
+sylvester      0.028 82.145    396
+kim            0.028 82.173    397
+roosevelt      0.028 82.201    398
+israel         0.028 82.229    399
+jermaine       0.028 82.257    400
+forrest        0.027 82.284    401
+wilbert        0.027 82.310    402
+leland         0.027 82.337    403
+simon          0.026 82.363    404
+guadalupe      0.026 82.390    405
+clark          0.026 82.416    406
+irving         0.026 82.442    407
+carroll        0.026 82.468    408
+bryant         0.026 82.494    409
+owen           0.026 82.519    410
+rufus          0.025 82.545    411
+woodrow        0.025 82.570    412
+sammy          0.025 82.595    413
+kristopher     0.025 82.620    414
+mack           0.025 82.645    415
+levi           0.025 82.670    416
+marcos         0.025 82.695    417
+gustavo        0.025 82.720    418
+jake           0.025 82.744    419
+lionel         0.024 82.769    420
+marty          0.024 82.793    421
+taylor         0.024 82.817    422
+ellis          0.024 82.842    423
+dallas         0.024 82.866    424
+gilberto       0.024 82.890    425
+clint          0.024 82.914    426
+nicolas        0.024 82.938    427
+laurence       0.024 82.962    428
+ismael         0.024 82.985    429
+orville        0.024 83.009    430
+drew           0.024 83.033    431
+jody           0.024 83.056    432
+ervin          0.023 83.080    433
+dewey          0.023 83.103    434
+al             0.023 83.126    435
+wilfred        0.023 83.150    436
+josh           0.023 83.173    437
+hugo           0.023 83.196    438
+ignacio        0.023 83.219    439
+caleb          0.023 83.241    440
+tomas          0.023 83.264    441
+sheldon        0.023 83.287    442
+erick          0.023 83.310    443
+frankie        0.023 83.332    444
+stewart        0.022 83.354    445
+doyle          0.022 83.377    446
+darrel         0.022 83.399    447
+rogelio        0.022 83.421    448
+terence        0.022 83.443    449
+santiago       0.022 83.465    450
+alonzo         0.022 83.487    451
+elias          0.022 83.508    452
+bert           0.022 83.530    453
+elbert         0.022 83.552    454
+ramiro         0.022 83.573    455
+conrad         0.022 83.595    456
+pat            0.022 83.616    457
+noah           0.022 83.638    458
+grady          0.021 83.659    459
+phil           0.021 83.681    460
+cornelius      0.021 83.702    461
+lamar          0.021 83.723    462
+rolando        0.021 83.744    463
+clay           0.021 83.765    464
+percy          0.021 83.786    465
+dexter         0.021 83.806    466
+bradford       0.021 83.827    467
+merle          0.021 83.848    468
+darin          0.020 83.868    469
+amos           0.020 83.888    470
+terrell        0.020 83.909    471
+moses          0.020 83.929    472
+irvin          0.020 83.949    473
+saul           0.020 83.968    474
+roman          0.020 83.988    475
+darnell        0.020 84.008    476
+randal         0.020 84.027    477
+tommie         0.020 84.047    478
+timmy          0.019 84.066    479
+darrin         0.019 84.086    480
+winston        0.019 84.105    481
+brendan        0.019 84.124    482
+toby           0.019 84.144    483
+van            0.019 84.163    484
+abel           0.019 84.182    485
+dominick       0.019 84.201    486
+boyd           0.019 84.220    487
+courtney       0.019 84.240    488
+jan            0.019 84.259    489
+emilio         0.019 84.277    490
+elijah         0.019 84.296    491
+cary           0.019 84.315    492
+domingo        0.019 84.334    493
+santos         0.019 84.353    494
+aubrey         0.019 84.372    495
+emmett         0.019 84.390    496
+marlon         0.019 84.409    497
+emanuel        0.019 84.428    498
+jerald         0.019 84.446    499
+edmond         0.019 84.465    500
+emil           0.019 84.483    501
+dewayne        0.018 84.502    502
+will           0.018 84.520    503
+otto           0.018 84.538    504
+teddy          0.018 84.556    505
+reynaldo       0.018 84.574    506
+bret           0.018 84.592    507
+morgan         0.018 84.610    508
+jess           0.018 84.628    509
+trent          0.018 84.646    510
+humberto       0.018 84.664    511
+emmanuel       0.018 84.681    512
+stephan        0.018 84.699    513
+louie          0.018 84.717    514
+vicente        0.017 84.734    515
+lamont         0.017 84.751    516
+stacy          0.017 84.769    517
+garland        0.017 84.786    518
+miles          0.017 84.803    519
+micah          0.017 84.820    520
+efrain         0.017 84.837    521
+billie         0.017 84.854    522
+logan          0.017 84.871    523
+heath          0.017 84.887    524
+rodger         0.017 84.904    525
+harley         0.017 84.921    526
+demetrius      0.017 84.937    527
+ethan          0.017 84.954    528
+eldon          0.017 84.970    529
+rocky          0.016 84.987    530
+pierre         0.016 85.003    531
+junior         0.016 85.020    532
+freddy         0.016 85.036    533
+eli            0.016 85.052    534
+bryce          0.016 85.068    535
+antoine        0.016 85.084    536
+robbie         0.016 85.100    537
+kendall        0.016 85.116    538
+royce          0.016 85.132    539
+sterling       0.016 85.148    540
+mickey         0.016 85.164    541
+chase          0.016 85.180    542
+grover         0.016 85.196    543
+elton          0.016 85.212    544
+cleveland      0.016 85.228    545
+dylan          0.016 85.243    546
+chuck          0.016 85.259    547
+damian         0.016 85.274    548
+reuben         0.015 85.290    549
+stan           0.015 85.305    550
+august         0.015 85.321    551
+leonardo       0.015 85.336    552
+jasper         0.015 85.351    553
+russel         0.015 85.367    554
+erwin          0.015 85.382    555
+benito         0.015 85.397    556
+hans           0.015 85.412    557
+monte          0.015 85.427    558
+blaine         0.015 85.442    559
+ernie          0.015 85.456    560
+curt           0.015 85.471    561
+quentin        0.015 85.486    562
+agustin        0.015 85.500    563
+murray         0.015 85.515    564
+jamal          0.014 85.529    565
+devon          0.014 85.544    566
+adolfo         0.014 85.558    567
+harrison       0.014 85.573    568
+tyson          0.014 85.587    569
+burton         0.014 85.601    570
+brady          0.014 85.616    571
+elliott        0.014 85.630    572
+wilfredo       0.014 85.644    573
+bart           0.014 85.658    574
+jarrod         0.014 85.672    575
+vance          0.014 85.686    576
+denis          0.014 85.700    577
+damien         0.014 85.714    578
+joaquin        0.014 85.728    579
+harlan         0.014 85.742    580
+desmond        0.014 85.756    581
+elliot         0.014 85.770    582
+darwin         0.014 85.783    583
+ashley         0.014 85.797    584
+gregorio       0.014 85.811    585
+buddy          0.014 85.824    586
+xavier         0.013 85.838    587
+kermit         0.013 85.851    588
+roscoe         0.013 85.865    589
+esteban        0.013 85.878    590
+anton          0.013 85.891    591
+solomon        0.013 85.904    592
+scotty         0.013 85.917    593
+norbert        0.013 85.930    594
+elvin          0.013 85.943    595
+williams       0.013 85.956    596
+nolan          0.013 85.969    597
+carey          0.013 85.982    598
+rod            0.013 85.994    599
+quinton        0.013 86.007    600
+hal            0.013 86.020    601
+brain          0.013 86.033    602
+rob            0.013 86.045    603
+elwood         0.013 86.058    604
+kendrick       0.013 86.070    605
+darius         0.013 86.083    606
+moises         0.013 86.096    607
+son            0.012 86.108    608
+marlin         0.012 86.120    609
+fidel          0.012 86.133    610
+thaddeus       0.012 86.145    611
+cliff          0.012 86.158    612
+marcel         0.012 86.170    613
+ali            0.012 86.182    614
+jackson        0.012 86.195    615
+raphael        0.012 86.207    616
+bryon          0.012 86.219    617
+armand         0.012 86.231    618
+alvaro         0.012 86.244    619
+jeffry         0.012 86.256    620
+dane           0.012 86.268    621
+joesph         0.012 86.280    622
+thurman        0.012 86.292    623
+ned            0.012 86.304    624
+sammie         0.012 86.316    625
+rusty          0.012 86.328    626
+michel         0.012 86.339    627
+monty          0.012 86.351    628
+rory           0.012 86.363    629
+fabian         0.012 86.374    630
+reggie         0.012 86.386    631
+mason          0.012 86.397    632
+graham         0.012 86.409    633
+kris           0.011 86.420    634
+isaiah         0.011 86.432    635
+vaughn         0.011 86.443    636
+gus            0.011 86.454    637
+avery          0.011 86.466    638
+loyd           0.011 86.477    639
+diego          0.011 86.488    640
+alexis         0.011 86.499    641
+adolph         0.011 86.511    642
+norris         0.011 86.522    643
+millard        0.011 86.533    644
+rocco          0.011 86.544    645
+gonzalo        0.011 86.555    646
+derick         0.011 86.566    647
+rodrigo        0.011 86.577    648
+gerry          0.011 86.588    649
+stacey         0.011 86.599    650
+carmen         0.011 86.610    651
+wiley          0.011 86.621    652
+rigoberto      0.011 86.632    653
+alphonso       0.011 86.643    654
+ty             0.011 86.654    655
+shelby         0.011 86.664    656
+rickie         0.011 86.675    657
+noe            0.011 86.686    658
+vern           0.010 86.696    659
+bobbie         0.010 86.707    660
+reed           0.010 86.717    661
+jefferson      0.010 86.727    662
+elvis          0.010 86.738    663
+bernardo       0.010 86.748    664
+mauricio       0.010 86.758    665
+hiram          0.010 86.768    666
+donovan        0.010 86.778    667
+basil          0.010 86.789    668
+riley          0.010 86.799    669
+ollie          0.010 86.809    670
+nickolas       0.010 86.819    671
+maynard        0.010 86.829    672
+scot           0.010 86.840    673
+vince          0.010 86.850    674
+quincy         0.010 86.860    675
+eddy           0.010 86.870    676
+sebastian      0.010 86.880    677
+federico       0.010 86.890    678
+ulysses        0.010 86.900    679
+heriberto      0.010 86.910    680
+donnell        0.010 86.920    681
+cole           0.010 86.929    682
+denny          0.010 86.939    683
+davis          0.010 86.949    684
+gavin          0.010 86.959    685
+emery          0.010 86.969    686
+ward           0.010 86.979    687
+romeo          0.010 86.989    688
+jayson         0.010 86.998    689
+dion           0.010 87.008    690
+dante          0.010 87.018    691
+clement        0.010 87.028    692
+coy            0.010 87.037    693
+odell          0.010 87.047    694
+maxwell        0.010 87.057    695
+jarvis         0.010 87.066    696
+bruno          0.010 87.076    697
+issac          0.010 87.086    698
+mary           0.009 87.095    699
+dudley         0.009 87.104    700
+brock          0.009 87.114    701
+sanford        0.009 87.123    702
+colby          0.009 87.133    703
+carmelo        0.009 87.142    704
+barney         0.009 87.152    705
+nestor         0.009 87.161    706
+hollis         0.009 87.170    707
+stefan         0.009 87.180    708
+donny          0.009 87.189    709
+art            0.009 87.198    710
+linwood        0.009 87.208    711
+beau           0.009 87.217    712
+weldon         0.009 87.226    713
+galen          0.009 87.235    714
+isidro         0.009 87.244    715
+truman         0.009 87.253    716
+delmar         0.009 87.262    717
+johnathon      0.009 87.271    718
+silas          0.009 87.280    719
+frederic       0.009 87.289    720
+dick           0.009 87.298    721
+kirby          0.009 87.307    722
+irwin          0.009 87.316    723
+cruz           0.009 87.325    724
+merlin         0.009 87.334    725
+merrill        0.009 87.343    726
+charley        0.009 87.351    727
+marcelino      0.009 87.360    728
+lane           0.009 87.369    729
+harris         0.009 87.378    730
+cleo           0.009 87.386    731
+carlo          0.009 87.395    732
+trenton        0.009 87.404    733
+kurtis         0.009 87.413    734
+hunter         0.009 87.421    735
+aurelio        0.009 87.430    736
+winfred        0.009 87.438    737
+vito           0.009 87.447    738
+collin         0.009 87.456    739
+denver         0.009 87.464    740
+carter         0.009 87.473    741
+leonel         0.008 87.481    742
+emory          0.008 87.490    743
+pasquale       0.008 87.498    744
+mohammad       0.008 87.506    745
+mariano        0.008 87.514    746
+danial         0.008 87.523    747
+blair          0.008 87.531    748
+landon         0.008 87.539    749
+dirk           0.008 87.548    750
+branden        0.008 87.556    751
+adan           0.008 87.564    752
+numbers        0.008 87.572    753
+clair          0.008 87.581    754
+buford         0.008 87.589    755
+german         0.008 87.597    756
+bernie         0.008 87.605    757
+wilmer         0.008 87.613    758
+joan           0.008 87.621    759
+emerson        0.008 87.629    760
+zachery        0.008 87.637    761
+fletcher       0.008 87.645    762
+jacques        0.008 87.653    763
+errol          0.008 87.661    764
+dalton         0.008 87.669    765
+monroe         0.008 87.676    766
+josue          0.008 87.684    767
+dominique      0.008 87.692    768
+edwardo        0.008 87.700    769
+booker         0.008 87.708    770
+wilford        0.008 87.715    771
+sonny          0.008 87.723    772
+shelton        0.008 87.731    773
+carson         0.008 87.739    774
+theron         0.008 87.746    775
+raymundo       0.008 87.754    776
+daren          0.008 87.762    777
+tristan        0.008 87.769    778
+houston        0.008 87.777    779
+robby          0.008 87.785    780
+lincoln        0.008 87.792    781
+jame           0.008 87.800    782
+genaro         0.008 87.807    783
+gale           0.008 87.815    784
+bennett        0.008 87.822    785
+octavio        0.008 87.830    786
+cornell        0.008 87.838    787
+laverne        0.008 87.845    788
+hung           0.008 87.853    789
+arron          0.008 87.860    790
+antony         0.008 87.868    791
+herschel       0.007 87.875    792
+alva           0.007 87.883    793
+giovanni       0.007 87.890    794
+garth          0.007 87.897    795
+cyrus          0.007 87.905    796
+cyril          0.007 87.912    797
+ronny          0.007 87.920    798
+stevie         0.007 87.927    799
+lon            0.007 87.934    800
+freeman        0.007 87.941    801
+erin           0.007 87.949    802
+duncan         0.007 87.956    803
+kennith        0.007 87.963    804
+carmine        0.007 87.970    805
+augustine      0.007 87.978    806
+young          0.007 87.985    807
+erich          0.007 87.992    808
+chadwick       0.007 87.999    809
+wilburn        0.007 88.006    810
+russ           0.007 88.013    811
+reid           0.007 88.021    812
+myles          0.007 88.028    813
+anderson       0.007 88.035    814
+morton         0.007 88.042    815
+jonas          0.007 88.049    816
+forest         0.007 88.056    817
+mitchel        0.007 88.063    818
+mervin         0.007 88.070    819
+zane           0.007 88.077    820
+rich           0.007 88.084    821
+jamel          0.007 88.091    822
+lazaro         0.007 88.098    823
+alphonse       0.007 88.105    824
+randell        0.007 88.112    825
+major          0.007 88.119    826
+johnie         0.007 88.126    827
+jarrett        0.007 88.133    828
+brooks         0.007 88.140    829
+ariel          0.007 88.147    830
+abdul          0.007 88.154    831
+dusty          0.007 88.161    832
+luciano        0.007 88.168    833
+lindsey        0.007 88.174    834
+tracey         0.007 88.181    835
+seymour        0.007 88.188    836
+scottie        0.007 88.195    837
+eugenio        0.007 88.202    838
+mohammed       0.007 88.208    839
+sandy          0.007 88.215    840
+valentin       0.007 88.222    841
+chance         0.007 88.228    842
+arnulfo        0.007 88.235    843
+lucien         0.007 88.242    844
+ferdinand      0.007 88.248    845
+thad           0.007 88.255    846
+ezra           0.007 88.262    847
+sydney         0.007 88.268    848
+aldo           0.007 88.275    849
+rubin          0.006 88.281    850
+royal          0.006 88.288    851
+mitch          0.006 88.294    852
+earle          0.006 88.301    853
+abe            0.006 88.307    854
+wyatt          0.006 88.314    855
+marquis        0.006 88.320    856
+lanny          0.006 88.326    857
+kareem         0.006 88.333    858
+jamar          0.006 88.339    859
+boris          0.006 88.346    860
+isiah          0.006 88.352    861
+emile          0.006 88.358    862
+elmo           0.006 88.365    863
+aron           0.006 88.371    864
+leopoldo       0.006 88.377    865
+everette       0.006 88.384    866
+josef          0.006 88.390    867
+gail           0.006 88.396    868
+eloy           0.006 88.403    869
+dorian         0.006 88.409    870
+rodrick        0.006 88.415    871
+reinaldo       0.006 88.421    872
+lucio          0.006 88.427    873
+jerrod         0.006 88.434    874
+weston         0.006 88.440    875
+hershel        0.006 88.446    876
+barton         0.006 88.452    877
+parker         0.006 88.458    878
+lemuel         0.006 88.464    879
+lavern         0.006 88.470    880
+burt           0.006 88.477    881
+jules          0.006 88.483    882
+gil            0.006 88.489    883
+eliseo         0.006 88.495    884
+ahmad          0.006 88.501    885
+nigel          0.006 88.507    886
+efren          0.006 88.513    887
+antwan         0.006 88.519    888
+alden          0.006 88.525    889
+margarito      0.006 88.531    890
+coleman        0.006 88.537    891
+refugio        0.006 88.543    892
+dino           0.006 88.549    893
+osvaldo        0.006 88.555    894
+les            0.006 88.560    895
+deandre        0.006 88.566    896
+normand        0.006 88.572    897
+kieth          0.006 88.578    898
+ivory          0.006 88.584    899
+andrea         0.006 88.590    900
+trey           0.006 88.595    901
+norberto       0.006 88.601    902
+napoleon       0.006 88.607    903
+jerold         0.006 88.613    904
+fritz          0.006 88.619    905
+rosendo        0.006 88.624    906
+milford        0.006 88.630    907
+sang           0.006 88.636    908
+deon           0.006 88.641    909
+christoper     0.006 88.647    910
+alfonzo        0.006 88.653    911
+lyman          0.006 88.658    912
+josiah         0.006 88.664    913
+brant          0.006 88.670    914
+wilton         0.006 88.675    915
+rico           0.006 88.681    916
+jamaal         0.006 88.687    917
+dewitt         0.006 88.692    918
+carol          0.006 88.698    919
+brenton        0.006 88.704    920
+yong           0.006 88.709    921
+olin           0.006 88.715    922
+foster         0.006 88.720    923
+faustino       0.006 88.726    924
+claudio        0.006 88.731    925
+judson         0.006 88.737    926
+gino           0.006 88.743    927
+edgardo        0.006 88.748    928
+berry          0.006 88.754    929
+alec           0.006 88.759    930
+tanner         0.006 88.765    931
+jarred         0.006 88.770    932
+donn           0.006 88.776    933
+trinidad       0.005 88.781    934
+tad            0.005 88.787    935
+shirley        0.005 88.792    936
+prince         0.005 88.798    937
+porfirio       0.005 88.803    938
+odis           0.005 88.809    939
+maria          0.005 88.814    940
+lenard         0.005 88.820    941
+chauncey       0.005 88.825    942
+chang          0.005 88.831    943
+tod            0.005 88.836    944
+mel            0.005 88.842    945
+marcelo        0.005 88.847    946
+kory           0.005 88.853    947
+augustus       0.005 88.858    948
+keven          0.005 88.864    949
+hilario        0.005 88.869    950
+bud            0.005 88.874    951
+sal            0.005 88.880    952
+rosario        0.005 88.885    953
+orval          0.005 88.891    954
+mauro          0.005 88.896    955
+dannie         0.005 88.901    956
+zachariah      0.005 88.907    957
+olen           0.005 88.912    958
+anibal         0.005 88.917    959
+milo           0.005 88.923    960
+jed            0.005 88.928    961
+frances        0.005 88.933    962
+thanh          0.005 88.939    963
+dillon         0.005 88.944    964
+amado          0.005 88.949    965
+newton         0.005 88.955    966
+connie         0.005 88.960    967
+lenny          0.005 88.965    968
+tory           0.005 88.970    969
+richie         0.005 88.975    970
+lupe           0.005 88.981    971
+horacio        0.005 88.986    972
+brice          0.005 88.991    973
+mohamed        0.005 88.996    974
+delmer         0.005 89.001    975
+dario          0.005 89.006    976
+reyes          0.005 89.012    977
+dee            0.005 89.017    978
+mac            0.005 89.022    979
+jonah          0.005 89.027    980
+jerrold        0.005 89.032    981
+robt           0.005 89.037    982
+hank           0.005 89.042    983
+sung           0.005 89.047    984
+rupert         0.005 89.052    985
+rolland        0.005 89.057    986
+kenton         0.005 89.062    987
+damion         0.005 89.067    988
+chi            0.005 89.072    989
+antone         0.005 89.077    990
+waldo          0.005 89.082    991
+fredric        0.005 89.087    992
+bradly         0.005 89.092    993
+quinn          0.005 89.097    994
+kip            0.005 89.102    995
+burl           0.005 89.107    996
+walker         0.005 89.112    997
+tyree          0.005 89.117    998
+jefferey       0.005 89.122    999
+ahmed          0.005 89.127   1000
+willy          0.005 89.132   1001
+stanford       0.005 89.137   1002
+oren           0.005 89.142   1003
+noble          0.005 89.146   1004
+moshe          0.005 89.151   1005
+mikel          0.005 89.156   1006
+enoch          0.005 89.161   1007
+brendon        0.005 89.166   1008
+quintin        0.005 89.171   1009
+jamison        0.005 89.176   1010
+florencio      0.005 89.181   1011
+darrick        0.005 89.185   1012
+tobias         0.005 89.190   1013
+minh           0.005 89.195   1014
+hassan         0.005 89.200   1015
+giuseppe       0.005 89.205   1016
+demarcus       0.005 89.210   1017
+cletus         0.005 89.214   1018
+tyrell         0.005 89.219   1019
+lyndon         0.005 89.224   1020
+keenan         0.005 89.229   1021
+werner         0.005 89.234   1022
+theo           0.005 89.238   1023
+geraldo        0.005 89.243   1024
+lou            0.005 89.248   1025
+columbus       0.005 89.253   1026
+chet           0.005 89.257   1027
+bertram        0.005 89.262   1028
+markus         0.005 89.267   1029
+huey           0.005 89.271   1030
+hilton         0.005 89.276   1031
+dwain          0.005 89.281   1032
+donte          0.005 89.285   1033
+tyron          0.005 89.290   1034
+omer           0.005 89.295   1035
+isaias         0.005 89.299   1036
+hipolito       0.005 89.304   1037
+fermin         0.005 89.309   1038
+chung          0.005 89.313   1039
+adalberto      0.005 89.318   1040
+valentine      0.005 89.323   1041
+jamey          0.005 89.327   1042
+bo             0.005 89.332   1043
+barrett        0.005 89.336   1044
+whitney        0.005 89.341   1045
+teodoro        0.005 89.345   1046
+mckinley       0.005 89.350   1047
+maximo         0.005 89.355   1048
+garfield       0.005 89.359   1049
+sol            0.005 89.364   1050
+raleigh        0.005 89.368   1051
+lawerence      0.005 89.373   1052
+abram          0.005 89.377   1053
+rashad         0.004 89.382   1054
+king           0.004 89.386   1055
+emmitt         0.004 89.391   1056
+daron          0.004 89.395   1057
+chong          0.004 89.400   1058
+samual         0.004 89.404   1059
+paris          0.004 89.409   1060
+otha           0.004 89.413   1061
+miquel         0.004 89.418   1062
+lacy           0.004 89.422   1063
+eusebio        0.004 89.426   1064
+dong           0.004 89.431   1065
+domenic        0.004 89.435   1066
+darron         0.004 89.440   1067
+buster         0.004 89.444   1068
+antonia        0.004 89.449   1069
+wilber         0.004 89.453   1070
+renato         0.004 89.458   1071
+jc             0.004 89.462   1072
+hoyt           0.004 89.466   1073
+haywood        0.004 89.471   1074
+ezekiel        0.004 89.475   1075
+chas           0.004 89.480   1076
+florentino     0.004 89.484   1077
+elroy          0.004 89.489   1078
+clemente       0.004 89.493   1079
+arden          0.004 89.497   1080
+neville        0.004 89.502   1081
+kelley         0.004 89.506   1082
+edison         0.004 89.510   1083
+deshawn        0.004 89.515   1084
+carrol         0.004 89.519   1085
+shayne         0.004 89.523   1086
+nathanial      0.004 89.528   1087
+jordon         0.004 89.532   1088
+danilo         0.004 89.536   1089
+claud          0.004 89.541   1090
+val            0.004 89.545   1091
+sherwood       0.004 89.549   1092
+raymon         0.004 89.554   1093
+rayford        0.004 89.558   1094
+cristobal      0.004 89.562   1095
+ambrose        0.004 89.567   1096
+titus          0.004 89.571   1097
+hyman          0.004 89.575   1098
+felton         0.004 89.579   1099
+ezequiel       0.004 89.584   1100
+erasmo         0.004 89.588   1101
+stanton        0.004 89.592   1102
+lonny          0.004 89.596   1103
+len            0.004 89.601   1104
+ike            0.004 89.605   1105
+milan          0.004 89.609   1106
+lino           0.004 89.613   1107
+jarod          0.004 89.617   1108
+herb           0.004 89.622   1109
+andreas        0.004 89.626   1110
+walton         0.004 89.630   1111
+rhett          0.004 89.634   1112
+palmer         0.004 89.638   1113
+jude           0.004 89.642   1114
+douglass       0.004 89.647   1115
+cordell        0.004 89.651   1116
+oswaldo        0.004 89.655   1117
+ellsworth      0.004 89.659   1118
+virgilio       0.004 89.663   1119
+toney          0.004 89.667   1120
+nathanael      0.004 89.671   1121
+del            0.004 89.675   1122
+britt          0.004 89.679   1123
+benedict       0.004 89.684   1124
+mose           0.004 89.688   1125
+hong           0.004 89.692   1126
+leigh          0.004 89.696   1127
+johnson        0.004 89.700   1128
+isreal         0.004 89.704   1129
+gayle          0.004 89.708   1130
+garret         0.004 89.712   1131
+fausto         0.004 89.716   1132
+asa            0.004 89.720   1133
+arlen          0.004 89.724   1134
+zack           0.004 89.728   1135
+warner         0.004 89.732   1136
+modesto        0.004 89.736   1137
+francesco      0.004 89.740   1138
+manual         0.004 89.744   1139
+jae            0.004 89.748   1140
+gaylord        0.004 89.752   1141
+gaston         0.004 89.756   1142
+filiberto      0.004 89.759   1143
+deangelo       0.004 89.763   1144
+michale        0.004 89.767   1145
+granville      0.004 89.771   1146
+wes            0.004 89.775   1147
+malik          0.004 89.779   1148
+zackary        0.004 89.783   1149
+tuan           0.004 89.787   1150
+nicky          0.004 89.790   1151
+eldridge       0.004 89.794   1152
+cristopher     0.004 89.798   1153
+cortez         0.004 89.802   1154
+antione        0.004 89.806   1155
+malcom         0.004 89.809   1156
+long           0.004 89.813   1157
+korey          0.004 89.817   1158
+jospeh         0.004 89.821   1159
+colton         0.004 89.825   1160
+waylon         0.004 89.828   1161
+von            0.004 89.832   1162
+hosea          0.004 89.836   1163
+shad           0.004 89.840   1164
+santo          0.004 89.843   1165
+rudolf         0.004 89.847   1166
+rolf           0.004 89.851   1167
+rey            0.004 89.855   1168
+renaldo        0.004 89.858   1169
+marcellus      0.004 89.862   1170
+lucius         0.004 89.866   1171
+lesley         0.004 89.870   1172
+kristofer      0.004 89.873   1173
+boyce          0.004 89.877   1174
+benton         0.004 89.881   1175
+man            0.004 89.884   1176
+kasey          0.004 89.888   1177
+jewell         0.004 89.892   1178
+hayden         0.004 89.895   1179
+harland        0.004 89.899   1180
+arnoldo        0.004 89.903   1181
+rueben         0.004 89.907   1182
+leandro        0.004 89.910   1183
+kraig          0.004 89.914   1184
+jerrell        0.004 89.918   1185
+jeromy         0.004 89.921   1186
+hobert         0.004 89.925   1187
+cedrick        0.004 89.929   1188
+arlie          0.004 89.932   1189
+winford        0.004 89.936   1190
+wally          0.004 89.939   1191
+patricia       0.004 89.943   1192
+luigi          0.004 89.947   1193
+keneth         0.004 89.950   1194
+jacinto        0.004 89.954   1195
+graig          0.004 89.958   1196
+franklyn       0.004 89.961   1197
+edmundo        0.004 89.965   1198
+sid            0.004 89.968   1199
+porter         0.004 89.972   1200
+leif           0.004 89.976   1201
+lauren         0.004 89.979   1202
+jeramy         0.004 89.983   1203
+elisha         0.004 89.986   1204
+buck           0.004 89.990   1205
+willian        0.004 89.994   1206
+vincenzo       0.004 89.997   1207
+shon           0.004 90.001   1208
+michal         0.004 90.004   1209
+lynwood        0.004 90.008   1210
+lindsay        0.004 90.011   1211
+jewel          0.004 90.015   1212
+jere           0.004 90.018   1213
+hai            0.004 90.022   1214
+elden          0.004 90.026   1215
+dorsey         0.004 90.029   1216
+darell         0.004 90.033   1217
+broderick      0.004 90.036   1218
+alonso         0.004 90.040   1219
diff --git a/utils/data-generators/barnum/source-data/male-prefix.txt b/utils/data-generators/barnum/source-data/male-prefix.txt
new file mode 100755
index 0000000..7d26b98
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/male-prefix.txt
@@ -0,0 +1,2 @@
+Dr.
+Mr.
\ No newline at end of file
diff --git a/utils/data-generators/barnum/source-data/street-names.txt b/utils/data-generators/barnum/source-data/street-names.txt
new file mode 100755
index 0000000..7f31a62
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/street-names.txt
@@ -0,0 +1,1048 @@
+abbott
+abercrombie
+adeline
+alder
+amundson
+anderson
+arcola
+aspen
+atwood
+autumn
+barons
+bayberry
+beach
+benson
+bergmann
+birchwood
+boom
+boutwell
+brewers
+brick
+broadway
+burlington
+carnelian
+center
+cherry
+chestnut
+churchill
+commercial
+cottage
+cottonwood
+country
+countryside
+creekside
+crestwood
+croixwood
+curve crest
+dallager
+darrel
+deer
+deer path
+delano
+dellwood
+dellwood road
+driftwood
+driving park
+dubuque
+dundee
+eagle ridge
+eben
+echo
+edgewood
+elm
+everett
+evergreen
+fairlawn
+fairmeadows
+fairy falls
+farm hill
+fischer
+frontage
+gadient
+gilbert
+greeley
+green twig
+greenmeadow
+greenwood
+grove
+hancock
+hanson
+harriet
+harvest
+hawthorne
+hazel
+heifort
+hemlock
+heritage
+hickory
+hidden valley
+highland
+hillcrest
+hillside
+holcombe
+homestead
+homeward
+honeye
+hudson
+icerose
+ilo
+imperial
+industrial
+ingberg
+interlachen
+inwood
+irish
+ironwood
+isleton
+itasca
+ivy
+jamaca
+jarvis
+jasmine
+jeffrey
+jewell
+jocelyn
+jody
+johnson
+joliet
+judd
+julianne
+juno
+justen
+kallie
+keats
+kelman
+kelvin
+kersh
+keswick
+keystone
+kimbro
+kinship
+kismet
+knollwood
+krueger
+lake
+lakeside
+lansing
+laurel
+laurie
+lecuyer
+leeward
+legend
+liberty
+linden
+linson
+lockridge
+locust
+lofton
+long lake
+lookout
+lydia
+macey
+main
+mallard
+manning
+manning trail
+maple
+marine
+market
+marsh
+martha
+maryknoll
+marylane
+may
+mayfield
+mcdonald
+mcdougal
+mckusick
+meadowlark
+meadowview
+melville
+memorial
+mendel
+mid oaks
+minar
+monarda
+moonlight bay
+moore
+morgan
+morning dove
+morningside
+muir
+mulberry
+myeron
+myrtle
+myrtlewood
+mystic ridge
+neal
+nelson
+nena
+new england
+newberry
+newell
+newgate
+newman
+nightingale
+nolan
+norcrest
+nordic
+norell
+norman
+normandale
+normandy
+northbrook
+northland
+northridge
+northwestern
+norwich
+norwood
+nova scotia
+novak
+oak
+oak glen
+oak park
+oakes
+oakgreen
+oakgreen avenue
+oakhill
+oakland
+oakridge
+oasis
+obrien
+odegard
+odell
+ojib
+old deer
+oldfield
+oldfield avenue
+oldridge
+olene
+olinda
+olive
+omaha
+omar
+oren
+oriole
+orleans
+orwell
+oryan
+osgood
+osman
+osprey
+otchipwe
+ottawa
+otter
+ottumwa
+overlook
+owens
+oxboro
+oxen
+oxford
+ozark
+paddock
+painters
+palisade
+palomino
+panama
+panorama
+parade
+paradise
+paragon
+paris
+park
+parkwood
+partridge
+partridge road
+paul
+pawnee
+pawnee avenue
+peabody
+peacan
+peller
+penfield
+penrose
+periwinkle
+perkins
+pickett
+pine
+pine hollow
+pine tree
+pinecroft
+pinehurst
+pineridge
+pioneer
+planting
+pond view
+poplar
+pridalea
+primrose
+quail
+quant
+quarry
+queens
+quinlan
+quirt
+rainbow
+ramsey
+ravine
+reunion
+rice
+ridge
+rivard
+river heights
+rivercrest
+riverview
+robin
+rutherford
+saddle
+saint croix
+saint louis
+sawyer
+school
+schulenberg
+seeley
+settlers
+shelton
+sherburne
+skyview
+square lake
+stagecoach
+staloch
+staples
+sterling
+stillwater
+stonebridge
+summer fields
+sunny slope
+sunrise
+surrey
+swenson
+sycamore
+tall pine
+tamarack
+tending
+thorene
+timber
+tower
+towne
+trotter
+tuenge
+union
+van tassel
+victoria
+walnut
+walnut creek
+washington
+water
+webster
+west
+wildcrest
+wildpines
+wildwood
+wilkins
+willard
+william
+willow
+woodridge
+adair bridge
+ainsworth
+akerswood
+aldwych
+anniston
+anns
+apahon
+appaloosa
+apple valley
+arden walk
+arthur
+ashbrook
+ashmont
+ashstone
+ashworth
+aspen pine
+bauxhall
+bavarian
+baytown
+beaufort
+beaux bridge
+beaverwood
+bekah
+belfort
+belgrave
+bell manor
+bellville
+bensonwood
+bent creek
+billy cross
+birch post
+birchtree
+birnam wood
+black springs
+blackberry
+blackberry farm
+blackberry ridge
+blue grass
+bobwood
+bolling brook
+boulinwood
+bradford
+branford
+breezy creek
+brenley
+bridge forest
+brierbrook
+brook bridge
+brookline
+brooksedge
+brookside
+brooxie
+brownleaf
+brush creek
+bryn mawr
+bubbling brook
+buck ram
+buckingham
+burfordi
+burntwood
+burrows farm
+calumet
+cambury
+cane creek
+canella
+canon gate
+cape charles
+capital
+carnton
+carrick
+carters grove
+cattail
+cavershamwood
+caylors wood
+cd smith
+cedar lake
+cedar lane
+cedar ridge
+cedarcrest
+cedarville
+cedarwood
+centre oak
+charstone
+chatham
+chatsworth
+cherryfield
+chertsy
+chesley
+chico
+churchill downs
+circle gate
+circle trees
+circleshade
+claiborne
+claiborne farm
+clarington
+cliffrose
+cloverbrook
+coachmans
+cobblestone
+conner
+coppershire
+cordie lee
+cordova
+cornuta
+cornwall
+corporate center
+corporate edge
+corporate gardens
+corsica
+cottage glen
+cotton boll
+cotton cross
+cotton plant
+country
+cranbrook
+creathwood
+creek bridge
+crestwyn
+crooked creek
+crooked oak
+cross country
+cross pike
+cross ridge
+cross village
+crossbow
+crossflower
+crye crest
+currywood
+danbury
+danforth
+darby dan
+deauville
+deep valley
+deerfield
+deodara
+dewhurst
+dian
+dogwood
+dogwood crest
+dogwood grove
+dogwood villa
+donnington
+donnybrook
+doral
+dove field
+dovie
+dragonfly
+drayton
+duckhorn
+dunedin
+eagle branch
+ealing
+eastern
+edenfield
+effingham
+egerton
+eldor
+elm leaf
+elm ridge
+elmhurst
+enterprise
+eversholt
+everwood
+exeter
+falling leaf
+farindon
+farmingdale
+farmington
+farnifold
+featherleigh
+fernspring
+fernwood
+fiddlers elbow
+fireside
+flowers oak
+fords station
+forest bend
+forest downs
+forest hill
+forest hill irene
+forestwood
+foster dale
+foster ridge
+fountainside
+fox creek
+fox fern
+fox grape
+gainesway
+gallery
+garden arbor
+gayle
+germantown
+germantown village
+germanwood
+glen meadow
+golden chance
+golden fields
+goringwood
+goswell
+grand oak
+gray ridge
+great oaks
+green clover
+green downs
+green forest
+green holly
+green knoll
+green orchard
+green pastures
+greensprings
+grenville
+grist mill
+grove
+grove brook
+grove lake
+grove meadow
+grove mill
+groveshire
+grovewood
+gumleaf
+hacks cross
+hampton grove
+hapano
+harding
+harrod
+haseley
+havenhill
+havenhurst
+havershire
+hawksprings
+hayden
+hayley
+hazelton
+heatherbrook
+heatherglen
+heatherly
+heathmore
+heathstone
+hickory glen
+hidden oaks
+highgate
+hill creek
+hobbits glen
+hollow creek
+hollow fork
+holly heath
+holly hill
+holly spring
+hollyhock
+honey hill
+honey tree
+howard
+huntcliff
+hunters
+hunters creek
+hunters forest
+hunters grove
+hunters hill
+hunters horn
+hunters run
+huntleigh
+innsbruck
+ivy leaf
+jenna
+jermyn
+judicial
+kelchner
+kimbrook
+kimbrough
+kimbrough grove
+kimbrough park
+kimdale
+kimforest
+kimridge
+kinderhill
+kingcastle
+kirby
+knoll
+lakespur
+lancashire
+landfair
+laurel ridge
+laurinburg
+leesburg
+leighton creek
+lennox
+londonderry
+long oak
+mac
+magnolia ridge
+magnolia tree
+maize
+malabar
+malcolm
+mallard
+mandeville
+manor woods
+maple shadow
+mardite
+marthas
+martin grove
+masters
+may woods
+mcclellan
+mchenry
+mcvay
+meadow
+meadow creek bridge
+meadow glen
+meadow hill
+meadow run
+meadow wood
+mer rouge
+merchants
+mikeyair
+mill
+miller farms
+millstone
+mimosa
+mimosa tree
+misty creek
+misty hollow
+mistywood
+mont blanc
+monte vallo
+moore
+moss tree
+mossy creek
+mustang
+neshoba
+neshoba trace
+new riverdale
+newsum
+nikerton
+nohapa
+north
+oak hill
+oak manor
+oak run
+oakleigh
+oaksedge
+oakville
+old bridge
+old elm
+old mill
+old post
+old village
+ole pike
+orchard grove
+orchard hill
+overhill
+overlook
+paddock
+pangbourne
+panoha
+park ridge
+parker
+pecan trees
+penbrook
+penmont
+pete mitchell
+pike wood
+pine
+pine valley
+pittsfield
+plantation
+poplar
+poplar estates
+poplar lake
+poplar woods
+port charlotte
+professional
+pyron oaks
+queens
+ravencliff
+ravenhill
+ravensdale
+redfield
+regents
+rhineland
+rich hill
+rico
+ridgetown
+riggs
+river bend
+river reach
+river valley
+riverain
+riverdale
+riverwind
+riverwood
+rocky hollow
+rolling valley
+rosehaven
+round hill
+rowan
+roxbury
+rubyshade
+rustleaf
+saddle ridge
+saddlegait
+san augustine
+sanders hill
+sanders ridge
+sandy berry
+sandy creek
+savannah
+scruggs
+shadeley
+shadowmoss
+shady creek
+shannon oaks
+shepherdwood
+silkwood
+silverbark
+sister tagg
+siward
+sleepy hollow
+somerset
+sonning
+southern
+southmoore
+sparkling lake
+splinter oak
+stags leap
+stamford
+station hill
+steeplegate
+stillbrook
+stone creek
+stone farm
+stone mill
+stone walk
+stonegate
+stonewyck
+stout
+sundance
+sunny creek
+sunset
+surrey
+sweet oaks
+sweetwood
+tagg
+tallwood
+talmage
+tamarack
+tamerlane
+tanoak
+teddington
+thornbrook
+thorncroft
+three chimneys
+toro
+towering pines
+trailwood
+trowbridge
+turpins glen
+tuscany
+val verde
+valley crest
+vicherne
+vienna
+village shops
+vineyard
+walking horse
+walworth
+wargate
+waterleaf
+watkins
+waverly
+waxlander
+weeping willow
+wellton
+west
+westcott
+western
+westminster
+weston
+wethersfield
+wheatley
+wheatstone
+whipper
+whitemarsh
+wickshire
+wild oak
+willey
+willow brook
+willowbend
+winchester
+windham
+winding creek
+winding oak
+windstone way
+winged foot
+winners
+winnton
+winterberry
+woffington
+wolf bend
+wolf park
+wolf river
+wood briar
+wood creek
+woodbend
+woodford
+woodgate
+woodhall
+woodlane
+woodleaf
+woodridge
+woodruff
+woodside
+woodsong
+wyndhurst
+wynterhall
+zurich
+addicks howell
+alchester
+anchorage
+apple tree
+ashford forest
+autumn oaks
+barkers
+barkers landing
+barkers point
+barryknoll
+bateswood
+bayou knoll
+bayou river
+bison
+blackhaw
+bluebird
+boheme
+bow string
+bramblewood
+brenner creek
+briar knoll
+briar path
+britoak
+brittmoore
+broadgreen
+butterfly
+camara
+camelback
+captains
+cardinal
+carlingford
+carolcrest
+center hill
+chadbourne
+cherrybark
+cindywood
+cinnamon oak
+clear spring
+comely
+commodore
+conifer
+country place
+cranberry hill
+crossroads
+dairy ashford
+daria
+diamond leaf
+duncaster
+durley
+eldridge
+electra
+elk run
+fair harbor
+fairport
+fawnlake
+fern
+flaghoist
+fleetwood oaks
+fleetwood place
+forest
+foxgate
+gaywood
+gershwin
+glenchester
+grasshopper
+greenbelt
+greenpark
+grisby
+havershire
+heatherfield
+herdsman
+hermitage
+hickory post
+hidden
+hidden harbor
+highwood
+hunters den
+indian creek
+island grove
+ivy wall
+kahlden
+katy
+kellywood
+kickerillo
+kimberley
+kingsride
+kirkwood
+la costa
+la quinta
+lakemere
+langwood
+lasso
+last arrow
+leaning ash
+lee shore
+lost meadow
+marywood chase
+matisse
+memorial
+memorial mews
+merenerm
+misty meadow
+myrtlea
+nottingham oaks
+oak bend
+oarman
+old katy
+old stone
+olney oak
+park
+patchester
+pebblebrook
+pepper
+perthshire
+pinerock
+pinesap
+plainwood
+quail grove
+queensbury
+queensmill
+radbrook
+rainwood
+ramblewood
+rancho bauer
+redhaw
+redwood place
+regentview
+renoir
+river forest
+river roads
+riverlace
+rock
+rowlock
+rummel creek
+saint francis
+saint george
+saint marys
+sandy
+sandy port
+sea smoke
+sibelius
+silvergate
+soboda
+southchester
+spear point
+st ives
+stafford
+steamboat
+still meadow
+stoneleigh
+tanya
+taylorcrest
+thicket
+thistlewood
+thornbranch
+thornvine
+thornwick
+threadneedle
+timber
+tosca
+trademark
+trail hollow
+trailville
+tully
+turkey
+turkey creek
+turkey trail
+twisted oak
+walkwood
+wax myrtle
+westlake park
+westport
+white wing
+whitewater
+wickchester
+wilchester
+wilcrest
+windbreak
+winter oaks
+wood branch park
+woodbend
+woodthorpe
+wren
+wycliffe
+yorkchester
\ No newline at end of file
diff --git a/utils/data-generators/barnum/source-data/street-types.txt b/utils/data-generators/barnum/source-data/street-types.txt
new file mode 100755
index 0000000..99f377a
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/street-types.txt
@@ -0,0 +1,9 @@
+lane
+way
+avenue
+street
+circle
+drive
+trail
+cove
+parkway
diff --git a/utils/data-generators/barnum/source-data/zip-codes.txt b/utils/data-generators/barnum/source-data/zip-codes.txt
new file mode 100755
index 0000000..10cabef
--- /dev/null
+++ b/utils/data-generators/barnum/source-data/zip-codes.txt
@@ -0,0 +1,5575 @@
+"00501","+40.922326","-072.637078","HOLTSVILLE","NY","SUFFOLK","UNIQUE"
+"00544","+40.922326","-072.637078","HOLTSVILLE","NY","SUFFOLK","UNIQUE"
+"01001","+42.140549","-072.788661","AGAWAM","MA","HAMPDEN","STANDARD"
+"01002","+42.367092","-072.464571","AMHERST","MA","HAMPSHIRE","STANDARD"
+"01003","+42.369562","-072.635990","AMHERST","MA","HAMPSHIRE","STANDARD"
+"01004","+42.384494","-072.513183","AMHERST","MA","HAMPSHIRE","STANDARD"
+"01005","+42.329160","-072.139465","BARRE","MA","WORCESTER","STANDARD"
+"01007","+42.280267","-072.402056","BELCHERTOWN","MA","HAMPSHIRE","STANDARD"
+"01008","+42.177833","-072.958359","BLANDFORD","MA","HAMPDEN","STANDARD"
+"01009","+42.206092","-072.340486","BONDSVILLE","MA","HAMPDEN","PO BOX ONLY"
+"01010","+42.108585","-072.204480","BRIMFIELD","MA","HAMPDEN","STANDARD"
+"01011","+42.294259","-072.952776","CHESTER","MA","HAMPDEN","STANDARD"
+"01012","+42.392274","-072.825607","CHESTERFIELD","MA","HAMPSHIRE","STANDARD"
+"01013","+42.161492","-072.667341","CHICOPEE","MA","HAMPDEN","STANDARD"
+"01014","+42.170731","-072.604842","CHICOPEE","MA","HAMPDEN","STANDARD"
+"01020","+42.177492","-072.562563","CHICOPEE","MA","HAMPDEN","STANDARD"
+"01021","+42.170731","-072.604842","CHICOPEE","MA","HAMPDEN","STANDARD"
+"01022","+42.193392","-072.554360","CHICOPEE","MA","HAMPDEN","STANDARD"
+"01026","+42.428617","-072.909841","CUMMINGTON","MA","HAMPSHIRE","STANDARD"
+"01027","+42.368303","-072.768839","EASTHAMPTON","MA","HAMPSHIRE","STANDARD"
+"01028","+42.062009","-072.498740","EAST LONGMEADOW","MA","HAMPDEN","STANDARD"
+"01029","+42.190904","-073.051661","EAST OTIS","MA","BERKSHIRE","PO BOX ONLY"
+"01030","+42.189335","-072.797740","FEEDING HILLS","MA","HAMPDEN","STANDARD"
+"01031","+42.352554","-072.205724","GILBERTVILLE","MA","WORCESTER","STANDARD"
+"01032","+42.443837","-072.819446","GOSHEN","MA","HAMPSHIRE","STANDARD"
+"01033","+42.262285","-072.504086","GRANBY","MA","HAMPSHIRE","STANDARD"
+"01034","+42.112748","-072.952003","GRANVILLE","MA","HAMPDEN","STANDARD"
+"01035","+42.356804","-072.576613","HADLEY","MA","HAMPSHIRE","STANDARD"
+"01036","+42.067614","-072.417507","HAMPDEN","MA","HAMPDEN","STANDARD"
+"01037","+42.347856","-072.225251","HARDWICK","MA","WORCESTER","PO BOX ONLY"
+"01038","+42.387269","-072.643081","HATFIELD","MA","HAMPSHIRE","STANDARD"
+"01039","+42.356410","-072.682127","HAYDENVILLE","MA","HAMPSHIRE","STANDARD"
+"01040","+42.198291","-072.642070","HOLYOKE","MA","HAMPDEN","STANDARD"
+"01041","+42.170731","-072.604842","HOLYOKE","MA","HAMPDEN","STANDARD"
+"01050","+42.313427","-072.903677","HUNTINGTON","MA","HAMPSHIRE","STANDARD"
+"01053","+42.353838","-072.704385","LEEDS","MA","HAMPSHIRE","STANDARD"
+"01054","+42.474681","-072.467543","LEVERETT","MA","FRANKLIN","STANDARD"
+"01056","+42.173276","-072.627038","LUDLOW","MA","HAMPDEN","STANDARD"
+"01057","+42.095323","-072.282063","MONSON","MA","HAMPDEN","STANDARD"
+"01059","+42.369562","-072.635990","NORTH AMHERST","MA","HAMPSHIRE","STANDARD"
+"01060","+42.415154","-072.769270","NORTHAMPTON","MA","HAMPSHIRE","STANDARD"
+"01061","+42.369562","-072.635990","NORTHAMPTON","MA","HAMPSHIRE","STANDARD"
+"01062","+42.328838","-072.845227","FLORENCE","MA","HAMPSHIRE","STANDARD"
+"01063","+42.317939","-072.640234","NORTHAMPTON","MA","HAMPSHIRE","UNIQUE"
+"01066","+42.406697","-072.633901","NORTH HATFIELD","MA","HAMPSHIRE","PO BOX ONLY"
+"01068","+42.346144","-072.058847","OAKHAM","MA","WORCESTER","STANDARD"
+"01069","+42.176131","-072.314570","PALMER","MA","HAMPDEN","STANDARD"
+"01070","+42.448984","-072.958397","PLAINFIELD","MA","HAMPSHIRE","STANDARD"
+"01071","+42.177432","-072.864558","RUSSELL","MA","HAMPDEN","STANDARD"
+"01072","+42.471562","-072.440170","SHUTESBURY","MA","FRANKLIN","STANDARD"
+"01073","+42.230008","-072.728463","SOUTHAMPTON","MA","HAMPSHIRE","STANDARD"
+"01074","+42.375998","-072.149388","SOUTH BARRE","MA","WORCESTER","PO BOX ONLY"
+"01075","+42.249840","-072.581520","SOUTH HADLEY","MA","HAMPSHIRE","STANDARD"
+"01077","+42.066644","-072.541205","SOUTHWICK","MA","HAMPDEN","STANDARD"
+"01079","+42.192892","-072.329574","THORNDIKE","MA","HAMPDEN","PO BOX ONLY"
+"01080","+42.179805","-072.517813","THREE RIVERS","MA","HAMPDEN","STANDARD"
+"01081","+42.061948","-072.213598","WALES","MA","HAMPDEN","STANDARD"
+"01082","+42.377471","-072.548549","WARE","MA","HAMPSHIRE","STANDARD"
+"01083","+42.204027","-072.199439","WARREN","MA","WORCESTER","PO BOX ONLY"
+"01084","+42.390303","-072.870857","WEST CHESTERFIELD","MA","HAMPSHIRE","PO BOX ONLY"
+"01085","+42.148690","-072.501887","WESTFIELD","MA","HAMPDEN","STANDARD"
+"01086","+42.173428","-072.847964","WESTFIELD","MA","HAMPDEN","STANDARD"
+"01088","+42.390583","-072.646894","WEST HATFIELD","MA","HAMPSHIRE","STANDARD"
+"01089","+42.125793","-072.645334","WEST SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01090","+42.170731","-072.604842","WEST SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01092","+42.202887","-072.229025","WEST WARREN","MA","WORCESTER","PO BOX ONLY"
+"01093","+42.442673","-072.652511","WHATELY","MA","FRANKLIN","PO BOX ONLY"
+"01094","+42.358201","-072.140846","WHEELWRIGHT","MA","WORCESTER","PO BOX ONLY"
+"01095","+42.125974","-072.489988","WILBRAHAM","MA","HAMPDEN","STANDARD"
+"01096","+42.413069","-072.821653","WILLIAMSBURG","MA","HAMPSHIRE","STANDARD"
+"01097","+42.161743","-072.845912","WORONOCO","MA","HAMPDEN","STANDARD"
+"01098","+42.404940","-072.896133","WORTHINGTON","MA","HAMPSHIRE","STANDARD"
+"01101","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01102","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01103","+42.103044","-072.590783","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01104","+42.128605","-072.567966","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01105","+42.099793","-072.577732","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01106","+42.049194","-072.567882","LONGMEADOW","MA","HAMPDEN","STANDARD"
+"01107","+42.126237","-072.586733","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01108","+42.080594","-072.558081","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01109","+42.119293","-072.548981","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01111","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","UNIQUE"
+"01114","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","UNIQUE"
+"01115","+42.102894","-072.591633","SPRINGFIELD","MA","HAMPDEN","UNIQUE"
+"01116","+42.170731","-072.604842","LONGMEADOW","MA","HAMPDEN","STANDARD"
+"01118","+42.093894","-072.523227","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01119","+42.124943","-072.526705","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01128","+42.094616","-072.487229","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01129","+42.124485","-072.489479","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01133","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","UNIQUE"
+"01138","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01139","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01144","+42.101796","-072.591510","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01151","+42.150593","-072.512780","INDIAN ORCHARD","MA","HAMPDEN","STANDARD"
+"01152","+42.170731","-072.604842","SPRINGFIELD","MA","HAMPDEN","STANDARD"
+"01199","+42.119943","-072.604983","SPRINGFIELD","MA","HAMPDEN","UNIQUE"
+"01201","+42.479475","-073.248070","PITTSFIELD","MA","BERKSHIRE","STANDARD"
+"01202","+42.392900","-073.228483","PITTSFIELD","MA","BERKSHIRE","STANDARD"
+"01203","+42.392900","-073.228483","PITTSFIELD","MA","BERKSHIRE","STANDARD"
+"01220","+42.385595","-073.172166","ADAMS","MA","BERKSHIRE","STANDARD"
+"01222","+42.185969","-073.318695","ASHLEY FALLS","MA","BERKSHIRE","STANDARD"
+"01223","+42.341800","-073.103468","BECKET","MA","BERKSHIRE","STANDARD"
+"01224","+42.392900","-073.228483","BERKSHIRE","MA","BERKSHIRE","STANDARD"
+"01225","+42.482125","-073.127483","CHESHIRE","MA","BERKSHIRE","STANDARD"
+"01226","+42.470296","-073.088950","DALTON","MA","BERKSHIRE","STANDARD"
+"01227","+42.516145","-073.092852","DALTON","MA","BERKSHIRE","STANDARD"
+"01229","+42.279292","-073.343545","GLENDALE","MA","BERKSHIRE","PO BOX ONLY"
+"01230","+42.299392","-073.266650","GREAT BARRINGTON","MA","BERKSHIRE","STANDARD"
+"01235","+42.292370","-073.221640","HINSDALE","MA","BERKSHIRE","STANDARD"
+"01236","+42.291299","-073.358798","HOUSATONIC","MA","BERKSHIRE","STANDARD"
+"01237","+42.487569","-073.235048","LANESBORO","MA","BERKSHIRE","STANDARD"
+"01238","+42.369856","-073.267465","LEE","MA","BERKSHIRE","STANDARD"
+"01240","+42.459202","-073.219858","LENOX","MA","BERKSHIRE","STANDARD"
+"01242","+42.338594","-073.250891","LENOX DALE","MA","BERKSHIRE","PO BOX ONLY"
+"01243","+42.356088","-073.010448","MIDDLEFIELD","MA","HAMPSHIRE","PO BOX ONLY"
+"01244","+42.122827","-073.253983","MILL RIVER","MA","BERKSHIRE","PO BOX ONLY"
+"01245","+42.186690","-073.206498","MONTEREY","MA","BERKSHIRE","STANDARD"
+"01247","+42.426974","-073.186320","NORTH ADAMS","MA","BERKSHIRE","STANDARD"
+"01252","+42.198648","-073.446234","NORTH EGREMONT","MA","BERKSHIRE","STANDARD"
+"01253","+42.213156","-073.090434","OTIS","MA","BERKSHIRE","STANDARD"
+"01254","+42.233105","-073.238358","RICHMOND","MA","BERKSHIRE","STANDARD"
+"01255","+42.148975","-073.148610","SANDISFIELD","MA","BERKSHIRE","STANDARD"
+"01256","+42.367341","-073.128528","SAVOY","MA","BERKSHIRE","STANDARD"
+"01257","+42.314564","-073.267694","SHEFFIELD","MA","BERKSHIRE","STANDARD"
+"01258","+42.128075","-073.360890","SOUTH EGREMONT","MA","BERKSHIRE","STANDARD"
+"01259","+42.198712","-073.278543","SOUTHFIELD","MA","BERKSHIRE","STANDARD"
+"01260","+42.286586","-073.313274","SOUTH LEE","MA","BERKSHIRE","PO BOX ONLY"
+"01262","+42.304604","-073.330001","STOCKBRIDGE","MA","BERKSHIRE","PO BOX ONLY"
+"01263","+42.392900","-073.228483","STOCKBRIDGE","MA","BERKSHIRE","UNIQUE"
+"01264","+42.220001","-073.197865","TYRINGHAM","MA","BERKSHIRE","STANDARD"
+"01266","+42.360482","-073.265354","WEST STOCKBRIDGE","MA","BERKSHIRE","STANDARD"
+"01267","+42.642075","-073.257699","WILLIAMSTOWN","MA","BERKSHIRE","STANDARD"
+"01270","+42.443726","-073.116127","WINDSOR","MA","BERKSHIRE","STANDARD"
+"01301","+42.601335","-072.623619","GREENFIELD","MA","FRANKLIN","STANDARD"
+"01302","+42.522178","-072.624164","GREENFIELD","MA","FRANKLIN","STANDARD"
+"01330","+42.562391","-072.738152","ASHFIELD","MA","FRANKLIN","STANDARD"
+"01331","+42.547302","-072.183903","ATHOL","MA","WORCESTER","STANDARD"
+"01337","+42.627060","-072.642888","BERNARDSTON","MA","FRANKLIN","STANDARD"
+"01338","+42.573832","-072.769487","BUCKLAND","MA","FRANKLIN","STANDARD"
+"01339","+42.594252","-072.665507","CHARLEMONT","MA","FRANKLIN","STANDARD"
+"01340","+42.681539","-072.822986","COLRAIN","MA","FRANKLIN","STANDARD"
+"01341","+42.590824","-072.709760","CONWAY","MA","FRANKLIN","STANDARD"
+"01342","+42.547230","-072.607679","DEERFIELD","MA","FRANKLIN","STANDARD"
+"01343","+42.642666","-072.986231","DRURY","MA","BERKSHIRE","STANDARD"
+"01344","+42.627072","-072.553654","ERVING","MA","FRANKLIN","STANDARD"
+"01346","+42.618011","-072.788896","HEATH","MA","FRANKLIN","STANDARD"
+"01347","+42.556558","-072.518104","LAKE PLEASANT","MA","FRANKLIN","PO BOX ONLY"
+"01349","+42.621412","-072.705633","TURNERS FALLS","MA","FRANKLIN","STANDARD"
+"01350","+42.721456","-072.976204","MONROE BRIDGE","MA","FRANKLIN","PO BOX ONLY"
+"01351","+42.548107","-072.486930","MONTAGUE","MA","FRANKLIN","STANDARD"
+"01354","+42.522178","-072.624164","NORTHFIELD","MA","FRANKLIN","STANDARD"
+"01355","+42.518718","-072.534371","NEW SALEM","MA","FRANKLIN","STANDARD"
+"01360","+42.614152","-072.528209","NORTHFIELD","MA","FRANKLIN","STANDARD"
+"01364","+42.578325","-072.556589","ORANGE","MA","FRANKLIN","STANDARD"
+"01366","+42.459632","-072.182962","PETERSHAM","MA","WORCESTER","STANDARD"
+"01367","+42.683065","-072.715667","ROWE","MA","FRANKLIN","STANDARD"
+"01368","+42.672182","-072.196376","ROYALSTON","MA","WORCESTER","STANDARD"
+"01369","+42.522178","-072.624164","SHATTUCKVILLE","MA","FRANKLIN","STANDARD"
+"01370","+42.588812","-072.758781","SHELBURNE FALLS","MA","FRANKLIN","STANDARD"
+"01373","+42.464522","-072.682346","SOUTH DEERFIELD","MA","FRANKLIN","STANDARD"
+"01375","+42.565346","-072.700940","SUNDERLAND","MA","FRANKLIN","STANDARD"
+"01376","+42.654878","-072.718123","TURNERS FALLS","MA","FRANKLIN","STANDARD"
+"01378","+42.667059","-072.339655","WARWICK","MA","FRANKLIN","STANDARD"
+"01379","+42.581007","-072.437179","WENDELL","MA","FRANKLIN","STANDARD"
+"01380","+42.553431","-072.392694","WENDELL DEPOT","MA","FRANKLIN","STANDARD"
+"01420","+42.583689","-071.816767","FITCHBURG","MA","WORCESTER","STANDARD"
+"01430","+42.654906","-071.920942","ASHBURNHAM","MA","WORCESTER","STANDARD"
+"01431","+42.446396","-071.459405","ASHBY","MA","MIDDLESEX","STANDARD"
+"01432","+42.446396","-071.459405","AYER","MA","MIDDLESEX","STANDARD"
+"01436","+42.601427","-072.083838","BALDWINVILLE","MA","WORCESTER","STANDARD"
+"01438","+42.551681","-072.029434","EAST TEMPLETON","MA","WORCESTER","PO BOX ONLY"
+"01440","+42.582529","-072.025884","GARDNER","MA","WORCESTER","STANDARD"
+"01441","+42.364807","-071.896868","WESTMINSTER","MA","WORCESTER","UNIQUE"
+"01450","+42.446396","-071.459405","GROTON","MA","MIDDLESEX","STANDARD"
+"01451","+42.500187","-071.575864","HARVARD","MA","WORCESTER","STANDARD"
+"01452","+42.483895","-072.011516","HUBBARDSTON","MA","WORCESTER","STANDARD"
+"01453","+42.471316","-071.837509","LEOMINSTER","MA","WORCESTER","STANDARD"
+"01460","+42.446396","-071.459405","LITTLETON","MA","MIDDLESEX","STANDARD"
+"01462","+42.583322","-071.752266","LUNENBURG","MA","WORCESTER","STANDARD"
+"01463","+42.446396","-071.459405","PEPPERELL","MA","MIDDLESEX","STANDARD"
+"01464","+42.446396","-071.459405","SHIRLEY","MA","MIDDLESEX","STANDARD"
+"01467","+42.487056","-071.613078","STILL RIVER","MA","WORCESTER","PO BOX ONLY"
+"01468","+42.555059","-072.072285","TEMPLETON","MA","WORCESTER","STANDARD"
+"01469","+42.446396","-071.459405","TOWNSEND","MA","MIDDLESEX","STANDARD"
+"01470","+42.446396","-071.459405","GROTON","MA","MIDDLESEX","UNIQUE"
+"01471","+42.446396","-071.459405","GROTON","MA","MIDDLESEX","UNIQUE"
+"01472","+42.446396","-071.459405","WEST GROTON","MA","MIDDLESEX","PO BOX ONLY"
+"01473","+42.549489","-071.913219","WESTMINSTER","MA","WORCESTER","STANDARD"
+"01474","+42.446396","-071.459405","WEST TOWNSEND","MA","MIDDLESEX","STANDARD"
+"01475","+42.661612","-072.047876","WINCHENDON","MA","WORCESTER","STANDARD"
+"01477","+42.364807","-071.896868","WINCHENDON SPRINGS","MA","WORCESTER","PO BOX ONLY"
+"01501","+42.184835","-071.947184","AUBURN","MA","WORCESTER","STANDARD"
+"01503","+42.312900","-071.841656","BERLIN","MA","WORCESTER","STANDARD"
+"01504","+42.114078","-071.799785","BLACKSTONE","MA","WORCESTER","STANDARD"
+"01505","+42.300037","-071.943458","BOYLSTON","MA","WORCESTER","STANDARD"
+"01506","+42.191690","-072.105011","BROOKFIELD","MA","WORCESTER","STANDARD"
+"01507","+42.132770","-071.972627","CHARLTON","MA","WORCESTER","STANDARD"
+"01508","+42.109748","-072.079455","CHARLTON CITY","MA","WORCESTER","PO BOX ONLY"
+"01509","+42.364807","-071.896868","CHARLTON DEPOT","MA","WORCESTER","PO BOX ONLY"
+"01510","+42.413972","-071.687523","CLINTON","MA","WORCESTER","STANDARD"
+"01515","+42.205311","-072.049907","EAST BROOKFIELD","MA","WORCESTER","STANDARD"
+"01516","+42.113076","-071.891139","DOUGLAS","MA","WORCESTER","STANDARD"
+"01517","+42.364807","-071.896868","EAST PRINCETON","MA","WORCESTER","PO BOX ONLY"
+"01518","+42.106405","-072.114045","FISKDALE","MA","WORCESTER","STANDARD"
+"01519","+42.203944","-071.682862","GRAFTON","MA","WORCESTER","STANDARD"
+"01520","+42.336791","-071.845316","HOLDEN","MA","WORCESTER","STANDARD"
+"01521","+42.061063","-072.163991","HOLLAND","MA","HAMPDEN","STANDARD"
+"01522","+42.264629","-071.795442","JEFFERSON","MA","WORCESTER","STANDARD"
+"01523","+42.427188","-071.911770","LANCASTER","MA","WORCESTER","STANDARD"
+"01524","+42.238192","-072.012379","LEICESTER","MA","WORCESTER","STANDARD"
+"01525","+42.364807","-071.896868","LINWOOD","MA","WORCESTER","PO BOX ONLY"
+"01526","+42.364807","-071.896868","MANCHAUG","MA","WORCESTER","PO BOX ONLY"
+"01527","+42.255642","-071.819961","MILLBURY","MA","WORCESTER","STANDARD"
+"01529","+42.124662","-071.846943","MILLVILLE","MA","WORCESTER","STANDARD"
+"01531","+42.320938","-072.128644","NEW BRAINTREE","MA","WORCESTER","STANDARD"
+"01532","+42.322118","-071.642820","NORTHBOROUGH","MA","WORCESTER","STANDARD"
+"01534","+42.207191","-071.856807","NORTHBRIDGE","MA","WORCESTER","STANDARD"
+"01535","+42.275382","-072.089338","NORTH BROOKFIELD","MA","WORCESTER","STANDARD"
+"01536","+42.407556","-071.860402","NORTH GRAFTON","MA","WORCESTER","STANDARD"
+"01537","+42.166241","-071.891052","NORTH OXFORD","MA","WORCESTER","STANDARD"
+"01538","+42.364807","-071.896868","NORTH UXBRIDGE","MA","WORCESTER","PO BOX ONLY"
+"01540","+42.109223","-071.855444","OXFORD","MA","WORCESTER","STANDARD"
+"01541","+42.451926","-071.880057","PRINCETON","MA","WORCESTER","STANDARD"
+"01542","+42.220085","-071.914361","ROCHDALE","MA","WORCESTER","STANDARD"
+"01543","+42.383516","-071.954630","RUTLAND","MA","WORCESTER","STANDARD"
+"01545","+42.286992","-071.715313","SHREWSBURY","MA","WORCESTER","STANDARD"
+"01546","+42.364807","-071.896868","SHREWSBURY","MA","WORCESTER","UNIQUE"
+"01550","+42.129251","-072.031155","SOUTHBRIDGE","MA","WORCESTER","STANDARD"
+"01560","+42.176544","-071.681912","SOUTH GRAFTON","MA","WORCESTER","STANDARD"
+"01561","+42.443539","-071.686137","SOUTH LANCASTER","MA","WORCESTER","PO BOX ONLY"
+"01562","+42.254837","-072.065612","SPENCER","MA","WORCESTER","STANDARD"
+"01564","+42.366765","-071.939375","STERLING","MA","WORCESTER","STANDARD"
+"01566","+42.102730","-072.080996","STURBRIDGE","MA","WORCESTER","STANDARD"
+"01568","+42.175591","-071.603197","UPTON","MA","WORCESTER","STANDARD"
+"01569","+42.059736","-071.638438","UXBRIDGE","MA","WORCESTER","STANDARD"
+"01570","+42.135100","-071.994169","WEBSTER","MA","WORCESTER","STANDARD"
+"01571","+42.059189","-071.937037","DUDLEY","MA","WORCESTER","STANDARD"
+"01580","+42.364807","-071.896868","WESTBOROUGH","MA","WORCESTER","UNIQUE"
+"01581","+42.255222","-071.845865","WESTBOROUGH","MA","WORCESTER","STANDARD"
+"01582","+42.364807","-071.896868","WESTBOROUGH","MA","WORCESTER","UNIQUE"
+"01583","+42.362783","-071.781215","WEST BOYLSTON","MA","WORCESTER","STANDARD"
+"01585","+42.235638","-072.172523","WEST BROOKFIELD","MA","WORCESTER","STANDARD"
+"01586","+42.364807","-071.896868","WEST MILLBURY","MA","WORCESTER","STANDARD"
+"01588","+42.166554","-071.899484","WHITINSVILLE","MA","WORCESTER","STANDARD"
+"01590","+42.126575","-071.755193","SUTTON","MA","WORCESTER","STANDARD"
+"01601","+42.265275","-071.879415","WORCESTER","MA","WORCESTER","STANDARD"
+"01602","+42.274595","-071.846966","WORCESTER","MA","WORCESTER","STANDARD"
+"01603","+42.245442","-071.839257","WORCESTER","MA","WORCESTER","STANDARD"
+"01604","+42.247955","-071.766780","WORCESTER","MA","WORCESTER","STANDARD"
+"01605","+42.288792","-071.796128","WORCESTER","MA","WORCESTER","STANDARD"
+"01606","+42.311834","-071.794465","WORCESTER","MA","WORCESTER","STANDARD"
+"01607","+42.226452","-071.792506","WORCESTER","MA","WORCESTER","STANDARD"
+"01608","+42.293501","-071.925696","WORCESTER","MA","WORCESTER","STANDARD"
+"01609","+42.282565","-071.827685","WORCESTER","MA","WORCESTER","STANDARD"
+"01610","+42.246483","-071.808915","WORCESTER","MA","WORCESTER","STANDARD"
+"01611","+42.239392","-071.878716","CHERRY VALLEY","MA","WORCESTER","STANDARD"
+"01612","+42.304675","-071.892875","PAXTON","MA","WORCESTER","STANDARD"
+"01613","+42.293316","-071.801971","WORCESTER","MA","WORCESTER","STANDARD"
+"01614","+42.364807","-071.896868","WORCESTER","MA","WORCESTER","STANDARD"
+"01615","+42.364807","-071.896868","WORCESTER","MA","WORCESTER","STANDARD"
+"01653","+42.364807","-071.896868","WORCESTER","MA","WORCESTER","UNIQUE"
+"01654","+42.364807","-071.896868","WORCESTER","MA","WORCESTER","UNIQUE"
+"01655","+42.364807","-071.896868","WORCESTER","MA","WORCESTER","STANDARD"
+"01701","+42.446396","-071.459405","FRAMINGHAM","MA","MIDDLESEX","STANDARD"
+"01702","+42.446396","-071.459405","FRAMINGHAM","MA","MIDDLESEX","STANDARD"
+"01703","+42.446396","-071.459405","FRAMINGHAM","MA","MIDDLESEX","STANDARD"
+"01704","+42.446396","-071.459405","FRAMINGHAM","MA","MIDDLESEX","STANDARD"
+"01705","+42.446396","-071.459405","FRAMINGHAM","MA","MIDDLESEX","STANDARD"
+"01718","+42.446396","-071.459405","VILLAGE OF NAGOG WOODS","MA","MIDDLESEX","STANDARD"
+"01719","+42.446396","-071.459405","BOXBOROUGH","MA","MIDDLESEX","STANDARD"
+"01720","+42.446396","-071.459405","ACTON","MA","MIDDLESEX","STANDARD"
+"01721","+42.446396","-071.459405","ASHLAND","MA","MIDDLESEX","STANDARD"
+"01730","+42.446396","-071.459405","BEDFORD","MA","MIDDLESEX","STANDARD"
+"01731","+42.446396","-071.459405","HANSCOM AFB","MA","MIDDLESEX","STANDARD"
+"01740","+42.436043","-071.605916","BOLTON","MA","WORCESTER","STANDARD"
+"01741","+42.446396","-071.459405","CARLISLE","MA","MIDDLESEX","STANDARD"
+"01742","+42.446396","-071.459405","CONCORD","MA","MIDDLESEX","STANDARD"
+"01745","+42.293442","-071.502762","FAYVILLE","MA","WORCESTER","STANDARD"
+"01746","+42.446396","-071.459405","HOLLISTON","MA","MIDDLESEX","STANDARD"
+"01747","+42.127515","-071.533138","HOPEDALE","MA","WORCESTER","STANDARD"
+"01748","+42.446396","-071.459405","HOPKINTON","MA","MIDDLESEX","STANDARD"
+"01749","+42.446396","-071.459405","HUDSON","MA","MIDDLESEX","STANDARD"
+"01752","+42.446396","-071.459405","MARLBOROUGH","MA","MIDDLESEX","STANDARD"
+"01754","+42.446396","-071.459405","MAYNARD","MA","MIDDLESEX","STANDARD"
+"01756","+42.100352","-071.546961","MENDON","MA","WORCESTER","STANDARD"
+"01757","+42.147087","-071.528085","MILFORD","MA","WORCESTER","STANDARD"
+"01760","+42.446396","-071.459405","NATICK","MA","MIDDLESEX","STANDARD"
+"01770","+42.446396","-071.459405","SHERBORN","MA","MIDDLESEX","STANDARD"
+"01772","+42.296842","-071.533229","SOUTHBOROUGH","MA","WORCESTER","STANDARD"
+"01773","+42.446396","-071.459405","LINCOLN","MA","MIDDLESEX","STANDARD"
+"01775","+42.446396","-071.459405","STOW","MA","MIDDLESEX","STANDARD"
+"01776","+42.446396","-071.459405","SUDBURY","MA","MIDDLESEX","STANDARD"
+"01778","+42.446396","-071.459405","WAYLAND","MA","MIDDLESEX","STANDARD"
+"01784","+42.446396","-071.459405","WOODVILLE","MA","MIDDLESEX","PO BOX ONLY"
+"01801","+42.488595","-071.157271","WOBURN","MA","MIDDLESEX","STANDARD"
+"01803","+42.504844","-071.201539","BURLINGTON","MA","MIDDLESEX","STANDARD"
+"01805","+42.446396","-071.459405","BURLINGTON","MA","MIDDLESEX","UNIQUE"
+"01806","+42.446396","-071.459405","WOBURN","MA","MIDDLESEX","UNIQUE"
+"01807","+42.446396","-071.459405","WOBURN","MA","MIDDLESEX","UNIQUE"
+"01808","+42.446396","-071.459405","WOBURN","MA","MIDDLESEX","UNIQUE"
+"01810","+42.647991","-071.165685","ANDOVER","MA","ESSEX","STANDARD"
+"01812","+42.647191","-071.184202","ANDOVER","MA","ESSEX","UNIQUE"
+"01813","+42.446396","-071.459405","WOBURN","MA","MIDDLESEX","UNIQUE"
+"01815","+42.446396","-071.459405","WOBURN","MA","MIDDLESEX","UNIQUE"
+"01821","+42.446396","-071.459405","BILLERICA","MA","MIDDLESEX","STANDARD"
+"01822","+42.446396","-071.459405","BILLERICA","MA","MIDDLESEX","STANDARD"
+"01824","+42.446396","-071.459405","CHELMSFORD","MA","MIDDLESEX","STANDARD"
+"01826","+42.446396","-071.459405","DRACUT","MA","MIDDLESEX","STANDARD"
+"01827","+42.446396","-071.459405","DUNSTABLE","MA","MIDDLESEX","STANDARD"
+"01830","+42.792639","-071.072501","HAVERHILL","MA","ESSEX","STANDARD"
+"01831","+42.771095","-071.122054","HAVERHILL","MA","ESSEX","STANDARD"
+"01832","+42.789627","-071.126562","HAVERHILL","MA","ESSEX","STANDARD"
+"01833","+42.723770","-070.981298","GEORGETOWN","MA","ESSEX","STANDARD"
+"01834","+42.751074","-071.021437","GROVELAND","MA","ESSEX","STANDARD"
+"01835","+42.752844","-071.084301","HAVERHILL","MA","ESSEX","STANDARD"
+"01840","+42.707340","-071.161052","LAWRENCE","MA","ESSEX","STANDARD"
+"01841","+42.709790","-071.164402","LAWRENCE","MA","ESSEX","STANDARD"
+"01842","+42.635443","-070.879123","LAWRENCE","MA","ESSEX","STANDARD"
+"01843","+42.710370","-071.088303","LAWRENCE","MA","ESSEX","STANDARD"
+"01844","+42.731840","-071.186915","METHUEN","MA","ESSEX","STANDARD"
+"01845","+42.672835","-071.087689","NORTH ANDOVER","MA","ESSEX","STANDARD"
+"01850","+42.446396","-071.459405","LOWELL","MA","MIDDLESEX","STANDARD"
+"01851","+42.446396","-071.459405","LOWELL","MA","MIDDLESEX","STANDARD"
+"01852","+42.446396","-071.459405","LOWELL","MA","MIDDLESEX","STANDARD"
+"01853","+42.446396","-071.459405","LOWELL","MA","MIDDLESEX","STANDARD"
+"01854","+42.446396","-071.459405","LOWELL","MA","MIDDLESEX","STANDARD"
+"01860","+42.802441","-071.089600","MERRIMAC","MA","ESSEX","STANDARD"
+"01862","+42.446396","-071.459405","NORTH BILLERICA","MA","MIDDLESEX","STANDARD"
+"01863","+42.446396","-071.459405","NORTH CHELMSFORD","MA","MIDDLESEX","STANDARD"
+"01864","+42.581332","-071.083725","NORTH READING","MA","MIDDLESEX","STANDARD"
+"01865","+42.446396","-071.459405","NUTTING LAKE","MA","MIDDLESEX","PO BOX ONLY"
+"01866","+42.446396","-071.459405","PINEHURST","MA","MIDDLESEX","PO BOX ONLY"
+"01867","+42.537065","-071.107172","READING","MA","MIDDLESEX","STANDARD"
+"01876","+42.446396","-071.459405","TEWKSBURY","MA","MIDDLESEX","STANDARD"
+"01879","+42.446396","-071.459405","TYNGSBORO","MA","MIDDLESEX","STANDARD"
+"01880","+42.499891","-071.068829","WAKEFIELD","MA","MIDDLESEX","STANDARD"
+"01885","+42.635443","-070.879123","WEST BOXFORD","MA","ESSEX","PO BOX ONLY"
+"01886","+42.446396","-071.459405","WESTFORD","MA","MIDDLESEX","STANDARD"
+"01887","+42.561782","-071.173888","WILMINGTON","MA","MIDDLESEX","STANDARD"
+"01888","+42.446396","-071.459405","WOBURN","MA","MIDDLESEX","STANDARD"
+"01889","+42.571633","-071.109646","NORTH READING","MA","MIDDLESEX","UNIQUE"
+"01890","+42.454545","-071.148779","WINCHESTER","MA","MIDDLESEX","STANDARD"
+"01899","+42.635443","-070.879123","ANDOVER","MA","ESSEX","UNIQUE"
+"01901","+42.461246","-070.946743","LYNN","MA","ESSEX","STANDARD"
+"01902","+42.473195","-070.928593","LYNN","MA","ESSEX","STANDARD"
+"01903","+42.635443","-070.879123","LYNN","MA","ESSEX","STANDARD"
+"01904","+42.488896","-070.964694","LYNN","MA","ESSEX","STANDARD"
+"01905","+42.469395","-070.972844","LYNN","MA","ESSEX","STANDARD"
+"01906","+42.472112","-070.997794","SAUGUS","MA","ESSEX","STANDARD"
+"01907","+42.513295","-070.905893","SWAMPSCOTT","MA","ESSEX","STANDARD"
+"01908","+42.427296","-070.922442","NAHANT","MA","ESSEX","STANDARD"
+"01910","+42.454796","-070.974694","LYNN","MA","ESSEX","UNIQUE"
+"01913","+42.853539","-070.948211","AMESBURY","MA","ESSEX","STANDARD"
+"01915","+42.565145","-070.853843","BEVERLY","MA","ESSEX","STANDARD"
+"01921","+42.683256","-071.017403","BOXFORD","MA","ESSEX","STANDARD"
+"01922","+42.763216","-070.928120","BYFIELD","MA","ESSEX","STANDARD"
+"01923","+42.577188","-070.949245","DANVERS","MA","ESSEX","STANDARD"
+"01929","+42.627810","-070.780576","ESSEX","MA","ESSEX","STANDARD"
+"01930","+42.630011","-070.694179","GLOUCESTER","MA","ESSEX","STANDARD"
+"01931","+42.635443","-070.879123","GLOUCESTER","MA","ESSEX","STANDARD"
+"01936","+42.635443","-070.879123","HAMILTON","MA","ESSEX","PO BOX ONLY"
+"01937","+42.635443","-070.879123","HATHORNE","MA","ESSEX","PO BOX ONLY"
+"01938","+42.685710","-070.864132","IPSWICH","MA","ESSEX","STANDARD"
+"01940","+42.533732","-071.028775","LYNNFIELD","MA","ESSEX","STANDARD"
+"01944","+42.579503","-070.755062","MANCHESTER","MA","ESSEX","STANDARD"
+"01945","+42.561420","-070.770768","MARBLEHEAD","MA","ESSEX","STANDARD"
+"01949","+42.644942","-071.087905","MIDDLETON","MA","ESSEX","STANDARD"
+"01950","+42.809650","-070.873196","NEWBURYPORT","MA","ESSEX","STANDARD"
+"01951","+42.777524","-070.867246","NEWBURY","MA","ESSEX","STANDARD"
+"01952","+42.851234","-070.865667","SALISBURY","MA","ESSEX","STANDARD"
+"01960","+42.536996","-070.973646","PEABODY","MA","ESSEX","STANDARD"
+"01961","+42.635443","-070.879123","PEABODY","MA","ESSEX","STANDARD"
+"01965","+42.558113","-070.825743","PRIDES CROSSING","MA","ESSEX","PO BOX ONLY"
+"01966","+42.657866","-070.618057","ROCKPORT","MA","ESSEX","STANDARD"
+"01969","+42.716155","-070.892754","ROWLEY","MA","ESSEX","STANDARD"
+"01970","+42.512946","-070.904237","SALEM","MA","ESSEX","STANDARD"
+"01971","+42.635443","-070.879123","SALEM","MA","ESSEX","STANDARD"
+"01982","+42.626664","-070.851125","SOUTH HAMILTON","MA","ESSEX","STANDARD"
+"01983","+42.661793","-070.954487","TOPSFIELD","MA","ESSEX","STANDARD"
+"01984","+42.597691","-070.873200","WENHAM","MA","ESSEX","STANDARD"
+"01985","+42.794140","-070.971068","WEST NEWBURY","MA","ESSEX","STANDARD"
+"02018","+41.970474","-070.701357","ACCORD","MA","PLYMOUTH","STANDARD"
+"02019","+42.076501","-071.470464","BELLINGHAM","MA","NORFOLK","STANDARD"
+"02020","+42.081825","-070.643868","BRANT ROCK","MA","PLYMOUTH","PO BOX ONLY"
+"02021","+42.179146","-071.121185","CANTON","MA","NORFOLK","STANDARD"
+"02025","+42.233938","-070.815826","COHASSET","MA","NORFOLK","STANDARD"
+"02026","+42.244733","-071.181141","DEDHAM","MA","NORFOLK","STANDARD"
+"02027","+42.180048","-071.089230","DEDHAM","MA","NORFOLK","STANDARD"
+"02030","+42.236114","-071.283072","DOVER","MA","NORFOLK","STANDARD"
+"02031","+41.998799","-071.200894","EAST MANSFIELD","MA","BRISTOL","STANDARD"
+"02032","+42.153786","-071.214550","EAST WALPOLE","MA","NORFOLK","STANDARD"
+"02035","+42.062204","-071.235774","FOXBORO","MA","NORFOLK","STANDARD"
+"02038","+42.088680","-071.404814","FRANKLIN","MA","NORFOLK","STANDARD"
+"02040","+41.970474","-070.701357","GREENBUSH","MA","PLYMOUTH","STANDARD"
+"02041","+42.069642","-070.649075","GREEN HARBOR","MA","PLYMOUTH","PO BOX ONLY"
+"02043","+42.212105","-070.884989","HINGHAM","MA","PLYMOUTH","STANDARD"
+"02044","+41.970474","-070.701357","HINGHAM","MA","PLYMOUTH","UNIQUE"
+"02045","+42.284413","-070.873659","HULL","MA","PLYMOUTH","STANDARD"
+"02047","+42.142836","-070.693530","HUMAROCK","MA","PLYMOUTH","PO BOX ONLY"
+"02048","+42.013182","-071.218373","MANSFIELD","MA","BRISTOL","STANDARD"
+"02050","+42.111805","-070.710744","MARSHFIELD","MA","PLYMOUTH","STANDARD"
+"02051","+42.151202","-070.734146","MARSHFIELD HILLS","MA","PLYMOUTH","PO BOX ONLY"
+"02052","+42.181265","-071.309934","MEDFIELD","MA","NORFOLK","STANDARD"
+"02053","+42.156282","-071.427663","MEDWAY","MA","NORFOLK","STANDARD"
+"02054","+42.165249","-071.361260","MILLIS","MA","NORFOLK","STANDARD"
+"02055","+41.970474","-070.701357","MINOT","MA","PLYMOUTH","STANDARD"
+"02056","+42.117511","-071.331793","NORFOLK","MA","NORFOLK","STANDARD"
+"02059","+41.970474","-070.701357","NORTH MARSHFIELD","MA","PLYMOUTH","PO BOX ONLY"
+"02060","+41.970474","-070.701357","NORTH SCITUATE","MA","PLYMOUTH","STANDARD"
+"02061","+42.154145","-070.823035","NORWELL","MA","PLYMOUTH","STANDARD"
+"02062","+42.182798","-071.196277","NORWOOD","MA","NORFOLK","STANDARD"
+"02065","+42.097219","-070.651567","OCEAN BLUFF","MA","PLYMOUTH","STANDARD"
+"02066","+42.207254","-070.770188","SCITUATE","MA","PLYMOUTH","STANDARD"
+"02067","+42.105288","-071.184785","SHARON","MA","NORFOLK","STANDARD"
+"02070","+42.180048","-071.089230","SHELDONVILLE","MA","NORFOLK","PO BOX ONLY"
+"02071","+42.100399","-071.270933","SOUTH WALPOLE","MA","NORFOLK","STANDARD"
+"02072","+42.118416","-071.105733","STOUGHTON","MA","NORFOLK","STANDARD"
+"02081","+42.148624","-071.255533","WALPOLE","MA","NORFOLK","STANDARD"
+"02090","+42.220548","-071.199238","WESTWOOD","MA","NORFOLK","STANDARD"
+"02093","+42.054311","-071.371169","WRENTHAM","MA","NORFOLK","STANDARD"
+"02101","+42.370567","-071.026964","BOSTON","MA","SUFFOLK","STANDARD"
+"02102","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02103","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02104","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02105","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02106","+42.354318","-071.073449","BOSTON","MA","SUFFOLK","STANDARD"
+"02107","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02108","+42.353806","-071.102446","BOSTON","MA","SUFFOLK","STANDARD"
+"02109","+42.360027","-071.054495","BOSTON","MA","SUFFOLK","STANDARD"
+"02110","+42.352847","-071.051466","BOSTON","MA","SUFFOLK","STANDARD"
+"02111","+42.351047","-071.059365","BOSTON","MA","SUFFOLK","STANDARD"
+"02112","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02113","+42.365398","-071.055001","BOSTON","MA","SUFFOLK","STANDARD"
+"02114","+42.362097","-071.023661","BOSTON","MA","SUFFOLK","STANDARD"
+"02115","+42.342043","-071.096848","BOSTON","MA","SUFFOLK","STANDARD"
+"02116","+42.347207","-071.086095","BOSTON","MA","SUFFOLK","STANDARD"
+"02117","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02118","+42.336162","-071.072854","BOSTON","MA","SUFFOLK","STANDARD"
+"02119","+42.323077","-071.084608","BOSTON","MA","SUFFOLK","STANDARD"
+"02120","+42.332484","-071.096416","BOSTON","MA","SUFFOLK","STANDARD"
+"02121","+42.307098","-071.081645","BOSTON","MA","SUFFOLK","STANDARD"
+"02122","+42.296580","-071.055215","BOSTON","MA","SUFFOLK","STANDARD"
+"02123","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02124","+42.286784","-071.071045","BOSTON","MA","SUFFOLK","STANDARD"
+"02125","+42.314760","-071.067244","BOSTON","MA","SUFFOLK","STANDARD"
+"02126","+42.301247","-071.105195","MATTAPAN","MA","SUFFOLK","STANDARD"
+"02127","+42.329023","-071.020343","BOSTON","MA","SUFFOLK","STANDARD"
+"02128","+42.364197","-071.025694","BOSTON","MA","SUFFOLK","STANDARD"
+"02129","+42.382588","-071.065287","CHARLESTOWN","MA","SUFFOLK","STANDARD"
+"02130","+42.309661","-071.121097","JAMAICA PLAIN","MA","SUFFOLK","STANDARD"
+"02131","+42.284197","-071.120896","ROSLINDALE","MA","SUFFOLK","STANDARD"
+"02132","+42.277897","-071.155833","WEST ROXBURY","MA","SUFFOLK","STANDARD"
+"02133","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02134","+42.357169","-071.112646","ALLSTON","MA","SUFFOLK","STANDARD"
+"02135","+42.349768","-071.104888","BRIGHTON","MA","SUFFOLK","STANDARD"
+"02136","+42.254248","-071.129321","HYDE PARK","MA","SUFFOLK","STANDARD"
+"02137","+42.338947","-070.919635","READVILLE","MA","SUFFOLK","STANDARD"
+"02138","+42.380442","-071.132947","CAMBRIDGE","MA","MIDDLESEX","STANDARD"
+"02139","+42.365146","-071.101842","CAMBRIDGE","MA","MIDDLESEX","STANDARD"
+"02140","+42.393246","-071.133833","CAMBRIDGE","MA","MIDDLESEX","STANDARD"
+"02141","+42.368673","-071.083596","CAMBRIDGE","MA","MIDDLESEX","STANDARD"
+"02142","+42.362840","-071.084814","CAMBRIDGE","MA","MIDDLESEX","STANDARD"
+"02143","+42.380920","-071.098896","SOMERVILLE","MA","MIDDLESEX","STANDARD"
+"02144","+42.402696","-071.120220","SOMERVILLE","MA","MIDDLESEX","STANDARD"
+"02145","+42.391046","-071.095146","SOMERVILLE","MA","MIDDLESEX","STANDARD"
+"02148","+42.436545","-071.085396","MALDEN","MA","MIDDLESEX","STANDARD"
+"02149","+42.407396","-071.051183","EVERETT","MA","MIDDLESEX","STANDARD"
+"02150","+42.378197","-071.038894","CHELSEA","MA","SUFFOLK","STANDARD"
+"02151","+42.366303","-071.020494","REVERE","MA","SUFFOLK","STANDARD"
+"02152","+42.378447","-070.981679","WINTHROP","MA","SUFFOLK","STANDARD"
+"02153","+42.446396","-071.459405","MEDFORD","MA","MIDDLESEX","STANDARD"
+"02155","+42.422095","-071.109297","MEDFORD","MA","MIDDLESEX","STANDARD"
+"02156","+42.446396","-071.459405","WEST MEDFORD","MA","MIDDLESEX","STANDARD"
+"02163","+42.325320","-071.112159","BOSTON","MA","SUFFOLK","STANDARD"
+"02169","+42.241799","-071.006042","QUINCY","MA","NORFOLK","STANDARD"
+"02170","+42.267248","-071.016742","QUINCY","MA","NORFOLK","STANDARD"
+"02171","+42.284898","-071.014243","QUINCY","MA","NORFOLK","STANDARD"
+"02176","+42.458995","-071.053095","MELROSE","MA","MIDDLESEX","STANDARD"
+"02177","+42.446396","-071.459405","MELROSE","MA","MIDDLESEX","STANDARD"
+"02180","+42.474595","-071.098146","STONEHAM","MA","MIDDLESEX","STANDARD"
+"02184","+42.202216","-071.005192","BRAINTREE","MA","NORFOLK","STANDARD"
+"02185","+42.180048","-071.089230","BRAINTREE","MA","NORFOLK","STANDARD"
+"02186","+42.240598","-071.078494","MILTON","MA","NORFOLK","STANDARD"
+"02187","+42.180048","-071.089230","MILTON VILLAGE","MA","NORFOLK","STANDARD"
+"02188","+42.207940","-070.955140","WEYMOUTH","MA","NORFOLK","STANDARD"
+"02189","+42.210649","-070.932318","WEYMOUTH","MA","NORFOLK","STANDARD"
+"02190","+42.167841","-070.950740","WEYMOUTH","MA","NORFOLK","STANDARD"
+"02191","+42.251499","-070.944840","WEYMOUTH","MA","NORFOLK","STANDARD"
+"02196","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02199","+42.347247","-071.082395","BOSTON","MA","SUFFOLK","STANDARD"
+"02201","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02202","+42.361094","-071.061814","BOSTON","MA","SUFFOLK","UNIQUE"
+"02203","+42.361485","-071.060364","BOSTON","MA","SUFFOLK","STANDARD"
+"02204","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02205","+42.350334","-071.053877","BOSTON","MA","SUFFOLK","STANDARD"
+"02206","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02207","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02208","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02209","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02210","+42.347547","-071.040645","BOSTON","MA","SUFFOLK","STANDARD"
+"02211","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02212","+42.446396","-071.459405","BOSTON","MA","MIDDLESEX","UNIQUE"
+"02215","+42.345079","-071.107653","BOSTON","MA","SUFFOLK","STANDARD"
+"02216","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02217","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02222","+42.364381","-071.063314","BOSTON","MA","SUFFOLK","STANDARD"
+"02228",,,"EAST BOSTON","MA","SUFFOLK","STANDARD"
+"02238","+42.446396","-071.459405","CAMBRIDGE","MA","MIDDLESEX","STANDARD"
+"02239","+42.446396","-071.459405","CAMBRIDGE","MA","MIDDLESEX","UNIQUE"
+"02241","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02266","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02269","+42.180048","-071.089230","QUINCY","MA","NORFOLK","STANDARD"
+"02283","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02284","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","STANDARD"
+"02293","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02295","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02297","+42.338947","-070.919635","BOSTON","MA","SUFFOLK","UNIQUE"
+"02301","+42.079399","-071.039990","BROCKTON","MA","PLYMOUTH","STANDARD"
+"02302","+42.084750","-071.000189","BROCKTON","MA","PLYMOUTH","STANDARD"
+"02303","+41.970474","-070.701357","BROCKTON","MA","PLYMOUTH","STANDARD"
+"02304","+41.970474","-070.701357","BROCKTON","MA","PLYMOUTH","STANDARD"
+"02305","+41.970474","-070.701357","BROCKTON","MA","PLYMOUTH","STANDARD"
+"02322","+42.126049","-071.048216","AVON","MA","NORFOLK","STANDARD"
+"02324","+41.973741","-070.976558","BRIDGEWATER","MA","PLYMOUTH","STANDARD"
+"02325","+41.987250","-070.972786","BRIDGEWATER","MA","PLYMOUTH","UNIQUE"
+"02327","+42.040708","-070.827245","BRYANTVILLE","MA","PLYMOUTH","PO BOX ONLY"
+"02330","+41.896238","-070.759689","CARVER","MA","PLYMOUTH","STANDARD"
+"02331","+41.970474","-070.701357","DUXBURY","MA","PLYMOUTH","STANDARD"
+"02332","+42.052985","-070.710808","DUXBURY","MA","PLYMOUTH","STANDARD"
+"02333","+42.022850","-070.931056","EAST BRIDGEWATER","MA","PLYMOUTH","STANDARD"
+"02334","+42.023528","-071.132397","EASTON","MA","BRISTOL","PO BOX ONLY"
+"02337","+42.022225","-070.931588","ELMWOOD","MA","PLYMOUTH","PO BOX ONLY"
+"02338","+41.988351","-070.860578","HALIFAX","MA","PLYMOUTH","STANDARD"
+"02339","+42.123534","-070.851048","HANOVER","MA","PLYMOUTH","STANDARD"
+"02340","+42.123534","-070.851048","HANOVER","MA","PLYMOUTH","UNIQUE"
+"02341","+42.055701","-070.875936","HANSON","MA","PLYMOUTH","STANDARD"
+"02343","+42.144424","-071.002890","HOLBROOK","MA","NORFOLK","STANDARD"
+"02344","+41.970474","-070.701357","MIDDLEBORO","MA","PLYMOUTH","UNIQUE"
+"02345","+41.888198","-070.581029","MANOMET","MA","PLYMOUTH","PO BOX ONLY"
+"02346","+41.915054","-070.882035","MIDDLEBORO","MA","PLYMOUTH","STANDARD"
+"02347","+41.843757","-070.959981","LAKEVILLE","MA","PLYMOUTH","STANDARD"
+"02348","+41.970474","-070.701357","MIDDLEBORO","MA","PLYMOUTH","UNIQUE"
+"02349","+41.970474","-070.701357","MIDDLEBORO","MA","PLYMOUTH","UNIQUE"
+"02350","+42.018525","-070.847486","MONPONSETT","MA","PLYMOUTH","PO BOX ONLY"
+"02351","+42.117490","-070.959888","ABINGTON","MA","PLYMOUTH","STANDARD"
+"02355","+41.916918","-070.801331","NORTH CARVER","MA","PLYMOUTH","PO BOX ONLY"
+"02356","+42.053408","-071.120330","NORTH EASTON","MA","BRISTOL","STANDARD"
+"02357","+42.064499","-071.087091","NORTH EASTON","MA","BRISTOL","UNIQUE"
+"02358","+41.953510","-070.713109","NORTH PEMBROKE","MA","PLYMOUTH","PO BOX ONLY"
+"02359","+42.065702","-070.800778","PEMBROKE","MA","PLYMOUTH","STANDARD"
+"02360","+41.886207","-070.638717","PLYMOUTH","MA","PLYMOUTH","STANDARD"
+"02361","+41.970474","-070.701357","PLYMOUTH","MA","PLYMOUTH","STANDARD"
+"02362","+41.970474","-070.701357","PLYMOUTH","MA","PLYMOUTH","STANDARD"
+"02364","+41.979405","-070.744813","KINGSTON","MA","PLYMOUTH","STANDARD"
+"02366","+41.850087","-070.704431","SOUTH CARVER","MA","PLYMOUTH","PO BOX ONLY"
+"02367","+41.969140","-070.812299","PLYMPTON","MA","PLYMOUTH","STANDARD"
+"02368","+42.171467","-071.055602","RANDOLPH","MA","NORFOLK","STANDARD"
+"02370","+41.954199","-070.885095","ROCKLAND","MA","PLYMOUTH","STANDARD"
+"02375","+42.023199","-071.111091","SOUTH EASTON","MA","BRISTOL","STANDARD"
+"02379","+42.021650","-071.023588","WEST BRIDGEWATER","MA","PLYMOUTH","STANDARD"
+"02381","+41.931602","-070.561051","WHITE HORSE BEACH","MA","PLYMOUTH","PO BOX ONLY"
+"02382","+42.078500","-070.940837","WHITMAN","MA","PLYMOUTH","STANDARD"
+"02420","+42.456310","-071.216650","LEXINGTON","MA","MIDDLESEX","STANDARD"
+"02421","+42.442567","-071.226453","LEXINGTON","MA","MIDDLESEX","STANDARD"
+"02445","+42.318097","-071.143697","BROOKLINE","MA","NORFOLK","STANDARD"
+"02446","+42.343097","-071.123046","BROOKLINE","MA","NORFOLK","STANDARD"
+"02447","+42.180048","-071.089230","BROOKLINE VILLAGE","MA","NORFOLK","STANDARD"
+"02451","+42.398588","-071.245050","WALTHAM","MA","MIDDLESEX","STANDARD"
+"02452","+42.394319","-071.218049","WALTHAM","MA","MIDDLESEX","STANDARD"
+"02453","+42.365396","-071.231650","WALTHAM","MA","MIDDLESEX","STANDARD"
+"02454","+42.356719","-071.250479","WALTHAM","MA","MIDDLESEX","STANDARD"
+"02455",,,"NORTH WALTHAM","MA","MIDDLESEX","STANDARD"
+"02456","+42.446396","-071.459405","NEW TOWN","MA","MIDDLESEX","STANDARD"
+"02457","+42.180048","-071.089230","BABSON PARK","MA","NORFOLK","STANDARD"
+"02458","+42.385096","-071.208399","NEWTON","MA","MIDDLESEX","STANDARD"
+"02459","+42.334146","-071.183298","NEWTON CENTER","MA","MIDDLESEX","STANDARD"
+"02460","+42.374296","-071.182371","NEWTONVILLE","MA","MIDDLESEX","STANDARD"
+"02461","+42.361196","-071.205349","NEWTON HIGHLANDS","MA","MIDDLESEX","STANDARD"
+"02462","+42.349496","-071.209699","NEWTON LOWER FALLS","MA","MIDDLESEX","STANDARD"
+"02464","+42.365990","-071.221849","NEWTON UPPER FALLS","MA","MIDDLESEX","STANDARD"
+"02465","+42.378145","-071.213199","WEST NEWTON","MA","MIDDLESEX","STANDARD"
+"02466","+42.346696","-071.224957","AUBURNDALE","MA","MIDDLESEX","STANDARD"
+"02467","+42.357564","-071.211649","CHESTNUT HILL","MA","MIDDLESEX","STANDARD"
+"02468","+42.327146","-071.231534","WABAN","MA","MIDDLESEX","STANDARD"
+"02471","+42.446396","-071.459405","WATERTOWN","MA","MIDDLESEX","STANDARD"
+"02472","+42.363096","-071.201398","WATERTOWN","MA","MIDDLESEX","STANDARD"
+"02474","+42.417595","-071.159696","ARLINGTON","MA","MIDDLESEX","STANDARD"
+"02475","+42.446396","-071.459405","ARLINGTON HEIGHTS","MA","MIDDLESEX","STANDARD"
+"02476","+42.379146","-071.184299","ARLINGTON","MA","MIDDLESEX","STANDARD"
+"02477","+42.446396","-071.459405","WATERTOWN","MA","MIDDLESEX","UNIQUE"
+"02478","+42.412795","-071.204399","BELMONT","MA","MIDDLESEX","STANDARD"
+"02479","+42.446396","-071.459405","WAVERLEY","MA","MIDDLESEX","STANDARD"
+"02481","+42.310597","-071.274652","WELLESLEY HILLS","MA","NORFOLK","STANDARD"
+"02482","+42.294546","-071.299201","WELLESLEY","MA","NORFOLK","STANDARD"
+"02492","+42.279797","-071.250060","NEEDHAM","MA","NORFOLK","STANDARD"
+"02493","+42.375925","-071.227208","WESTON","MA","MIDDLESEX","STANDARD"
+"02494","+42.300147","-071.263150","NEEDHAM HEIGHTS","MA","NORFOLK","STANDARD"
+"02495","+42.446396","-071.459405","NONANTUM","MA","MIDDLESEX","STANDARD"
+"02532","+41.745505","-070.590471","BUZZARDS BAY","MA","BARNSTABLE","STANDARD"
+"02534","+41.669373","-070.623370","CATAUMET","MA","BARNSTABLE","PO BOX ONLY"
+"02535","+41.379034","-070.673082","CHILMARK","MA","DUKES","STANDARD"
+"02536","+41.662506","-070.562843","EAST FALMOUTH","MA","BARNSTABLE","STANDARD"
+"02537","+41.728320","-070.439975","EAST SANDWICH","MA","BARNSTABLE","STANDARD"
+"02538","+41.775440","-070.660562","EAST WAREHAM","MA","PLYMOUTH","STANDARD"
+"02539","+41.401176","-070.552054","EDGARTOWN","MA","DUKES","STANDARD"
+"02540","+41.614199","-070.493263","FALMOUTH","MA","BARNSTABLE","STANDARD"
+"02541","+41.799312","-070.308662","FALMOUTH","MA","BARNSTABLE","STANDARD"
+"02542","+41.653080","-070.553727","BUZZARDS BAY","MA","BARNSTABLE","STANDARD"
+"02543","+41.593809","-070.646442","WOODS HOLE","MA","BARNSTABLE","STANDARD"
+"02552","+41.379836","-070.643092","MENEMSHA","MA","DUKES","PO BOX ONLY"
+"02553","+41.673360","-070.608047","MONUMENT BEACH","MA","BARNSTABLE","PO BOX ONLY"
+"02554","+41.287647","-070.086650","NANTUCKET","MA","NANTUCKET","STANDARD"
+"02556","+41.652967","-070.375475","NORTH FALMOUTH","MA","BARNSTABLE","STANDARD"
+"02557","+41.417376","-070.560032","OAK BLUFFS","MA","DUKES","PO BOX ONLY"
+"02558","+41.747560","-070.658164","ONSET","MA","PLYMOUTH","PO BOX ONLY"
+"02559","+41.694771","-070.622769","POCASSET","MA","BARNSTABLE","STANDARD"
+"02561","+41.770254","-070.533664","SAGAMORE","MA","BARNSTABLE","PO BOX ONLY"
+"02562","+41.793263","-070.519584","SAGAMORE BEACH","MA","BARNSTABLE","STANDARD"
+"02563","+41.711291","-070.477482","SANDWICH","MA","BARNSTABLE","STANDARD"
+"02564","+41.273949","-070.015545","SIASCONSET","MA","NANTUCKET","STANDARD"
+"02565","+41.799312","-070.308662","SILVER BEACH","MA","BARNSTABLE","STANDARD"
+"02568","+41.415950","-070.595235","VINEYARD HAVEN","MA","DUKES","STANDARD"
+"02571","+41.760216","-070.694662","WAREHAM","MA","PLYMOUTH","STANDARD"
+"02573","+41.379836","-070.643092","WEST CHOP","MA","DUKES","STANDARD"
+"02574","+41.603946","-070.638189","WEST FALMOUTH","MA","BARNSTABLE","PO BOX ONLY"
+"02575","+41.421250","-070.642806","WEST TISBURY","MA","DUKES","PO BOX ONLY"
+"02576","+41.769863","-070.749688","WEST WAREHAM","MA","PLYMOUTH","STANDARD"
+"02584","+41.277794","-070.046019","NANTUCKET","MA","NANTUCKET","STANDARD"
+"02601","+41.829813","-070.138834","HYANNIS","MA","BARNSTABLE","STANDARD"
+"02630","+41.697313","-070.301394","BARNSTABLE","MA","BARNSTABLE","STANDARD"
+"02631","+41.852997","-070.044462","BREWSTER","MA","BARNSTABLE","STANDARD"
+"02632","+41.796311","-070.175129","CENTERVILLE","MA","BARNSTABLE","STANDARD"
+"02633","+41.859559","-070.046800","CHATHAM","MA","BARNSTABLE","STANDARD"
+"02634","+41.799312","-070.308662","CENTERVILLE","MA","BARNSTABLE","STANDARD"
+"02635","+41.624341","-070.436380","COTUIT","MA","BARNSTABLE","STANDARD"
+"02636","+41.799312","-070.308662","CENTERVILLE","MA","BARNSTABLE","STANDARD"
+"02637","+41.701438","-070.277212","CUMMAQUID","MA","BARNSTABLE","PO BOX ONLY"
+"02638","+41.725716","-070.089142","DENNIS","MA","BARNSTABLE","STANDARD"
+"02639","+41.750745","-070.071836","DENNIS PORT","MA","BARNSTABLE","STANDARD"
+"02641","+41.734713","-070.204670","EAST DENNIS","MA","BARNSTABLE","PO BOX ONLY"
+"02642","+41.850612","-070.020648","EASTHAM","MA","BARNSTABLE","STANDARD"
+"02643","+41.784308","-069.962034","EAST ORLEANS","MA","BARNSTABLE","PO BOX ONLY"
+"02644","+41.790031","-070.268632","FORESTDALE","MA","BARNSTABLE","STANDARD"
+"02645","+41.835582","-070.043359","HARWICH","MA","BARNSTABLE","STANDARD"
+"02646","+41.845717","-070.053544","HARWICH PORT","MA","BARNSTABLE","STANDARD"
+"02647","+41.635004","-070.306336","HYANNIS PORT","MA","BARNSTABLE","PO BOX ONLY"
+"02648","+41.813034","-070.246666","MARSTONS MILLS","MA","BARNSTABLE","STANDARD"
+"02649","+41.788337","-070.253543","MASHPEE","MA","BARNSTABLE","STANDARD"
+"02650","+41.734970","-070.029065","NORTH CHATHAM","MA","BARNSTABLE","STANDARD"
+"02651","+41.824264","-069.981760","NORTH EASTHAM","MA","BARNSTABLE","PO BOX ONLY"
+"02652","+41.931061","-070.283584","NORTH TRURO","MA","BARNSTABLE","PO BOX ONLY"
+"02653","+41.852933","-070.015390","ORLEANS","MA","BARNSTABLE","STANDARD"
+"02655","+41.810178","-070.191269","OSTERVILLE","MA","BARNSTABLE","STANDARD"
+"02657","+41.888775","-070.091057","PROVINCETOWN","MA","BARNSTABLE","STANDARD"
+"02659","+41.848932","-070.030194","SOUTH CHATHAM","MA","BARNSTABLE","STANDARD"
+"02660","+41.800380","-070.089244","SOUTH DENNIS","MA","BARNSTABLE","STANDARD"
+"02661","+41.686205","-070.032858","SOUTH HARWICH","MA","BARNSTABLE","PO BOX ONLY"
+"02662","+41.756694","-069.984123","SOUTH ORLEANS","MA","BARNSTABLE","PO BOX ONLY"
+"02663","+41.800531","-070.076776","SOUTH WELLFLEET","MA","BARNSTABLE","PO BOX ONLY"
+"02664","+41.824120","-070.084259","SOUTH YARMOUTH","MA","BARNSTABLE","STANDARD"
+"02666","+41.987377","-070.047163","TRURO","MA","BARNSTABLE","PO BOX ONLY"
+"02667","+41.821307","-070.022806","WELLFLEET","MA","BARNSTABLE","STANDARD"
+"02668","+41.790550","-070.201719","WEST BARNSTABLE","MA","BARNSTABLE","STANDARD"
+"02669","+41.698721","-070.004937","WEST CHATHAM","MA","BARNSTABLE","PO BOX ONLY"
+"02670","+41.710855","-070.072195","WEST DENNIS","MA","BARNSTABLE","STANDARD"
+"02671","+41.846719","-070.038282","WEST HARWICH","MA","BARNSTABLE","STANDARD"
+"02672","+41.635635","-070.323307","WEST HYANNISPORT","MA","BARNSTABLE","PO BOX ONLY"
+"02673","+41.776105","-070.150512","WEST YARMOUTH","MA","BARNSTABLE","STANDARD"
+"02675","+41.716271","-070.135884","YARMOUTH PORT","MA","BARNSTABLE","STANDARD"
+"02702","+41.782993","-071.017328","ASSONET","MA","BRISTOL","STANDARD"
+"02703","+41.938976","-071.302297","ATTLEBORO","MA","BRISTOL","STANDARD"
+"02712","+41.756214","-071.067062","CHARTLEY","MA","BRISTOL","PO BOX ONLY"
+"02713","+41.421780","-070.931309","CUTTYHUNK","MA","DUKES","PO BOX ONLY"
+"02714","+41.756214","-071.067062","DARTMOUTH","MA","BRISTOL","STANDARD"
+"02715","+41.817659","-071.151787","DIGHTON","MA","BRISTOL","STANDARD"
+"02717","+41.747358","-070.978947","EAST FREETOWN","MA","BRISTOL","STANDARD"
+"02718","+41.871407","-071.013148","EAST TAUNTON","MA","BRISTOL","STANDARD"
+"02719","+41.631672","-070.870045","FAIRHAVEN","MA","BRISTOL","STANDARD"
+"02720","+41.819766","-071.165971","FALL RIVER","MA","BRISTOL","STANDARD"
+"02721","+41.678895","-071.153648","FALL RIVER","MA","BRISTOL","STANDARD"
+"02722","+41.756214","-071.067062","FALL RIVER","MA","BRISTOL","STANDARD"
+"02723","+41.693802","-071.133088","FALL RIVER","MA","BRISTOL","STANDARD"
+"02724","+41.684202","-071.175139","FALL RIVER","MA","BRISTOL","STANDARD"
+"02725","+41.723851","-071.173989","SOMERSET","MA","BRISTOL","STANDARD"
+"02726","+41.757951","-071.153639","SOMERSET","MA","BRISTOL","STANDARD"
+"02738","+41.736735","-070.754015","MARION","MA","PLYMOUTH","STANDARD"
+"02739","+41.664976","-070.810856","MATTAPOISETT","MA","PLYMOUTH","STANDARD"
+"02740","+41.633416","-070.951045","NEW BEDFORD","MA","BRISTOL","STANDARD"
+"02741","+41.756214","-071.067062","NEW BEDFORD","MA","BRISTOL","STANDARD"
+"02742","+41.619557","-070.956346","NEW BEDFORD","MA","BRISTOL","STANDARD"
+"02743","+41.711894","-070.908286","ACUSHNET","MA","BRISTOL","STANDARD"
+"02744","+41.609354","-070.916181","NEW BEDFORD","MA","BRISTOL","STANDARD"
+"02745","+41.708700","-070.946883","NEW BEDFORD","MA","BRISTOL","STANDARD"
+"02746","+41.665704","-070.943021","NEW BEDFORD","MA","BRISTOL","STANDARD"
+"02747","+41.639261","-071.007578","NORTH DARTMOUTH","MA","BRISTOL","STANDARD"
+"02748","+41.566464","-070.984253","SOUTH DARTMOUTH","MA","BRISTOL","STANDARD"
+"02760","+41.964376","-071.326448","NORTH ATTLEBORO","MA","BRISTOL","STANDARD"
+"02761","+41.756214","-071.067062","NORTH ATTLEBORO","MA","BRISTOL","STANDARD"
+"02762","+42.013553","-071.334399","PLAINVILLE","MA","NORFOLK","STANDARD"
+"02763","+41.972584","-071.308229","ATTLEBORO FALLS","MA","BRISTOL","STANDARD"
+"02764","+41.847791","-071.155797","NORTH DIGHTON","MA","BRISTOL","STANDARD"
+"02766","+41.959149","-071.180393","NORTON","MA","BRISTOL","STANDARD"
+"02767","+41.936700","-071.048941","RAYNHAM","MA","BRISTOL","STANDARD"
+"02768","+41.756214","-071.067062","RAYNHAM CENTER","MA","BRISTOL","PO BOX ONLY"
+"02769","+41.852989","-071.243061","REHOBOTH","MA","BRISTOL","STANDARD"
+"02770","+41.751812","-070.846041","ROCHESTER","MA","PLYMOUTH","STANDARD"
+"02771","+41.840103","-071.318995","SEEKONK","MA","BRISTOL","STANDARD"
+"02777","+41.766629","-071.234443","SWANSEA","MA","BRISTOL","STANDARD"
+"02779","+41.828249","-071.064135","BERKLEY","MA","BRISTOL","STANDARD"
+"02780","+41.858851","-071.092827","TAUNTON","MA","BRISTOL","STANDARD"
+"02783","+41.756214","-071.067062","TAUNTON","MA","BRISTOL","UNIQUE"
+"02790","+41.615470","-071.079636","WESTPORT","MA","BRISTOL","STANDARD"
+"02791","+41.519104","-071.085137","WESTPORT POINT","MA","BRISTOL","PO BOX ONLY"
+"02801","+41.530131","-071.284066","ADAMSVILLE","RI","NEWPORT","PO BOX ONLY"
+"02802","+41.954098","-071.462053","ALBION","RI","PROVIDENCE","PO BOX ONLY"
+"02804","+41.322365","-071.679251","ASHAWAY","RI","WASHINGTON","STANDARD"
+"02806","+41.742501","-071.320395","BARRINGTON","RI","BRISTOL","STANDARD"
+"02807","+41.188888","-071.577696","BLOCK ISLAND","RI","WASHINGTON","PO BOX ONLY"
+"02808","+41.403784","-071.761665","BRADFORD","RI","WASHINGTON","STANDARD"
+"02809","+41.678378","-071.270400","BRISTOL","RI","BRISTOL","STANDARD"
+"02812","+41.469148","-071.675092","CAROLINA","RI","WASHINGTON","STANDARD"
+"02813","+41.395079","-071.665420","CHARLESTOWN","RI","WASHINGTON","STANDARD"
+"02814","+41.888971","-071.688769","CHEPACHET","RI","PROVIDENCE","STANDARD"
+"02815","+41.770525","-071.655850","CLAYVILLE","RI","PROVIDENCE","STANDARD"
+"02816","+41.694251","-071.636786","COVENTRY","RI","KENT","STANDARD"
+"02817","+41.631168","-071.667165","WEST GREENWICH","RI","KENT","STANDARD"
+"02818","+41.643350","-071.478002","EAST GREENWICH","RI","KENT","STANDARD"
+"02822","+41.546900","-071.650262","EXETER","RI","WASHINGTON","STANDARD"
+"02823","+41.731200","-071.546756","FISKEVILLE","RI","PROVIDENCE","PO BOX ONLY"
+"02824","+42.000248","-071.563057","FORESTDALE","RI","PROVIDENCE","PO BOX ONLY"
+"02825","+41.790569","-071.706440","FOSTER","RI","PROVIDENCE","STANDARD"
+"02826","+41.982417","-071.600848","GLENDALE","RI","PROVIDENCE","PO BOX ONLY"
+"02827","+41.691676","-071.727467","GREENE","RI","KENT","STANDARD"
+"02828","+41.879298","-071.551682","GREENVILLE","RI","PROVIDENCE","STANDARD"
+"02829","+41.879298","-071.589357","HARMONY","RI","PROVIDENCE","PO BOX ONLY"
+"02830","+41.972390","-071.648502","HARRISVILLE","RI","PROVIDENCE","STANDARD"
+"02831","+41.753594","-071.577746","HOPE","RI","PROVIDENCE","STANDARD"
+"02832","+41.509632","-071.733875","HOPE VALLEY","RI","WASHINGTON","STANDARD"
+"02833","+41.475117","-071.772617","HOPKINTON","RI","WASHINGTON","STANDARD"
+"02835","+41.514120","-071.377247","JAMESTOWN","RI","NEWPORT","STANDARD"
+"02836","+41.447427","-071.620432","KENYON","RI","WASHINGTON","STANDARD"
+"02837","+41.510257","-071.166340","LITTLE COMPTON","RI","NEWPORT","STANDARD"
+"02838","+41.967848","-071.475604","MANVILLE","RI","PROVIDENCE","STANDARD"
+"02839","+41.941715","-071.637581","MAPLEVILLE","RI","PROVIDENCE","STANDARD"
+"02840","+41.487552","-071.327084","NEWPORT","RI","NEWPORT","STANDARD"
+"02841","+41.498977","-071.299004","NEWPORT","RI","NEWPORT","UNIQUE"
+"02842","+41.519757","-071.273101","MIDDLETOWN","RI","NEWPORT","STANDARD"
+"02852","+41.586851","-071.464801","NORTH KINGSTOWN","RI","WASHINGTON","STANDARD"
+"02854","+41.375317","-071.643930","NORTH KINGSTOWN","RI","WASHINGTON","STANDARD"
+"02857","+41.838827","-071.655006","NORTH SCITUATE","RI","PROVIDENCE","STANDARD"
+"02858","+41.962303","-071.647542","OAKLAND","RI","PROVIDENCE","STANDARD"
+"02859","+41.964150","-071.723316","PASCOAG","RI","PROVIDENCE","STANDARD"
+"02860","+41.875149","-071.392732","PAWTUCKET","RI","PROVIDENCE","STANDARD"
+"02861","+41.878249","-071.369899","PAWTUCKET","RI","PROVIDENCE","STANDARD"
+"02862","+41.861250","-071.369099","PAWTUCKET","RI","PROVIDENCE","STANDARD"
+"02863","+41.889849","-071.394186","CENTRAL FALLS","RI","PROVIDENCE","STANDARD"
+"02864","+41.949498","-071.432690","CUMBERLAND","RI","PROVIDENCE","STANDARD"
+"02865","+41.925298","-071.493355","LINCOLN","RI","PROVIDENCE","STANDARD"
+"02871","+41.585230","-071.264197","PORTSMOUTH","RI","NEWPORT","STANDARD"
+"02872","+41.707119","-071.286834","PRUDENCE ISLAND","RI","BRISTOL","STANDARD"
+"02873","+41.519922","-071.774023","ROCKVILLE","RI","WASHINGTON","PO BOX ONLY"
+"02874","+41.478466","-071.471752","SAUNDERSTOWN","RI","WASHINGTON","STANDARD"
+"02875","+41.456039","-071.635474","SHANNOCK","RI","WASHINGTON","STANDARD"
+"02876","+41.998398","-071.576307","SLATERSVILLE","RI","PROVIDENCE","STANDARD"
+"02877","+41.528900","-071.529854","SLOCUM","RI","WASHINGTON","STANDARD"
+"02878","+41.610180","-071.175183","TIVERTON","RI","NEWPORT","STANDARD"
+"02879","+41.443653","-071.534202","WAKEFIELD","RI","WASHINGTON","STANDARD"
+"02880","+41.375317","-071.643930","WAKEFIELD","RI","WASHINGTON","STANDARD"
+"02881","+41.482901","-071.524317","KINGSTON","RI","WASHINGTON","STANDARD"
+"02882","+41.377185","-071.497793","NARRAGANSETT","RI","WASHINGTON","STANDARD"
+"02883","+41.375317","-071.643930","PEACE DALE","RI","WASHINGTON","STANDARD"
+"02885","+41.727451","-071.257492","WARREN","RI","BRISTOL","STANDARD"
+"02886","+41.702470","-071.479020","WARWICK","RI","KENT","STANDARD"
+"02887","+41.682455","-071.557732","WARWICK","RI","KENT","STANDARD"
+"02888","+41.747300","-071.411088","WARWICK","RI","KENT","STANDARD"
+"02889","+41.689182","-071.496048","WARWICK","RI","KENT","STANDARD"
+"02891","+41.284494","-071.710708","WESTERLY","RI","WASHINGTON","STANDARD"
+"02892","+41.505764","-071.621140","WEST KINGSTON","RI","WASHINGTON","STANDARD"
+"02893","+41.696822","-071.507304","WEST WARWICK","RI","KENT","STANDARD"
+"02894","+41.450050","-071.707420","WOOD RIVER JUNCTION","RI","WASHINGTON","STANDARD"
+"02895","+41.984598","-071.519390","WOONSOCKET","RI","PROVIDENCE","STANDARD"
+"02896","+41.934348","-071.540506","NORTH SMITHFIELD","RI","PROVIDENCE","STANDARD"
+"02898","+41.504089","-071.662954","WYOMING","RI","WASHINGTON","STANDARD"
+"02901","+41.822750","-071.414451","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02902","+41.818350","-071.424851","PROVIDENCE","RI","PROVIDENCE","UNIQUE"
+"02903","+41.819459","-071.411500","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02904","+41.854140","-071.437752","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02905","+41.803799","-071.422547","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02906","+41.837400","-071.394717","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02907","+41.797065","-071.425501","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02908","+41.837399","-071.439900","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02909","+41.820599","-071.444302","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02910","+41.791700","-071.435251","CRANSTON","RI","PROVIDENCE","STANDARD"
+"02911","+41.838749","-071.449202","NORTH PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02912","+41.826737","-071.397699","PROVIDENCE","RI","PROVIDENCE","UNIQUE"
+"02914","+41.813429","-071.363348","EAST PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"02915","+41.774300","-071.349697","RIVERSIDE","RI","PROVIDENCE","STANDARD"
+"02916","+41.842727","-071.355798","RUMFORD","RI","PROVIDENCE","STANDARD"
+"02917","+41.853899","-071.497804","SMITHFIELD","RI","PROVIDENCE","STANDARD"
+"02918","+41.841499","-071.440352","PROVIDENCE","RI","PROVIDENCE","UNIQUE"
+"02919","+41.870932","-071.497604","JOHNSTON","RI","PROVIDENCE","STANDARD"
+"02920","+41.769300","-071.471353","CRANSTON","RI","PROVIDENCE","STANDARD"
+"02921","+41.766750","-071.476703","CRANSTON","RI","PROVIDENCE","STANDARD"
+"02940","+41.871766","-071.558518","PROVIDENCE","RI","PROVIDENCE","STANDARD"
+"03031","+42.874740","-071.629365","AMHERST","NH","HILLSBOROUGH","STANDARD"
+"03032","+42.989151","-071.343576","AUBURN","NH","ROCKINGHAM","STANDARD"
+"03033","+42.847268","-071.767437","BROOKLINE","NH","HILLSBOROUGH","STANDARD"
+"03034","+43.059283","-071.305437","CANDIA","NH","ROCKINGHAM","STANDARD"
+"03036","+42.961606","-071.251021","CHESTER","NH","ROCKINGHAM","STANDARD"
+"03037","+42.987495","-071.252719","DEERFIELD","NH","ROCKINGHAM","STANDARD"
+"03038","+42.950825","-071.197169","DERRY","NH","ROCKINGHAM","STANDARD"
+"03040","+43.005895","-071.013202","EAST CANDIA","NH","ROCKINGHAM","STANDARD"
+"03041","+43.005895","-071.013202","EAST DERRY","NH","ROCKINGHAM","PO BOX ONLY"
+"03042","+43.047595","-071.084411","EPPING","NH","ROCKINGHAM","STANDARD"
+"03043","+42.916233","-071.816505","FRANCESTOWN","NH","HILLSBOROUGH","STANDARD"
+"03044","+42.992203","-071.127041","FREMONT","NH","ROCKINGHAM","STANDARD"
+"03045","+42.946710","-071.687633","GOFFSTOWN","NH","HILLSBOROUGH","STANDARD"
+"03046",,,"DUNBARTON","NH","MERRIMACK","STANDARD"
+"03047","+42.929346","-071.859087","GREENFIELD","NH","HILLSBOROUGH","STANDARD"
+"03048","+42.875116","-071.717548","GREENVILLE","NH","HILLSBOROUGH","STANDARD"
+"03049","+42.859545","-071.581313","HOLLIS","NH","HILLSBOROUGH","STANDARD"
+"03051","+42.766426","-071.618870","HUDSON","NH","HILLSBOROUGH","STANDARD"
+"03052","+42.886789","-071.485331","LITCHFIELD","NH","HILLSBOROUGH","STANDARD"
+"03053","+42.871200","-071.387776","LONDONDERRY","NH","ROCKINGHAM","STANDARD"
+"03054","+42.924928","-071.667508","MERRIMACK","NH","HILLSBOROUGH","STANDARD"
+"03055","+42.848787","-071.743882","MILFORD","NH","HILLSBOROUGH","STANDARD"
+"03057","+42.850464","-071.727044","MONT VERNON","NH","HILLSBOROUGH","STANDARD"
+"03060","+42.771537","-071.626336","NASHUA","NH","HILLSBOROUGH","STANDARD"
+"03061","+42.952124","-071.653939","NASHUA","NH","HILLSBOROUGH","STANDARD"
+"03062","+42.860117","-071.499760","NASHUA","NH","HILLSBOROUGH","STANDARD"
+"03063","+42.774427","-071.511111","NASHUA","NH","HILLSBOROUGH","STANDARD"
+"03064","+42.774237","-071.628611","NASHUA","NH","HILLSBOROUGH","STANDARD"
+"03070","+42.903497","-071.775889","NEW BOSTON","NH","HILLSBOROUGH","STANDARD"
+"03071","+42.762946","-071.845164","NEW IPSWICH","NH","HILLSBOROUGH","STANDARD"
+"03073","+43.005895","-071.013202","NORTH SALEM","NH","ROCKINGHAM","PO BOX ONLY"
+"03076","+42.740651","-071.318715","PELHAM","NH","HILLSBOROUGH","STANDARD"
+"03077","+43.059320","-071.204521","RAYMOND","NH","ROCKINGHAM","STANDARD"
+"03079","+42.872045","-071.196195","SALEM","NH","ROCKINGHAM","STANDARD"
+"03082","+42.902031","-071.773947","LYNDEBOROUGH","NH","HILLSBOROUGH","STANDARD"
+"03084","+42.822275","-071.860983","TEMPLE","NH","HILLSBOROUGH","STANDARD"
+"03086","+42.894022","-071.730154","WILTON","NH","HILLSBOROUGH","STANDARD"
+"03087","+42.892211","-071.234009","WINDHAM","NH","ROCKINGHAM","STANDARD"
+"03101","+42.988483","-071.462111","MANCHESTER","NH","HILLSBOROUGH","STANDARD"
+"03102","+43.007883","-071.494561","MANCHESTER","NH","HILLSBOROUGH","STANDARD"
+"03103","+42.942463","-071.463761","MANCHESTER","NH","HILLSBOROUGH","STANDARD"
+"03104","+42.897524","-071.372208","MANCHESTER","NH","HILLSBOROUGH","STANDARD"
+"03105","+42.952124","-071.653939","MANCHESTER","NH","HILLSBOROUGH","STANDARD"
+"03106","+43.065097","-071.443616","HOOKSETT","NH","MERRIMACK","STANDARD"
+"03107","+42.952124","-071.653939","MANCHESTER","NH","HILLSBOROUGH","UNIQUE"
+"03108","+42.952124","-071.653939","MANCHESTER","NH","HILLSBOROUGH","STANDARD"
+"03109","+42.970084","-071.405283","MANCHESTER","NH","HILLSBOROUGH","STANDARD"
+"03110","+42.937430","-071.535515","BEDFORD","NH","HILLSBOROUGH","STANDARD"
+"03111","+42.952124","-071.653939","MANCHESTER","NH","HILLSBOROUGH","UNIQUE"
+"03215","+43.930221","-071.534068","WATERVILLE VALLEY","NH","GRAFTON","STANDARD"
+"03216","+43.447006","-071.684093","ANDOVER","NH","MERRIMACK","STANDARD"
+"03217","+43.715626","-071.639896","ASHLAND","NH","GRAFTON","STANDARD"
+"03218","+43.417369","-071.373189","BARNSTEAD","NH","BELKNAP","STANDARD"
+"03220","+43.455551","-071.407090","BELMONT","NH","BELKNAP","STANDARD"
+"03221","+43.280961","-071.792489","BRADFORD","NH","MERRIMACK","STANDARD"
+"03222","+43.707810","-071.721580","BRISTOL","NH","GRAFTON","STANDARD"
+"03223","+43.841799","-071.665223","CAMPTON","NH","GRAFTON","STANDARD"
+"03224","+43.378281","-071.604226","CANTERBURY","NH","MERRIMACK","STANDARD"
+"03225","+43.386652","-071.292981","CENTER BARNSTEAD","NH","BELKNAP","STANDARD"
+"03226","+43.693870","-071.466212","CENTER HARBOR","NH","BELKNAP","STANDARD"
+"03227","+43.694809","-071.323953","CENTER SANDWICH","NH","CARROLL","STANDARD"
+"03229","+43.301308","-071.812943","CONTOOCOOK","NH","MERRIMACK","STANDARD"
+"03230","+43.514791","-071.882094","DANBURY","NH","MERRIMACK","STANDARD"
+"03231","+43.466172","-071.736518","EAST ANDOVER","NH","MERRIMACK","PO BOX ONLY"
+"03232","+43.967542","-071.840883","EAST HEBRON","NH","GRAFTON","STANDARD"
+"03233","+43.422706","-071.944794","ELKINS","NH","MERRIMACK","STANDARD"
+"03234","+43.340736","-071.669712","EPSOM","NH","MERRIMACK","STANDARD"
+"03235","+43.374297","-071.680021","FRANKLIN","NH","MERRIMACK","STANDARD"
+"03237","+43.414064","-071.384213","GILMANTON","NH","BELKNAP","STANDARD"
+"03238","+43.967542","-071.840883","GLENCLIFF","NH","GRAFTON","PO BOX ONLY"
+"03240","+43.967542","-071.840883","GRAFTON","NH","GRAFTON","STANDARD"
+"03241","+43.718268","-071.889483","HEBRON","NH","GRAFTON","STANDARD"
+"03242","+43.180148","-071.819590","HENNIKER","NH","MERRIMACK","STANDARD"
+"03243","+43.443473","-071.762631","HILL","NH","MERRIMACK","STANDARD"
+"03244","+43.122950","-071.914287","HILLSBORO","NH","HILLSBOROUGH","STANDARD"
+"03245","+43.737831","-071.604406","HOLDERNESS","NH","GRAFTON","PO BOX ONLY"
+"03246","+43.535461","-071.426997","LACONIA","NH","BELKNAP","STANDARD"
+"03247","+43.588972","-071.445452","LACONIA","NH","BELKNAP","STANDARD"
+"03249",,,"GILFORD","NH","BELKNAP","STANDARD"
+"03251","+44.049183","-071.653505","LINCOLN","NH","GRAFTON","STANDARD"
+"03252","+43.468562","-071.537145","LOCHMERE","NH","BELKNAP","PO BOX ONLY"
+"03253","+43.592239","-071.517479","MEREDITH","NH","BELKNAP","STANDARD"
+"03254","+43.728235","-071.335248","MOULTONBOROUGH","NH","CARROLL","STANDARD"
+"03255","+43.321723","-072.011840","NEWBURY","NH","MERRIMACK","STANDARD"
+"03256","+43.603288","-071.634674","NEW HAMPTON","NH","BELKNAP","STANDARD"
+"03257","+43.301663","-071.733643","NEW LONDON","NH","MERRIMACK","STANDARD"
+"03258",,,"CHICHESTER","NH","MERRIMACK","STANDARD"
+"03259","+43.859710","-071.377190","NORTH SANDWICH","NH","CARROLL","STANDARD"
+"03260","+43.365345","-071.934059","NORTH SUTTON","NH","MERRIMACK","PO BOX ONLY"
+"03261","+43.208676","-071.202568","NORTHWOOD","NH","ROCKINGHAM","STANDARD"
+"03262","+44.035391","-071.686326","NORTH WOODSTOCK","NH","GRAFTON","STANDARD"
+"03263","+43.297834","-071.343707","PITTSFIELD","NH","MERRIMACK","STANDARD"
+"03264","+43.710919","-071.694017","PLYMOUTH","NH","GRAFTON","STANDARD"
+"03266","+43.752475","-071.788434","RUMNEY","NH","GRAFTON","STANDARD"
+"03268","+43.361756","-071.558817","SALISBURY","NH","MERRIMACK","STANDARD"
+"03269","+43.501780","-071.514248","SANBORNTON","NH","BELKNAP","STANDARD"
+"03272","+43.310279","-071.662928","SOUTH NEWBURY","NH","MERRIMACK","STANDARD"
+"03273","+43.304205","-071.928867","SOUTH SUTTON","NH","MERRIMACK","PO BOX ONLY"
+"03274","+43.967542","-071.840883","STINSON LAKE","NH","GRAFTON","STANDARD"
+"03275","+43.286382","-071.599047","SUNCOOK","NH","MERRIMACK","STANDARD"
+"03276","+43.536056","-071.491660","TILTON","NH","BELKNAP","STANDARD"
+"03278","+43.310858","-071.842299","WARNER","NH","MERRIMACK","STANDARD"
+"03279","+43.967542","-071.840883","WARREN","NH","GRAFTON","STANDARD"
+"03280","+43.172290","-072.100689","WASHINGTON","NH","SULLIVAN","STANDARD"
+"03281","+43.084176","-071.762578","WEARE","NH","HILLSBOROUGH","STANDARD"
+"03282","+43.967542","-071.840883","WENTWORTH","NH","GRAFTON","STANDARD"
+"03284","+43.493812","-072.047018","SPRINGFIELD","NH","SULLIVAN","STANDARD"
+"03287","+43.448530","-071.915826","WILMOT","NH","MERRIMACK","STANDARD"
+"03289","+43.496372","-071.519728","WINNISQUAM","NH","BELKNAP","PO BOX ONLY"
+"03290","+43.124825","-071.125879","NOTTINGHAM","NH","ROCKINGHAM","STANDARD"
+"03291","+43.182251","-071.139551","WEST NOTTINGHAM","NH","ROCKINGHAM","STANDARD"
+"03293","+43.967542","-071.840883","WOODSTOCK","NH","GRAFTON","STANDARD"
+"03298","+43.524872","-071.445841","TILTON","NH","BELKNAP","UNIQUE"
+"03299","+43.524872","-071.445841","TILTON","NH","BELKNAP","UNIQUE"
+"03301","+43.230314","-071.536101","CONCORD","NH","MERRIMACK","STANDARD"
+"03302","+43.310279","-071.662928","CONCORD","NH","MERRIMACK","STANDARD"
+"03303","+43.281654","-071.659523","CONCORD","NH","MERRIMACK","STANDARD"
+"03304","+43.128256","-071.544599","BOW","NH","MERRIMACK","STANDARD"
+"03305","+43.213400","-071.517151","CONCORD","NH","MERRIMACK","UNIQUE"
+"03307","+43.319339","-071.467006","LOUDON","NH","MERRIMACK","STANDARD"
+"03431","+42.903656","-072.248052","KEENE","NH","CHESHIRE","STANDARD"
+"03435","+42.947098","-072.243029","KEENE","NH","CHESHIRE","UNIQUE"
+"03440","+43.044535","-071.971353","ANTRIM","NH","HILLSBOROUGH","STANDARD"
+"03441","+42.777271","-072.444106","ASHUELOT","NH","CHESHIRE","STANDARD"
+"03442","+43.002936","-071.908029","BENNINGTON","NH","HILLSBOROUGH","STANDARD"
+"03443","+42.883948","-072.454813","CHESTERFIELD","NH","CHESHIRE","STANDARD"
+"03444","+42.889124","-072.018993","DUBLIN","NH","CHESHIRE","PO BOX ONLY"
+"03445","+42.998225","-072.201903","SULLIVAN","NH","CHESHIRE","STANDARD"
+"03446","+42.841079","-072.330145","SWANZEY","NH","CHESHIRE","STANDARD"
+"03447","+42.881769","-072.248026","FITZWILLIAM","NH","CHESHIRE","STANDARD"
+"03448","+42.936786","-072.210953","GILSUM","NH","CHESHIRE","STANDARD"
+"03449","+42.939240","-071.983797","HANCOCK","NH","HILLSBOROUGH","STANDARD"
+"03450","+42.884548","-072.102634","HARRISVILLE","NH","CHESHIRE","STANDARD"
+"03451","+42.894151","-072.280099","HINSDALE","NH","CHESHIRE","STANDARD"
+"03452","+42.821969","-072.082559","JAFFREY","NH","CHESHIRE","STANDARD"
+"03455","+42.888250","-072.279638","MARLBOROUGH","NH","CHESHIRE","STANDARD"
+"03456","+43.119294","-072.202564","MARLOW","NH","CHESHIRE","STANDARD"
+"03457","+42.896623","-072.091677","NELSON","NH","CHESHIRE","STANDARD"
+"03458","+42.956433","-071.937200","PETERBOROUGH","NH","HILLSBOROUGH","STANDARD"
+"03461","+42.765090","-072.009120","RINDGE","NH","CHESHIRE","STANDARD"
+"03462","+42.870716","-072.239432","SPOFFORD","NH","CHESHIRE","STANDARD"
+"03464","+42.954780","-072.102454","STODDARD","NH","CHESHIRE","STANDARD"
+"03465","+42.843617","-072.279814","TROY","NH","CHESHIRE","STANDARD"
+"03466","+42.858419","-072.432202","WEST CHESTERFIELD","NH","CHESHIRE","STANDARD"
+"03467","+42.973867","-072.442560","WESTMORELAND","NH","CHESHIRE","STANDARD"
+"03468","+42.890804","-071.933396","WEST PETERBOROUGH","NH","HILLSBOROUGH","PO BOX ONLY"
+"03469","+42.873410","-072.315090","WEST SWANZEY","NH","CHESHIRE","PO BOX ONLY"
+"03470","+42.895797","-072.274928","WINCHESTER","NH","CHESHIRE","STANDARD"
+"03561","+44.335289","-071.877638","LITTLETON","NH","GRAFTON","STANDARD"
+"03570","+44.512344","-071.194226","BERLIN","NH","COOS","STANDARD"
+"03574","+44.306320","-071.728049","BETHLEHEM","NH","GRAFTON","STANDARD"
+"03575","+44.695648","-071.387387","BRETTON WOODS","NH","COOS","PO BOX ONLY"
+"03576","+44.902731","-071.500809","COLEBROOK","NH","COOS","STANDARD"
+"03579","+44.695648","-071.387387","ERROL","NH","COOS","STANDARD"
+"03580","+44.212814","-071.737162","FRANCONIA","NH","GRAFTON","STANDARD"
+"03581","+44.404848","-071.154758","GORHAM","NH","COOS","STANDARD"
+"03582","+44.750960","-071.422453","GROVETON","NH","COOS","STANDARD"
+"03583","+44.695648","-071.387387","JEFFERSON","NH","COOS","STANDARD"
+"03584","+44.476575","-071.561225","LANCASTER","NH","COOS","STANDARD"
+"03585","+44.245004","-071.888882","LISBON","NH","GRAFTON","STANDARD"
+"03587","+44.695648","-071.387387","MEADOWS","NH","COOS","PO BOX ONLY"
+"03588","+44.565320","-071.218672","MILAN","NH","COOS","STANDARD"
+"03589","+44.695648","-071.387387","MOUNT WASHINGTON","NH","COOS","PO BOX ONLY"
+"03590","+44.695648","-071.387387","NORTH STRATFORD","NH","COOS","STANDARD"
+"03592","+44.695648","-071.387387","PITTSBURG","NH","COOS","STANDARD"
+"03595","+44.268950","-071.547061","TWIN MOUNTAIN","NH","COOS","PO BOX ONLY"
+"03597","+44.695648","-071.387387","WEST STEWARTSTOWN","NH","COOS","PO BOX ONLY"
+"03598","+44.363681","-071.610189","WHITEFIELD","NH","COOS","STANDARD"
+"03601","+43.195982","-072.300075","ACWORTH","NH","SULLIVAN","STANDARD"
+"03602","+43.134412","-072.310623","ALSTEAD","NH","CHESHIRE","STANDARD"
+"03603","+43.268117","-072.370222","CHARLESTOWN","NH","SULLIVAN","STANDARD"
+"03604","+42.947098","-072.243029","DREWSVILLE","NH","CHESHIRE","STANDARD"
+"03605","+43.213615","-072.196758","LEMPSTER","NH","SULLIVAN","STANDARD"
+"03607","+43.364504","-072.193966","SOUTH ACWORTH","NH","SULLIVAN","STANDARD"
+"03608","+43.072239","-072.390121","WALPOLE","NH","CHESHIRE","STANDARD"
+"03609","+43.138018","-072.407236","NORTH WALPOLE","NH","CHESHIRE","STANDARD"
+"03740","+44.114163","-071.948852","BATH","NH","GRAFTON","STANDARD"
+"03741","+43.631230","-072.057312","CANAAN","NH","GRAFTON","STANDARD"
+"03743","+43.415993","-072.209819","CLAREMONT","NH","SULLIVAN","STANDARD"
+"03745","+43.462156","-072.337149","CORNISH","NH","SULLIVAN","STANDARD"
+"03746","+43.364504","-072.193966","CORNISH FLAT","NH","SULLIVAN","STANDARD"
+"03748","+43.630906","-072.116603","ENFIELD","NH","GRAFTON","STANDARD"
+"03749","+43.579573","-072.085410","ENFIELD CENTER","NH","GRAFTON","PO BOX ONLY"
+"03750","+43.697999","-072.215182","ETNA","NH","GRAFTON","STANDARD"
+"03751","+43.448720","-072.063675","GEORGES MILLS","NH","SULLIVAN","PO BOX ONLY"
+"03752","+43.417705","-072.196718","GOSHEN","NH","SULLIVAN","STANDARD"
+"03753","+43.463101","-072.218445","GRANTHAM","NH","SULLIVAN","STANDARD"
+"03754","+43.365618","-072.125562","GUILD","NH","SULLIVAN","PO BOX ONLY"
+"03755","+43.861077","-072.120314","HANOVER","NH","GRAFTON","STANDARD"
+"03756","+43.967542","-071.840883","LEBANON","NH","GRAFTON","STANDARD"
+"03765","+44.037549","-072.046692","HAVERHILL","NH","GRAFTON","STANDARD"
+"03766","+43.637148","-072.235460","LEBANON","NH","GRAFTON","STANDARD"
+"03768","+43.801656","-072.130495","LYME","NH","GRAFTON","STANDARD"
+"03769","+43.786267","-072.120468","LYME CENTER","NH","GRAFTON","PO BOX ONLY"
+"03770","+43.421675","-072.255638","MERIDEN","NH","SULLIVAN","STANDARD"
+"03771","+44.268612","-072.015317","MONROE","NH","GRAFTON","STANDARD"
+"03773","+43.390485","-072.199659","NEWPORT","NH","SULLIVAN","STANDARD"
+"03774","+44.077803","-072.014608","NORTH HAVERHILL","NH","GRAFTON","STANDARD"
+"03777","+43.927348","-072.109870","ORFORD","NH","GRAFTON","STANDARD"
+"03779","+43.948343","-072.062132","PIERMONT","NH","GRAFTON","STANDARD"
+"03780","+43.967542","-071.840883","PIKE","NH","GRAFTON","STANDARD"
+"03781","+43.432999","-072.282596","PLAINFIELD","NH","SULLIVAN","STANDARD"
+"03782","+43.426838","-072.154710","SUNAPEE","NH","SULLIVAN","STANDARD"
+"03784","+43.644367","-072.234800","WEST LEBANON","NH","GRAFTON","STANDARD"
+"03785","+43.948644","-072.080708","WOODSVILLE","NH","GRAFTON","STANDARD"
+"03801","+43.009222","-070.950742","PORTSMOUTH","NH","ROCKINGHAM","STANDARD"
+"03802","+43.005895","-071.013202","PORTSMOUTH","NH","ROCKINGHAM","STANDARD"
+"03803","+42.927030","-071.444752","PORTSMOUTH","NH","ROCKINGHAM","UNIQUE"
+"03804","+43.005895","-071.013202","PORTSMOUTH","NH","ROCKINGHAM","STANDARD"
+"03805","+43.285282","-070.930684","ROLLINSFORD","NH","STRAFFORD","UNIQUE"
+"03809","+43.462586","-071.222455","ALTON","NH","BELKNAP","STANDARD"
+"03810","+43.502514","-071.277387","ALTON BAY","NH","BELKNAP","STANDARD"
+"03811","+42.878366","-071.159035","ATKINSON","NH","ROCKINGHAM","STANDARD"
+"03812","+43.883871","-071.257726","BARTLETT","NH","CARROLL","STANDARD"
+"03813","+43.797391","-071.145357","CENTER CONWAY","NH","CARROLL","STANDARD"
+"03814","+43.762429","-071.122689","CENTER OSSIPEE","NH","CARROLL","STANDARD"
+"03815","+43.253739","-071.109825","CENTER STRAFFORD","NH","STRAFFORD","STANDARD"
+"03816","+43.660752","-071.274458","CENTER TUFTONBORO","NH","CARROLL","STANDARD"
+"03817","+43.748580","-071.089796","CHOCORUA","NH","CARROLL","STANDARD"
+"03818","+43.788920","-071.102610","CONWAY","NH","CARROLL","STANDARD"
+"03819","+42.926725","-071.082299","DANVILLE","NH","ROCKINGHAM","STANDARD"
+"03820","+43.297309","-070.992042","DOVER","NH","STRAFFORD","STANDARD"
+"03821","+43.326734","-071.028427","DOVER","NH","STRAFFORD","STANDARD"
+"03822","+43.326734","-071.028427","DOVER","NH","STRAFFORD","UNIQUE"
+"03824","+43.165772","-070.962843","DURHAM","NH","STRAFFORD","STANDARD"
+"03825","+43.297790","-071.097423","BARRINGTON","NH","STRAFFORD","STANDARD"
+"03826","+42.893629","-071.142690","EAST HAMPSTEAD","NH","ROCKINGHAM","STANDARD"
+"03827","+42.912071","-071.054245","EAST KINGSTON","NH","ROCKINGHAM","STANDARD"
+"03830","+43.635065","-071.009368","EAST WAKEFIELD","NH","CARROLL","STANDARD"
+"03832","+43.883871","-071.257726","EATON CENTER","NH","CARROLL","STANDARD"
+"03833","+42.951274","-070.922262","EXETER","NH","ROCKINGHAM","STANDARD"
+"03835","+43.306172","-071.003435","FARMINGTON","NH","STRAFFORD","STANDARD"
+"03836","+43.823704","-071.093154","FREEDOM","NH","CARROLL","STANDARD"
+"03837","+43.446567","-071.299456","GILMANTON IRON WORKS","NH","BELKNAP","STANDARD"
+"03838","+44.050111","-071.265371","GLEN","NH","CARROLL","STANDARD"
+"03839","+43.309966","-070.998256","ROCHESTER","NH","STRAFFORD","STANDARD"
+"03840","+43.038634","-070.809157","GREENLAND","NH","ROCKINGHAM","STANDARD"
+"03841","+42.877438","-071.139098","HAMPSTEAD","NH","ROCKINGHAM","STANDARD"
+"03842","+42.917389","-070.950950","HAMPTON","NH","ROCKINGHAM","STANDARD"
+"03843","+43.005895","-071.013202","HAMPTON","NH","ROCKINGHAM","STANDARD"
+"03844","+42.891888","-070.982601","HAMPTON FALLS","NH","ROCKINGHAM","STANDARD"
+"03845","+44.082716","-071.134348","INTERVALE","NH","CARROLL","STANDARD"
+"03846","+43.883871","-071.257726","JACKSON","NH","CARROLL","STANDARD"
+"03847","+43.883871","-071.257726","KEARSARGE","NH","CARROLL","PO BOX ONLY"
+"03848","+42.909731","-071.102933","KINGSTON","NH","ROCKINGHAM","STANDARD"
+"03849","+43.902311","-071.124612","MADISON","NH","CARROLL","STANDARD"
+"03850","+43.707657","-071.301681","MELVIN VILLAGE","NH","CARROLL","PO BOX ONLY"
+"03851","+43.422942","-071.011369","MILTON","NH","STRAFFORD","PO BOX ONLY"
+"03852","+43.326734","-071.028427","MILTON MILLS","NH","STRAFFORD","STANDARD"
+"03853","+43.646319","-071.282068","MIRROR LAKE","NH","CARROLL","STANDARD"
+"03854","+43.064938","-070.721596","NEW CASTLE","NH","ROCKINGHAM","PO BOX ONLY"
+"03855","+43.459503","-071.119055","NEW DURHAM","NH","STRAFFORD","STANDARD"
+"03856","+43.037363","-070.978211","NEWFIELDS","NH","ROCKINGHAM","STANDARD"
+"03857","+42.979021","-070.891642","NEWMARKET","NH","ROCKINGHAM","STANDARD"
+"03858","+42.937092","-071.006898","NEWTON","NH","ROCKINGHAM","STANDARD"
+"03859","+42.861915","-071.040020","NEWTON JUNCTION","NH","ROCKINGHAM","PO BOX ONLY"
+"03860","+43.784643","-071.102630","NORTH CONWAY","NH","CARROLL","STANDARD"
+"03862","+43.000270","-070.913947","NORTH HAMPTON","NH","ROCKINGHAM","STANDARD"
+"03864","+43.667352","-071.153338","OSSIPEE","NH","CARROLL","STANDARD"
+"03865","+42.937838","-070.926206","PLAISTOW","NH","ROCKINGHAM","STANDARD"
+"03866","+43.411760","-071.027303","ROCHESTER","NH","STRAFFORD","STANDARD"
+"03867","+43.326831","-070.993148","ROCHESTER","NH","STRAFFORD","STANDARD"
+"03868","+43.349689","-070.945161","ROCHESTER","NH","STRAFFORD","STANDARD"
+"03869","+43.161360","-070.942666","ROLLINSFORD","NH","STRAFFORD","STANDARD"
+"03870","+43.010939","-070.764813","RYE","NH","ROCKINGHAM","STANDARD"
+"03871","+42.980639","-070.771896","RYE BEACH","NH","ROCKINGHAM","PO BOX ONLY"
+"03872","+43.570694","-071.079427","SANBORNVILLE","NH","CARROLL","STANDARD"
+"03873","+42.922666","-071.174262","SANDOWN","NH","ROCKINGHAM","STANDARD"
+"03874","+42.964415","-070.819897","SEABROOK","NH","ROCKINGHAM","STANDARD"
+"03875","+43.855269","-071.176182","SILVER LAKE","NH","CARROLL","STANDARD"
+"03878","+43.229489","-070.958264","SOMERSWORTH","NH","STRAFFORD","STANDARD"
+"03882","+43.704702","-070.990155","EFFINGHAM","NH","CARROLL","STANDARD"
+"03883","+43.883871","-071.257726","SOUTH TAMWORTH","NH","CARROLL","STANDARD"
+"03884","+43.256871","-071.171886","STRAFFORD","NH","STRAFFORD","STANDARD"
+"03885","+43.012950","-070.882134","STRATHAM","NH","ROCKINGHAM","STANDARD"
+"03886","+43.647527","-071.277779","TAMWORTH","NH","CARROLL","STANDARD"
+"03887","+43.459999","-071.040842","UNION","NH","CARROLL","STANDARD"
+"03890","+43.811782","-071.194586","WEST OSSIPEE","NH","CARROLL","STANDARD"
+"03894","+43.667102","-071.183597","WOLFEBORO","NH","CARROLL","STANDARD"
+"03896","+43.589157","-071.218894","WOLFEBORO FALLS","NH","CARROLL","PO BOX ONLY"
+"03897","+43.883871","-071.257726","WONALANCET","NH","CARROLL","STANDARD"
+"03901","+43.279539","-070.740013","BERWICK","ME","YORK","STANDARD"
+"03902","+43.245785","-070.664719","CAPE NEDDICK","ME","YORK","STANDARD"
+"03903","+43.182729","-070.745759","ELIOT","ME","YORK","STANDARD"
+"03904","+43.191554","-070.684607","KITTERY","ME","YORK","STANDARD"
+"03905","+43.094746","-070.689280","KITTERY POINT","ME","YORK","STANDARD"
+"03906","+43.340626","-070.753996","NORTH BERWICK","ME","YORK","STANDARD"
+"03907","+43.350806","-070.731498","OGUNQUIT","ME","YORK","STANDARD"
+"03908","+43.227549","-070.711710","SOUTH BERWICK","ME","YORK","STANDARD"
+"03909","+43.237891","-070.690990","YORK","ME","YORK","STANDARD"
+"03910","+43.211674","-070.732010","YORK BEACH","ME","YORK","PO BOX ONLY"
+"03911","+43.155465","-070.635702","YORK HARBOR","ME","YORK","PO BOX ONLY"
+"04001","+43.520752","-070.804588","ACTON","ME","YORK","STANDARD"
+"04002","+43.467224","-070.738992","ALFRED","ME","YORK","STANDARD"
+"04003","+43.735867","-069.995456","BAILEY ISLAND","ME","CUMBERLAND","STANDARD"
+"04004","+43.365658","-070.604379","BAR MILLS","ME","YORK","PO BOX ONLY"
+"04005","+43.532376","-070.651859","BIDDEFORD","ME","YORK","STANDARD"
+"04006","+43.436049","-070.359800","BIDDEFORD POOL","ME","YORK","PO BOX ONLY"
+"04007","+43.458130","-070.505301","BIDDEFORD","ME","YORK","STANDARD"
+"04008","+44.023162","-069.875816","BOWDOINHAM","ME","SAGADAHOC","STANDARD"
+"04009","+43.939828","-070.747431","BRIDGTON","ME","CUMBERLAND","STANDARD"
+"04010","+44.163033","-070.739823","BROWNFIELD","ME","OXFORD","STANDARD"
+"04011","+43.935634","-070.340652","BRUNSWICK","ME","CUMBERLAND","STANDARD"
+"04013","+44.408078","-070.470703","BUSTINS ISLAND","ME","CUMBERLAND","STANDARD"
+"04014","+43.365658","-070.604379","CAPE PORPOISE","ME","YORK","STANDARD"
+"04015","+43.962115","-070.524465","CASCO","ME","CUMBERLAND","STANDARD"
+"04016","+44.180965","-070.891727","CENTER LOVELL","ME","OXFORD","PO BOX ONLY"
+"04017","+43.727806","-070.120437","CHEBEAGUE ISLAND","ME","CUMBERLAND","STANDARD"
+"04019","+44.408078","-070.470703","CLIFF ISLAND","ME","CUMBERLAND","PO BOX ONLY"
+"04020","+43.773970","-070.791727","CORNISH","ME","YORK","STANDARD"
+"04021","+43.812676","-070.450494","CUMBERLAND CENTER","ME","CUMBERLAND","STANDARD"
+"04022","+44.566156","-070.661557","DENMARK","ME","OXFORD","STANDARD"
+"04024","+43.844826","-070.688656","EAST BALDWIN","ME","CUMBERLAND","STANDARD"
+"04027","+43.459708","-070.915190","LEBANON","ME","YORK","STANDARD"
+"04028","+43.732391","-070.845114","EAST PARSONFIELD","ME","YORK","PO BOX ONLY"
+"04029","+43.867223","-070.547159","SEBAGO","ME","CUMBERLAND","STANDARD"
+"04030","+43.596921","-070.689681","EAST WATERBORO","ME","YORK","STANDARD"
+"04032","+43.864477","-070.097543","FREEPORT","ME","CUMBERLAND","STANDARD"
+"04033","+44.408078","-070.470703","FREEPORT","ME","CUMBERLAND","UNIQUE"
+"04034","+44.408078","-070.470703","FREEPORT","ME","CUMBERLAND","UNIQUE"
+"04037","+44.044292","-070.964418","FRYEBURG","ME","OXFORD","STANDARD"
+"04038","+43.803689","-070.355188","GORHAM","ME","CUMBERLAND","STANDARD"
+"04039","+43.878567","-070.328889","GRAY","ME","CUMBERLAND","STANDARD"
+"04040","+43.992681","-070.357119","HARRISON","ME","CUMBERLAND","STANDARD"
+"04041","+43.879628","-070.826188","HIRAM","ME","OXFORD","STANDARD"
+"04042","+43.584232","-070.624391","HOLLIS CENTER","ME","YORK","STANDARD"
+"04043","+43.494679","-070.549210","KENNEBUNK","ME","YORK","STANDARD"
+"04046","+43.534125","-070.607475","KENNEBUNKPORT","ME","YORK","STANDARD"
+"04047","+43.744987","-070.909196","PARSONSFIELD","ME","YORK","STANDARD"
+"04048","+43.661222","-070.834480","LIMERICK","ME","YORK","STANDARD"
+"04049","+43.703854","-070.748668","LIMINGTON","ME","YORK","STANDARD"
+"04050","+44.408078","-070.470703","LONG ISLAND","ME","CUMBERLAND","STANDARD"
+"04051","+44.139839","-070.886741","LOVELL","ME","OXFORD","STANDARD"
+"04053","+44.408078","-070.470703","MEREPOINT","ME","CUMBERLAND","STANDARD"
+"04054","+43.276341","-070.597752","MOODY","ME","YORK","PO BOX ONLY"
+"04055","+43.957208","-070.639546","NAPLES","ME","CUMBERLAND","STANDARD"
+"04056","+43.658378","-070.868871","NEWFIELD","ME","YORK","PO BOX ONLY"
+"04057","+44.408078","-070.470703","NORTH BRIDGTON","ME","CUMBERLAND","PO BOX ONLY"
+"04061","+43.542090","-070.710773","NORTH WATERBORO","ME","YORK","STANDARD"
+"04062","+43.911381","-070.396652","WINDHAM","ME","CUMBERLAND","STANDARD"
+"04063","+43.504889","-070.385703","OCEAN PARK","ME","YORK","STANDARD"
+"04064","+43.411837","-070.469526","OLD ORCHARD BEACH","ME","YORK","STANDARD"
+"04066","+43.779982","-069.975477","ORRS ISLAND","ME","CUMBERLAND","STANDARD"
+"04068","+43.848322","-070.935379","PORTER","ME","OXFORD","STANDARD"
+"04069","+43.894983","-070.189159","POWNAL","ME","CUMBERLAND","STANDARD"
+"04070","+43.576983","-070.273642","SCARBOROUGH","ME","CUMBERLAND","STANDARD"
+"04071","+43.906227","-070.465928","RAYMOND","ME","CUMBERLAND","STANDARD"
+"04072","+43.541241","-070.666387","SACO","ME","YORK","STANDARD"
+"04073","+43.576196","-070.630569","SANFORD","ME","YORK","STANDARD"
+"04074","+43.724562","-070.375162","SCARBOROUGH","ME","CUMBERLAND","STANDARD"
+"04075","+43.796053","-070.552183","SEBAGO LAKE","ME","CUMBERLAND","STANDARD"
+"04076","+43.510275","-070.771590","SHAPLEIGH","ME","YORK","STANDARD"
+"04077","+43.910029","-070.524524","SOUTH CASCO","ME","CUMBERLAND","PO BOX ONLY"
+"04078","+43.820774","-070.120781","SOUTH FREEPORT","ME","CUMBERLAND","STANDARD"
+"04079","+43.781050","-069.995537","HARPSWELL","ME","CUMBERLAND","STANDARD"
+"04081","+44.566156","-070.661557","SOUTH WATERFORD","ME","OXFORD","STANDARD"
+"04082","+44.408078","-070.470703","SOUTH WINDHAM","ME","CUMBERLAND","STANDARD"
+"04083","+43.465941","-070.748295","SPRINGVALE","ME","YORK","STANDARD"
+"04084","+43.804454","-070.554905","STANDISH","ME","CUMBERLAND","STANDARD"
+"04085","+43.771934","-070.639561","STEEP FALLS","ME","CUMBERLAND","STANDARD"
+"04086","+43.981404","-069.937793","TOPSHAM","ME","SAGADAHOC","STANDARD"
+"04087","+43.573684","-070.749181","WATERBORO","ME","YORK","STANDARD"
+"04088","+44.566156","-070.661557","WATERFORD","ME","OXFORD","STANDARD"
+"04090","+43.429659","-070.671274","WELLS","ME","YORK","STANDARD"
+"04091","+44.408078","-070.470703","WEST BALDWIN","ME","CUMBERLAND","STANDARD"
+"04092","+43.855116","-070.568534","WESTBROOK","ME","CUMBERLAND","STANDARD"
+"04093","+43.653805","-070.622959","BUXTON","ME","YORK","STANDARD"
+"04094","+43.406101","-070.573255","WEST KENNEBUNK","ME","YORK","PO BOX ONLY"
+"04095","+43.601018","-070.902676","WEST NEWFIELD","ME","YORK","STANDARD"
+"04096","+43.798227","-070.171979","YARMOUTH","ME","CUMBERLAND","STANDARD"
+"04097","+43.837951","-070.200114","NORTH YARMOUTH","ME","CUMBERLAND","STANDARD"
+"04098","+44.408078","-070.470703","WESTBROOK","ME","CUMBERLAND","STANDARD"
+"04101","+43.658784","-070.262393","PORTLAND","ME","CUMBERLAND","STANDARD"
+"04102","+43.742750","-070.443380","PORTLAND","ME","CUMBERLAND","STANDARD"
+"04103","+43.688260","-070.289844","PORTLAND","ME","CUMBERLAND","STANDARD"
+"04104","+43.846490","-070.464839","PORTLAND","ME","CUMBERLAND","STANDARD"
+"04105","+43.739280","-070.270696","FALMOUTH","ME","CUMBERLAND","STANDARD"
+"04106","+43.627364","-070.289248","SOUTH PORTLAND","ME","CUMBERLAND","STANDARD"
+"04107","+43.595512","-070.239559","CAPE ELIZABETH","ME","CUMBERLAND","STANDARD"
+"04108","+43.662809","-070.188442","PEAKS ISLAND","ME","CUMBERLAND","STANDARD"
+"04109","+43.678339","-070.198742","PORTLAND","ME","CUMBERLAND","STANDARD"
+"04110","+43.759021","-070.199307","CUMBERLAND FORESIDE","ME","CUMBERLAND","STANDARD"
+"04112","+44.408078","-070.470703","PORTLAND","ME","CUMBERLAND","STANDARD"
+"04116","+44.408078","-070.470703","SOUTH PORTLAND","ME","CUMBERLAND","STANDARD"
+"04122","+44.408078","-070.470703","PORTLAND","ME","CUMBERLAND","UNIQUE"
+"04123","+44.408078","-070.470703","PORTLAND","ME","CUMBERLAND","UNIQUE"
+"04124","+44.408078","-070.470703","PORTLAND","ME","CUMBERLAND","UNIQUE"
+"04210","+44.087422","-070.243848","AUBURN","ME","ANDROSCOGGIN","STANDARD"
+"04211","+44.197009","-070.239485","AUBURN","ME","ANDROSCOGGIN","STANDARD"
+"04212","+44.197009","-070.239485","AUBURN","ME","ANDROSCOGGIN","STANDARD"
+"04216","+44.568160","-070.704051","ANDOVER","ME","OXFORD","STANDARD"
+"04217","+44.428414","-070.770035","BETHEL","ME","OXFORD","STANDARD"
+"04219","+44.265009","-070.587095","BRYANT POND","ME","OXFORD","STANDARD"
+"04220","+44.326165","-070.381112","BUCKFIELD","ME","OXFORD","STANDARD"
+"04221","+44.385750","-070.311314","CANTON","ME","OXFORD","STANDARD"
+"04222","+43.968378","-070.184618","DURHAM","ME","ANDROSCOGGIN","STANDARD"
+"04223","+44.023873","-070.285748","DANVILLE","ME","ANDROSCOGGIN","PO BOX ONLY"
+"04224","+44.553968","-070.422541","DIXFIELD","ME","OXFORD","STANDARD"
+"04225","+44.602705","-070.226510","DRYDEN","ME","FRANKLIN","STANDARD"
+"04226","+44.555618","-070.691857","EAST ANDOVER","ME","OXFORD","STANDARD"
+"04227","+44.579135","-070.326337","EAST DIXFIELD","ME","FRANKLIN","PO BOX ONLY"
+"04228","+44.197009","-070.239485","EAST LIVERMORE","ME","ANDROSCOGGIN","STANDARD"
+"04230","+44.062672","-070.327049","EAST POLAND","ME","ANDROSCOGGIN","PO BOX ONLY"
+"04231","+44.313283","-070.861797","STONEHAM","ME","OXFORD","STANDARD"
+"04234","+44.617509","-070.182012","EAST WILTON","ME","FRANKLIN","PO BOX ONLY"
+"04236","+44.189655","-070.136683","GREENE","ME","ANDROSCOGGIN","STANDARD"
+"04237","+44.494347","-070.735691","HANOVER","ME","OXFORD","STANDARD"
+"04238","+44.225640","-070.372831","HEBRON","ME","OXFORD","STANDARD"
+"04239","+44.541508","-070.208556","JAY","ME","FRANKLIN","STANDARD"
+"04240","+44.086323","-070.169297","LEWISTON","ME","ANDROSCOGGIN","STANDARD"
+"04241","+44.197009","-070.239485","LEWISTON","ME","ANDROSCOGGIN","STANDARD"
+"04243","+44.197009","-070.239485","LEWISTON","ME","ANDROSCOGGIN","STANDARD"
+"04250","+44.033026","-070.101247","LISBON","ME","ANDROSCOGGIN","STANDARD"
+"04252","+44.032476","-070.068046","LISBON FALLS","ME","ANDROSCOGGIN","STANDARD"
+"04253","+44.297416","-070.189139","LIVERMORE","ME","ANDROSCOGGIN","STANDARD"
+"04254","+44.242189","-070.188508","LIVERMORE FALLS","ME","ANDROSCOGGIN","STANDARD"
+"04255","+44.401595","-070.708774","GREENWOOD","ME","OXFORD","STANDARD"
+"04256","+44.079644","-070.272624","MECHANIC FALLS","ME","ANDROSCOGGIN","STANDARD"
+"04257","+44.570265","-070.516131","MEXICO","ME","OXFORD","STANDARD"
+"04258","+44.146121","-070.339859","MINOT","ME","ANDROSCOGGIN","STANDARD"
+"04259","+44.349166","-069.870181","MONMOUTH","ME","KENNEBEC","STANDARD"
+"04260","+43.967474","-070.299687","NEW GLOUCESTER","ME","CUMBERLAND","STANDARD"
+"04261","+44.689526","-071.011246","NEWRY","ME","OXFORD","STANDARD"
+"04262","+45.063384","-070.381639","NORTH JAY","ME","FRANKLIN","STANDARD"
+"04263","+44.292089","-070.135366","LEEDS","ME","ANDROSCOGGIN","STANDARD"
+"04265","+44.303359","-070.037848","NORTH MONMOUTH","ME","KENNEBEC","STANDARD"
+"04266","+44.357987","-070.255783","NORTH TURNER","ME","ANDROSCOGGIN","PO BOX ONLY"
+"04267","+44.566156","-070.661557","NORTH WATERFORD","ME","OXFORD","PO BOX ONLY"
+"04268","+44.280503","-070.691576","NORWAY","ME","OXFORD","STANDARD"
+"04270","+44.284385","-070.507791","OXFORD","ME","OXFORD","STANDARD"
+"04271","+44.264111","-070.498513","PARIS","ME","OXFORD","PO BOX ONLY"
+"04274","+44.047435","-070.389923","POLAND","ME","ANDROSCOGGIN","STANDARD"
+"04275","+44.566156","-070.661557","ROXBURY","ME","OXFORD","STANDARD"
+"04276","+44.523556","-070.638174","RUMFORD","ME","OXFORD","STANDARD"
+"04278","+44.377031","-070.568041","RUMFORD CENTER","ME","OXFORD","PO BOX ONLY"
+"04280","+44.126723","-070.126922","SABATTUS","ME","ANDROSCOGGIN","STANDARD"
+"04281","+44.353052","-070.607841","SOUTH PARIS","ME","OXFORD","STANDARD"
+"04282","+44.265473","-070.254155","TURNER","ME","ANDROSCOGGIN","STANDARD"
+"04283","+44.197009","-070.239485","TURNER CENTER","ME","ANDROSCOGGIN","STANDARD"
+"04284","+44.359835","-070.074555","WAYNE","ME","KENNEBEC","STANDARD"
+"04285","+45.063384","-070.381639","WELD","ME","FRANKLIN","STANDARD"
+"04286","+44.402050","-070.860094","WEST BETHEL","ME","OXFORD","STANDARD"
+"04287","+44.057514","-069.965553","BOWDOIN","ME","SAGADAHOC","STANDARD"
+"04288","+44.197009","-070.239485","WEST MINOT","ME","ANDROSCOGGIN","PO BOX ONLY"
+"04289","+44.340438","-070.543265","WEST PARIS","ME","OXFORD","STANDARD"
+"04290","+44.477183","-070.436722","PERU","ME","OXFORD","STANDARD"
+"04291","+44.040857","-070.453006","WEST POLAND","ME","ANDROSCOGGIN","PO BOX ONLY"
+"04292","+44.318900","-070.477506","SUMNER","ME","OXFORD","STANDARD"
+"04294","+44.618873","-070.245935","WILTON","ME","FRANKLIN","STANDARD"
+"04330","+44.351642","-069.803773","AUGUSTA","ME","KENNEBEC","STANDARD"
+"04332","+44.414056","-069.751913","AUGUSTA","ME","KENNEBEC","STANDARD"
+"04333","+44.414056","-069.751913","AUGUSTA","ME","KENNEBEC","UNIQUE"
+"04336","+44.315693","-069.818009","AUGUSTA","ME","KENNEBEC","UNIQUE"
+"04338","+44.414056","-069.751913","AUGUSTA","ME","KENNEBEC","STANDARD"
+"04341","+44.258771","-069.551024","COOPERS MILLS","ME","LINCOLN","PO BOX ONLY"
+"04342","+44.077448","-069.738418","DRESDEN","ME","LINCOLN","STANDARD"
+"04343","+44.414056","-069.751913","EAST WINTHROP","ME","KENNEBEC","PO BOX ONLY"
+"04344","+44.256614","-069.797105","FARMINGDALE","ME","KENNEBEC","STANDARD"
+"04345","+44.296652","-069.796909","GARDINER","ME","KENNEBEC","STANDARD"
+"04346","+44.269959","-069.724135","RANDOLPH","ME","KENNEBEC","STANDARD"
+"04347","+44.249130","-069.795037","HALLOWELL","ME","KENNEBEC","STANDARD"
+"04348","+44.220432","-069.513293","JEFFERSON","ME","LINCOLN","STANDARD"
+"04349","+44.414056","-069.751913","KENTS HILL","ME","KENNEBEC","STANDARD"
+"04350","+44.158104","-069.954040","LITCHFIELD","ME","KENNEBEC","STANDARD"
+"04351","+44.358014","-069.867001","MANCHESTER","ME","KENNEBEC","STANDARD"
+"04352","+44.461522","-069.986762","MOUNT VERNON","ME","KENNEBEC","STANDARD"
+"04353","+44.188406","-069.575119","WHITEFIELD","ME","LINCOLN","STANDARD"
+"04354","+44.395590","-069.416800","PALERMO","ME","WALDO","STANDARD"
+"04355","+44.384840","-069.953716","READFIELD","ME","KENNEBEC","STANDARD"
+"04357","+44.108059","-069.827489","RICHMOND","ME","SAGADAHOC","STANDARD"
+"04358","+44.375578","-069.586327","SOUTH CHINA","ME","KENNEBEC","STANDARD"
+"04359","+44.183266","-069.777196","SOUTH GARDINER","ME","KENNEBEC","PO BOX ONLY"
+"04360","+44.414056","-069.751913","VIENNA","ME","KENNEBEC","STANDARD"
+"04363","+44.414056","-069.751913","WINDSOR","ME","KENNEBEC","STANDARD"
+"04364","+44.322865","-069.957627","WINTHROP","ME","KENNEBEC","STANDARD"
+"04401","+45.061744","-068.878893","BANGOR","ME","PENOBSCOT","STANDARD"
+"04402","+45.519867","-068.647416","BANGOR","ME","PENOBSCOT","STANDARD"
+"04406","+45.184103","-069.233382","ABBOT","ME","PISCATAQUIS","STANDARD"
+"04408","+44.641873","-068.391481","AURORA","ME","HANCOCK","STANDARD"
+"04410","+45.058864","-068.954320","BRADFORD","ME","PENOBSCOT","STANDARD"
+"04411","+44.914946","-068.625688","BRADLEY","ME","PENOBSCOT","STANDARD"
+"04412","+44.835610","-068.783742","BREWER","ME","PENOBSCOT","STANDARD"
+"04413","+45.002969","-067.495548","BROOKTON","ME","WASHINGTON","STANDARD"
+"04414","+45.310095","-069.029462","BROWNVILLE","ME","PISCATAQUIS","STANDARD"
+"04415","+45.351184","-069.058062","BROWNVILLE JUNCTION","ME","PISCATAQUIS","PO BOX ONLY"
+"04416","+44.600448","-068.773241","BUCKSPORT","ME","HANCOCK","STANDARD"
+"04417","+44.817820","-068.817481","BURLINGTON","ME","PENOBSCOT","STANDARD"
+"04418","+45.049429","-068.581212","GREENBUSH","ME","PENOBSCOT","STANDARD"
+"04419","+44.808062","-068.940624","CARMEL","ME","PENOBSCOT","STANDARD"
+"04420","+44.412968","-068.798047","CASTINE","ME","HANCOCK","UNIQUE"
+"04421","+44.415639","-068.792883","CASTINE","ME","HANCOCK","STANDARD"
+"04422","+45.066999","-069.040695","CHARLESTON","ME","PENOBSCOT","STANDARD"
+"04423","+45.039478","-068.529182","COSTIGAN","ME","PENOBSCOT","STANDARD"
+"04424","+45.658831","-067.866054","DANFORTH","ME","WASHINGTON","STANDARD"
+"04426","+45.171605","-069.207725","DOVER FOXCROFT","ME","PISCATAQUIS","STANDARD"
+"04427","+44.989376","-068.865187","CORINTH","ME","PENOBSCOT","STANDARD"
+"04428","+44.791690","-068.577728","EDDINGTON","ME","PENOBSCOT","STANDARD"
+"04429","+44.894294","-068.818345","HOLDEN","ME","PENOBSCOT","STANDARD"
+"04430","+45.233408","-068.689174","EAST MILLINOCKET","ME","PENOBSCOT","STANDARD"
+"04431","+44.561174","-068.664735","EAST ORLAND","ME","HANCOCK","PO BOX ONLY"
+"04434","+45.519867","-068.647416","ETNA","ME","PENOBSCOT","STANDARD"
+"04435","+44.966032","-069.133080","EXETER","ME","PENOBSCOT","STANDARD"
+"04438","+44.632657","-068.849975","FRANKFORT","ME","WALDO","STANDARD"
+"04441","+45.792364","-069.304630","GREENVILLE","ME","PISCATAQUIS","STANDARD"
+"04442","+45.792364","-069.304630","GREENVILLE JUNCTION","ME","PISCATAQUIS","STANDARD"
+"04443","+45.315976","-069.457444","GUILFORD","ME","PISCATAQUIS","STANDARD"
+"04444","+44.835984","-068.829046","HAMPDEN","ME","PENOBSCOT","STANDARD"
+"04448","+45.245635","-068.666632","HOWLAND","ME","PENOBSCOT","STANDARD"
+"04449","+45.006054","-068.884621","HUDSON","ME","PENOBSCOT","STANDARD"
+"04450","+44.918877","-068.965803","KENDUSKEAG","ME","PENOBSCOT","STANDARD"
+"04451","+45.519867","-068.647416","KINGMAN","ME","PENOBSCOT","STANDARD"
+"04453","+44.787229","-069.218210","LAGRANGE","ME","PENOBSCOT","STANDARD"
+"04454","+45.002969","-067.495548","LAMBERT LAKE","ME","WASHINGTON","PO BOX ONLY"
+"04455","+45.519867","-068.647416","LEE","ME","PENOBSCOT","STANDARD"
+"04456","+44.871231","-069.011636","LEVANT","ME","PENOBSCOT","STANDARD"
+"04457","+45.366794","-068.492990","LINCOLN","ME","PENOBSCOT","STANDARD"
+"04459","+45.519867","-068.647416","MATTAWAMKEAG","ME","PENOBSCOT","STANDARD"
+"04460","+45.618608","-068.543602","MEDWAY","ME","PENOBSCOT","STANDARD"
+"04461","+45.054200","-068.595946","MILFORD","ME","PENOBSCOT","STANDARD"
+"04462","+45.226479","-068.752091","MILLINOCKET","ME","PENOBSCOT","STANDARD"
+"04463","+45.244612","-068.975988","MILO","ME","PISCATAQUIS","STANDARD"
+"04464","+45.792364","-069.304630","MONSON","ME","PISCATAQUIS","STANDARD"
+"04467","+45.519867","-068.647416","OLAMON","ME","PENOBSCOT","PO BOX ONLY"
+"04468","+45.040655","-068.722962","OLD TOWN","ME","PENOBSCOT","STANDARD"
+"04469","+45.002798","-068.633430","ORONO","ME","PENOBSCOT","UNIQUE"
+"04471","+46.516166","-068.886826","ORIENT","ME","AROOSTOOK","STANDARD"
+"04472","+44.409375","-068.625903","ORLAND","ME","HANCOCK","STANDARD"
+"04473","+45.068848","-068.744361","ORONO","ME","PENOBSCOT","STANDARD"
+"04474","+44.842939","-068.782487","ORRINGTON","ME","PENOBSCOT","STANDARD"
+"04475","+45.040668","-068.618775","PASSADUMKEAG","ME","PENOBSCOT","STANDARD"
+"04476","+44.433911","-068.721716","PENOBSCOT","ME","HANCOCK","STANDARD"
+"04478","+45.286570","-070.054629","ROCKWOOD","ME","SOMERSET","STANDARD"
+"04479","+45.792364","-069.304630","SANGERVILLE","ME","PISCATAQUIS","STANDARD"
+"04481","+45.792364","-069.304630","SEBEC","ME","PISCATAQUIS","STANDARD"
+"04485","+45.792364","-069.304630","SHIRLEY MILLS","ME","PISCATAQUIS","STANDARD"
+"04487","+45.519867","-068.647416","SPRINGFIELD","ME","PENOBSCOT","STANDARD"
+"04488","+44.894697","-069.142341","STETSON","ME","PENOBSCOT","STANDARD"
+"04489","+44.922368","-068.686796","STILLWATER","ME","PENOBSCOT","PO BOX ONLY"
+"04490","+45.002969","-067.495548","TOPSFIELD","ME","WASHINGTON","STANDARD"
+"04491","+45.002969","-067.495548","VANCEBORO","ME","WASHINGTON","PO BOX ONLY"
+"04492","+45.002969","-067.495548","WAITE","ME","WASHINGTON","STANDARD"
+"04493","+45.519867","-068.647416","WEST ENFIELD","ME","PENOBSCOT","STANDARD"
+"04495","+45.519867","-068.647416","WINN","ME","PENOBSCOT","STANDARD"
+"04496","+44.653370","-068.917487","WINTERPORT","ME","WALDO","STANDARD"
+"04497","+46.516166","-068.886826","WYTOPITLOCK","ME","AROOSTOOK","STANDARD"
+"04530","+43.867892","-069.826495","BATH","ME","SAGADAHOC","STANDARD"
+"04535","+44.008962","-069.566684","ALNA","ME","LINCOLN","STANDARD"
+"04536","+44.021333","-069.523263","BAYVILLE","ME","LINCOLN","STANDARD"
+"04537","+43.894903","-069.627163","BOOTHBAY","ME","LINCOLN","STANDARD"
+"04538","+43.956167","-069.517161","BOOTHBAY HARBOR","ME","LINCOLN","STANDARD"
+"04539","+43.928967","-069.598725","BRISTOL","ME","LINCOLN","STANDARD"
+"04541","+43.884294","-069.479184","CHAMBERLAIN","ME","LINCOLN","STANDARD"
+"04543","+43.986485","-069.424228","DAMARISCOTTA","ME","LINCOLN","STANDARD"
+"04544","+43.826770","-069.597446","EAST BOOTHBAY","ME","LINCOLN","STANDARD"
+"04547","+44.010424","-069.231179","FRIENDSHIP","ME","KNOX","STANDARD"
+"04548","+43.805389","-069.745295","GEORGETOWN","ME","SAGADAHOC","STANDARD"
+"04549","+44.021333","-069.523263","ISLE OF SPRINGS","ME","LINCOLN","STANDARD"
+"04551","+44.010411","-069.440192","BREMEN","ME","LINCOLN","STANDARD"
+"04552","+44.021333","-069.523263","NEWAGEN","ME","LINCOLN","STANDARD"
+"04553","+43.991336","-069.503427","NEWCASTLE","ME","LINCOLN","STANDARD"
+"04554","+43.870936","-069.566313","NEW HARBOR","ME","LINCOLN","STANDARD"
+"04555","+44.074877","-069.536374","NOBLEBORO","ME","LINCOLN","STANDARD"
+"04556","+43.931748","-069.587334","EDGECOMB","ME","LINCOLN","STANDARD"
+"04558","+43.896727","-069.509282","PEMAQUID","ME","LINCOLN","STANDARD"
+"04562","+43.789616","-069.810821","PHIPPSBURG","ME","SAGADAHOC","STANDARD"
+"04563","+44.023010","-069.255572","CUSHING","ME","KNOX","STANDARD"
+"04564","+43.932449","-069.468052","ROUND POND","ME","LINCOLN","STANDARD"
+"04565","+43.773312","-069.863461","SEBASCO ESTATES","ME","SAGADAHOC","PO BOX ONLY"
+"04567","+43.900856","-069.859541","SMALL POINT","ME","SAGADAHOC","STANDARD"
+"04568","+43.877877","-069.612725","SOUTH BRISTOL","ME","LINCOLN","STANDARD"
+"04570","+44.021333","-069.523263","SQUIRREL ISLAND","ME","LINCOLN","STANDARD"
+"04571","+43.882610","-069.680144","TREVETT","ME","LINCOLN","STANDARD"
+"04572","+44.038581","-069.415708","WALDOBORO","ME","LINCOLN","STANDARD"
+"04573","+43.929821","-069.592127","WALPOLE","ME","LINCOLN","STANDARD"
+"04574","+44.162384","-069.387795","WASHINGTON","ME","KNOX","STANDARD"
+"04575","+43.854534","-069.660795","WEST BOOTHBAY HARBOR","ME","LINCOLN","PO BOX ONLY"
+"04576","+43.935605","-069.529648","SOUTHPORT","ME","LINCOLN","STANDARD"
+"04578","+43.964901","-069.597134","WISCASSET","ME","LINCOLN","STANDARD"
+"04579","+43.938696","-069.764378","WOOLWICH","ME","SAGADAHOC","STANDARD"
+"04605","+44.477935","-068.356311","ELLSWORTH","ME","HANCOCK","STANDARD"
+"04606","+45.002969","-067.495548","ADDISON","ME","WASHINGTON","STANDARD"
+"04607","+44.483471","-068.090339","GOULDSBORO","ME","HANCOCK","STANDARD"
+"04609","+44.362323","-068.305513","BAR HARBOR","ME","HANCOCK","STANDARD"
+"04611","+45.002969","-067.495548","BEALS","ME","WASHINGTON","PO BOX ONLY"
+"04612","+44.239876","-068.354598","BERNARD","ME","HANCOCK","STANDARD"
+"04613","+44.641873","-068.391481","BIRCH HARBOR","ME","HANCOCK","STANDARD"
+"04614","+44.296910","-068.623927","BLUE HILL","ME","HANCOCK","STANDARD"
+"04615","+44.641873","-068.391481","BLUE HILL FALLS","ME","HANCOCK","STANDARD"
+"04616","+44.258121","-068.567404","BROOKLIN","ME","HANCOCK","STANDARD"
+"04617","+44.337581","-068.765568","BROOKSVILLE","ME","HANCOCK","STANDARD"
+"04619","+45.188254","-067.389101","CALAIS","ME","WASHINGTON","STANDARD"
+"04622","+44.603258","-067.923248","CHERRYFIELD","ME","WASHINGTON","STANDARD"
+"04623","+44.698608","-067.779881","COLUMBIA FALLS","ME","WASHINGTON","STANDARD"
+"04624","+44.641873","-068.391481","COREA","ME","HANCOCK","STANDARD"
+"04625","+44.641873","-068.391481","CRANBERRY ISLES","ME","HANCOCK","PO BOX ONLY"
+"04626","+45.002969","-067.495548","CUTLER","ME","WASHINGTON","STANDARD"
+"04627","+44.213503","-068.711691","DEER ISLE","ME","HANCOCK","STANDARD"
+"04628","+45.002969","-067.495548","DENNYSVILLE","ME","WASHINGTON","STANDARD"
+"04629","+44.641873","-068.391481","EAST BLUE HILL","ME","HANCOCK","STANDARD"
+"04630","+44.707460","-067.462470","EAST MACHIAS","ME","WASHINGTON","STANDARD"
+"04631","+45.036287","-067.136853","EASTPORT","ME","WASHINGTON","STANDARD"
+"04634","+44.595131","-068.233576","FRANKLIN","ME","HANCOCK","STANDARD"
+"04635","+44.641873","-068.391481","FRENCHBORO","ME","HANCOCK","PO BOX ONLY"
+"04637","+45.185635","-067.601026","GRAND LAKE STREAM","ME","WASHINGTON","STANDARD"
+"04640","+44.641873","-068.391481","HANCOCK","ME","HANCOCK","STANDARD"
+"04642","+44.641873","-068.391481","HARBORSIDE","ME","HANCOCK","STANDARD"
+"04643","+45.002969","-067.495548","HARRINGTON","ME","WASHINGTON","STANDARD"
+"04644","+44.641873","-068.391481","HULLS COVE","ME","HANCOCK","PO BOX ONLY"
+"04645","+44.032196","-069.148017","ISLE AU HAUT","ME","KNOX","STANDARD"
+"04646","+44.641873","-068.391481","ISLESFORD","ME","HANCOCK","PO BOX ONLY"
+"04648","+45.002969","-067.495548","JONESBORO","ME","WASHINGTON","STANDARD"
+"04649","+45.002969","-067.495548","JONESPORT","ME","WASHINGTON","STANDARD"
+"04650","+44.641873","-068.391481","LITTLE DEER ISLE","ME","HANCOCK","STANDARD"
+"04652","+44.904288","-067.040767","LUBEC","ME","WASHINGTON","STANDARD"
+"04653","+44.641873","-068.391481","BASS HARBOR","ME","HANCOCK","STANDARD"
+"04654","+44.660627","-067.469196","MACHIAS","ME","WASHINGTON","STANDARD"
+"04655","+45.002969","-067.495548","MACHIASPORT","ME","WASHINGTON","STANDARD"
+"04656","+44.641873","-068.391481","MANSET","ME","HANCOCK","STANDARD"
+"04657","+45.002969","-067.495548","MEDDYBEMPS","ME","WASHINGTON","STANDARD"
+"04658","+45.002969","-067.495548","MILBRIDGE","ME","WASHINGTON","STANDARD"
+"04660","+44.334692","-068.308737","MOUNT DESERT","ME","HANCOCK","STANDARD"
+"04662","+44.294073","-068.284865","NORTHEAST HARBOR","ME","HANCOCK","PO BOX ONLY"
+"04664","+44.641873","-068.391481","SULLIVAN","ME","HANCOCK","STANDARD"
+"04665","+44.641873","-068.391481","OTTER CREEK","ME","HANCOCK","PO BOX ONLY"
+"04666","+44.930092","-067.156533","PEMBROKE","ME","WASHINGTON","STANDARD"
+"04667","+45.013348","-067.097043","PERRY","ME","WASHINGTON","STANDARD"
+"04668","+45.209229","-067.575432","PRINCETON","ME","WASHINGTON","STANDARD"
+"04669","+44.641873","-068.391481","PROSPECT HARBOR","ME","HANCOCK","STANDARD"
+"04671","+45.002969","-067.495548","ROBBINSTON","ME","WASHINGTON","STANDARD"
+"04672","+44.413523","-068.251778","SALSBURY COVE","ME","HANCOCK","PO BOX ONLY"
+"04673","+44.313629","-068.686305","SARGENTVILLE","ME","HANCOCK","STANDARD"
+"04674","+44.641873","-068.391481","SEAL COVE","ME","HANCOCK","STANDARD"
+"04675","+44.299037","-068.246314","SEAL HARBOR","ME","HANCOCK","PO BOX ONLY"
+"04676","+44.399111","-068.701228","SEDGWICK","ME","HANCOCK","STANDARD"
+"04677","+44.491175","-068.191370","SORRENTO","ME","HANCOCK","STANDARD"
+"04679","+44.390897","-068.261568","SOUTHWEST HARBOR","ME","HANCOCK","STANDARD"
+"04680","+45.002969","-067.495548","STEUBEN","ME","WASHINGTON","STANDARD"
+"04681","+44.641873","-068.391481","STONINGTON","ME","HANCOCK","STANDARD"
+"04683","+44.641873","-068.391481","SUNSET","ME","HANCOCK","STANDARD"
+"04684","+44.641873","-068.391481","SURRY","ME","HANCOCK","STANDARD"
+"04685","+44.213118","-068.396479","SWANS ISLAND","ME","HANCOCK","STANDARD"
+"04686","+45.002969","-067.495548","WESLEY","ME","WASHINGTON","STANDARD"
+"04690","+44.641873","-068.391481","WEST TREMONT","ME","HANCOCK","STANDARD"
+"04691","+45.002969","-067.495548","WHITING","ME","WASHINGTON","STANDARD"
+"04693","+44.387188","-068.074964","WINTER HARBOR","ME","HANCOCK","STANDARD"
+"04694","+45.152637","-067.377410","BAILEYVILLE","ME","WASHINGTON","STANDARD"
+"04730","+46.121345","-067.833009","HOULTON","ME","AROOSTOOK","STANDARD"
+"04732","+46.975725","-068.398160","ASHLAND","ME","AROOSTOOK","STANDARD"
+"04733","+46.516166","-068.886826","BENEDICTA","ME","AROOSTOOK","STANDARD"
+"04734","+46.516166","-068.886826","BLAINE","ME","AROOSTOOK","PO BOX ONLY"
+"04735","+46.516166","-068.886826","BRIDGEWATER","ME","AROOSTOOK","STANDARD"
+"04736","+46.871355","-068.025442","CARIBOU","ME","AROOSTOOK","STANDARD"
+"04737","+46.516166","-068.886826","CLAYTON LAKE","ME","AROOSTOOK","STANDARD"
+"04738","+46.516166","-068.886826","CROUSEVILLE","ME","AROOSTOOK","PO BOX ONLY"
+"04739","+46.516166","-068.886826","EAGLE LAKE","ME","AROOSTOOK","STANDARD"
+"04740","+46.611101","-067.855820","EASTON","ME","AROOSTOOK","STANDARD"
+"04741","+46.516166","-068.886826","ESTCOURT STATION","ME","AROOSTOOK","STANDARD"
+"04742","+46.746453","-067.841507","FORT FAIRFIELD","ME","AROOSTOOK","STANDARD"
+"04743","+47.056484","-068.255868","FORT KENT","ME","AROOSTOOK","STANDARD"
+"04744","+46.516166","-068.886826","FORT KENT MILLS","ME","AROOSTOOK","PO BOX ONLY"
+"04745","+47.295289","-068.391920","FRENCHVILLE","ME","AROOSTOOK","STANDARD"
+"04746","+47.004340","-067.998581","GRAND ISLE","ME","AROOSTOOK","STANDARD"
+"04747","+46.011345","-068.273154","ISLAND FALLS","ME","AROOSTOOK","STANDARD"
+"04750","+46.906749","-067.851979","LIMESTONE","ME","AROOSTOOK","STANDARD"
+"04751","+46.892918","-067.964300","LIMESTONE","ME","AROOSTOOK","UNIQUE"
+"04756","+46.934538","-068.109616","MADAWASKA","ME","AROOSTOOK","STANDARD"
+"04757","+47.007842","-068.182061","MAPLETON","ME","AROOSTOOK","STANDARD"
+"04758","+46.551571","-067.848170","MARS HILL","ME","AROOSTOOK","STANDARD"
+"04759","+46.516166","-068.886826","MASARDIS","ME","AROOSTOOK","STANDARD"
+"04760","+46.516166","-068.886826","MONTICELLO","ME","AROOSTOOK","STANDARD"
+"04761","+46.100442","-068.003376","NEW LIMERICK","ME","AROOSTOOK","STANDARD"
+"04762","+46.976619","-068.205546","NEW SWEDEN","ME","AROOSTOOK","STANDARD"
+"04763","+46.099980","-068.144870","OAKFIELD","ME","AROOSTOOK","STANDARD"
+"04764","+46.516166","-068.886826","OXBOW","ME","AROOSTOOK","STANDARD"
+"04765","+45.999084","-068.443112","PATTEN","ME","PENOBSCOT","STANDARD"
+"04766","+46.516166","-068.886826","PERHAM","ME","AROOSTOOK","STANDARD"
+"04768","+46.516166","-068.886826","PORTAGE","ME","AROOSTOOK","PO BOX ONLY"
+"04769","+46.715072","-068.012557","PRESQUE ISLE","ME","AROOSTOOK","STANDARD"
+"04770","+46.516166","-068.886826","QUIMBY","ME","AROOSTOOK","PO BOX ONLY"
+"04772","+47.263956","-068.335025","SAINT AGATHA","ME","AROOSTOOK","STANDARD"
+"04773","+46.516166","-068.886826","SAINT DAVID","ME","AROOSTOOK","STANDARD"
+"04774","+46.516166","-068.886826","SAINT FRANCIS","ME","AROOSTOOK","STANDARD"
+"04775","+46.516166","-068.886826","SHERIDAN","ME","AROOSTOOK","PO BOX ONLY"
+"04776","+46.516166","-068.886826","SHERMAN MILLS","ME","AROOSTOOK","STANDARD"
+"04777","+45.519867","-068.647416","SHERMAN STATION","ME","PENOBSCOT","STANDARD"
+"04779","+46.516166","-068.886826","SINCLAIR","ME","AROOSTOOK","STANDARD"
+"04780","+46.516166","-068.886826","SMYRNA MILLS","ME","AROOSTOOK","STANDARD"
+"04781","+46.516166","-068.886826","WALLAGRASS","ME","AROOSTOOK","STANDARD"
+"04782","+45.519867","-068.647416","STACYVILLE","ME","PENOBSCOT","PO BOX ONLY"
+"04783","+46.787807","-068.155212","STOCKHOLM","ME","AROOSTOOK","STANDARD"
+"04785","+46.986075","-068.042433","VAN BUREN","ME","AROOSTOOK","STANDARD"
+"04786","+46.793032","-068.105233","WASHBURN","ME","AROOSTOOK","STANDARD"
+"04787","+46.594523","-067.930172","WESTFIELD","ME","AROOSTOOK","STANDARD"
+"04788","+46.516166","-068.886826","WINTERVILLE","ME","AROOSTOOK","PO BOX ONLY"
+"04841","+44.128607","-069.068648","ROCKLAND","ME","KNOX","STANDARD"
+"04843","+44.126130","-069.029238","CAMDEN","ME","KNOX","STANDARD"
+"04846","+44.131005","-069.091111","GLEN COVE","ME","KNOX","PO BOX ONLY"
+"04847","+44.241072","-069.203015","HOPE","ME","KNOX","STANDARD"
+"04848","+44.309021","-068.900772","ISLESBORO","ME","WALDO","STANDARD"
+"04849","+44.324832","-068.998255","LINCOLNVILLE","ME","WALDO","STANDARD"
+"04850","+44.478694","-069.149559","LINCOLNVILLE CENTER","ME","WALDO","PO BOX ONLY"
+"04851","+44.032196","-069.148017","MATINICUS","ME","KNOX","PO BOX ONLY"
+"04852","+44.021333","-069.523263","MONHEGAN","ME","LINCOLN","PO BOX ONLY"
+"04853","+44.113472","-068.855722","NORTH HAVEN","ME","KNOX","STANDARD"
+"04854","+44.079510","-069.085574","OWLS HEAD","ME","KNOX","STANDARD"
+"04855","+44.032196","-069.148017","PORT CLYDE","ME","KNOX","PO BOX ONLY"
+"04856","+44.132144","-069.034160","ROCKPORT","ME","KNOX","STANDARD"
+"04857","+43.995024","-069.198524","SAINT GEORGE","ME","KNOX","STANDARD"
+"04858","+44.115186","-069.132883","SOUTH THOMASTON","ME","KNOX","STANDARD"
+"04859","+44.002248","-069.119550","SPRUCE HEAD","ME","KNOX","STANDARD"
+"04860","+43.963129","-069.213329","TENANTS HARBOR","ME","KNOX","STANDARD"
+"04861","+44.108131","-069.042704","THOMASTON","ME","KNOX","STANDARD"
+"04862","+44.231517","-069.219722","UNION","ME","KNOX","STANDARD"
+"04863","+44.085110","-068.841965","VINALHAVEN","ME","KNOX","STANDARD"
+"04864","+44.086333","-069.188163","WARREN","ME","KNOX","STANDARD"
+"04865","+44.192369","-069.121139","WEST ROCKPORT","ME","KNOX","PO BOX ONLY"
+"04901","+44.554321","-069.617809","WATERVILLE","ME","KENNEBEC","STANDARD"
+"04903","+44.549225","-069.713178","WATERVILLE","ME","KENNEBEC","STANDARD"
+"04910","+44.530366","-069.639976","ALBION","ME","KENNEBEC","STANDARD"
+"04911","+44.810620","-069.912885","ANSON","ME","SOMERSET","STANDARD"
+"04912","+44.922700","-069.676680","ATHENS","ME","SOMERSET","STANDARD"
+"04915","+44.404619","-069.040297","BELFAST","ME","WALDO","STANDARD"
+"04917","+44.480594","-069.832530","BELGRADE","ME","KENNEBEC","STANDARD"
+"04918","+44.414056","-069.751913","BELGRADE LAKES","ME","KENNEBEC","STANDARD"
+"04920","+45.575731","-069.909773","BINGHAM","ME","SOMERSET","STANDARD"
+"04921","+44.579387","-069.175448","BROOKS","ME","WALDO","STANDARD"
+"04922","+44.677388","-069.378829","BURNHAM","ME","WALDO","STANDARD"
+"04923","+45.036055","-069.438697","CAMBRIDGE","ME","SOMERSET","STANDARD"
+"04924","+44.743659","-069.585151","CANAAN","ME","SOMERSET","STANDARD"
+"04925","+45.575731","-069.909773","CARATUNK","ME","SOMERSET","STANDARD"
+"04926","+44.391167","-069.538257","CHINA VILLAGE","ME","KENNEBEC","PO BOX ONLY"
+"04927","+44.621084","-069.512609","CLINTON","ME","KENNEBEC","STANDARD"
+"04928","+44.944157","-069.228736","CORINNA","ME","PENOBSCOT","STANDARD"
+"04929","+44.761527","-069.322662","DETROIT","ME","SOMERSET","STANDARD"
+"04930","+44.964532","-069.203773","DEXTER","ME","PENOBSCOT","STANDARD"
+"04932","+44.681900","-069.121648","DIXMONT","ME","PENOBSCOT","STANDARD"
+"04933","+45.519867","-068.647416","EAST NEWPORT","ME","PENOBSCOT","PO BOX ONLY"
+"04935","+44.414056","-069.751913","EAST VASSALBORO","ME","KENNEBEC","PO BOX ONLY"
+"04936","+45.063384","-070.381639","EUSTIS","ME","FRANKLIN","STANDARD"
+"04937","+44.646261","-069.680158","FAIRFIELD","ME","SOMERSET","STANDARD"
+"04938","+44.650311","-070.129267","FARMINGTON","ME","FRANKLIN","STANDARD"
+"04939","+45.014913","-069.156965","GARLAND","ME","PENOBSCOT","STANDARD"
+"04940","+44.622563","-070.075178","FARMINGTON FALLS","ME","FRANKLIN","PO BOX ONLY"
+"04941","+44.488583","-069.339221","FREEDOM","ME","WALDO","STANDARD"
+"04942","+44.973047","-069.548148","HARMONY","ME","SOMERSET","STANDARD"
+"04943","+44.896404","-069.464092","HARTLAND","ME","SOMERSET","STANDARD"
+"04944","+44.684737","-069.642500","HINCKLEY","ME","SOMERSET","PO BOX ONLY"
+"04945","+44.883675","-069.452187","JACKMAN","ME","SOMERSET","STANDARD"
+"04947","+45.063384","-070.381639","KINGFIELD","ME","FRANKLIN","STANDARD"
+"04949","+44.371549","-069.155550","LIBERTY","ME","WALDO","STANDARD"
+"04950","+44.786404","-069.805662","MADISON","ME","SOMERSET","STANDARD"
+"04951","+44.478694","-069.149559","MONROE","ME","WALDO","STANDARD"
+"04952","+44.397850","-069.142182","MORRILL","ME","WALDO","STANDARD"
+"04953","+44.863406","-069.266827","NEWPORT","ME","PENOBSCOT","STANDARD"
+"04954","+45.575731","-069.909773","NEW PORTLAND","ME","SOMERSET","PO BOX ONLY"
+"04955","+44.603630","-070.010292","NEW SHARON","ME","FRANKLIN","STANDARD"
+"04956","+44.952578","-070.183554","NEW VINEYARD","ME","FRANKLIN","STANDARD"
+"04957","+44.707468","-069.818804","NORRIDGEWOCK","ME","SOMERSET","STANDARD"
+"04958","+44.801900","-069.946593","NORTH ANSON","ME","SOMERSET","STANDARD"
+"04961","+45.575731","-069.909773","NORTH NEW PORTLAND","ME","SOMERSET","STANDARD"
+"04962","+44.479288","-069.622006","NORTH VASSALBORO","ME","KENNEBEC","STANDARD"
+"04963","+44.557111","-069.826495","OAKLAND","ME","KENNEBEC","STANDARD"
+"04964","+45.063384","-070.381639","OQUOSSOC","ME","FRANKLIN","PO BOX ONLY"
+"04965","+44.802655","-069.537715","PALMYRA","ME","SOMERSET","STANDARD"
+"04966","+45.063384","-070.381639","PHILLIPS","ME","FRANKLIN","STANDARD"
+"04967","+44.760948","-069.387705","PITTSFIELD","ME","SOMERSET","STANDARD"
+"04969","+44.772503","-069.247539","PLYMOUTH","ME","PENOBSCOT","STANDARD"
+"04970","+44.985998","-070.660181","RANGELEY","ME","FRANKLIN","STANDARD"
+"04971","+44.931830","-069.403011","SAINT ALBANS","ME","SOMERSET","STANDARD"
+"04972","+44.478694","-069.149559","SANDY POINT","ME","WALDO","PO BOX ONLY"
+"04973","+44.357201","-069.215906","SEARSMONT","ME","WALDO","STANDARD"
+"04974","+44.489412","-068.933051","SEARSPORT","ME","WALDO","STANDARD"
+"04975","+44.624515","-069.586852","SHAWMUT","ME","SOMERSET","PO BOX ONLY"
+"04976","+44.769303","-069.593975","SKOWHEGAN","ME","SOMERSET","STANDARD"
+"04978","+44.621110","-069.770923","SMITHFIELD","ME","SOMERSET","STANDARD"
+"04979","+44.931415","-069.834764","SOLON","ME","SOMERSET","STANDARD"
+"04981","+44.501114","-068.891743","STOCKTON SPRINGS","ME","WALDO","STANDARD"
+"04982","+45.063384","-070.381639","STRATTON","ME","FRANKLIN","STANDARD"
+"04983","+44.814175","-070.187221","STRONG","ME","FRANKLIN","STANDARD"
+"04984","+44.670079","-070.196855","TEMPLE","ME","FRANKLIN","STANDARD"
+"04985","+45.575731","-069.909773","WEST FORKS","ME","SOMERSET","STANDARD"
+"04986","+44.513048","-069.183929","THORNDIKE","ME","WALDO","STANDARD"
+"04987","+44.478694","-069.149559","TROY","ME","WALDO","STANDARD"
+"04988","+44.601175","-069.357191","UNITY","ME","WALDO","STANDARD"
+"04989","+44.427757","-069.635908","VASSALBORO","ME","KENNEBEC","STANDARD"
+"04992","+44.662822","-070.153049","WEST FARMINGTON","ME","FRANKLIN","PO BOX ONLY"
+"05001","+43.591821","-072.463589","WHITE RIVER JUNCTION","VT","WINDSOR","STANDARD"
+"05009","+43.592039","-072.588407","WHITE RIVER JUNCTION","VT","WINDSOR","UNIQUE"
+"05030","+43.410672","-072.429777","ASCUTNEY","VT","WINDSOR","PO BOX ONLY"
+"05031","+43.657625","-072.545860","BARNARD","VT","WINDSOR","PO BOX ONLY"
+"05032","+43.758758","-072.688169","BETHEL","VT","WINDSOR","STANDARD"
+"05033","+44.004691","-072.158450","BRADFORD","VT","ORANGE","STANDARD"
+"05034","+43.592527","-072.621578","BRIDGEWATER","VT","WINDSOR","STANDARD"
+"05035","+43.599795","-072.675164","BRIDGEWATER CORNERS","VT","WINDSOR","STANDARD"
+"05036","+44.017782","-072.577365","BROOKFIELD","VT","ORANGE","STANDARD"
+"05037","+43.467179","-072.488285","BROWNSVILLE","VT","WINDSOR","STANDARD"
+"05038","+43.994212","-072.457153","CHELSEA","VT","ORANGE","STANDARD"
+"05039","+44.033236","-072.293631","CORINTH","VT","ORANGE","STANDARD"
+"05040","+44.077918","-072.210962","EAST CORINTH","VT","ORANGE","STANDARD"
+"05041","+43.995961","-072.411393","EAST RANDOLPH","VT","ORANGE","STANDARD"
+"05042","+44.359629","-072.086586","EAST RYEGATE","VT","CALEDONIA","STANDARD"
+"05043","+43.807282","-072.214693","EAST THETFORD","VT","ORANGE","STANDARD"
+"05045","+43.928681","-072.196635","FAIRLEE","VT","ORANGE","STANDARD"
+"05046","+44.281506","-072.207573","GROTON","VT","CALEDONIA","STANDARD"
+"05047","+43.672103","-072.355539","HARTFORD","VT","WINDSOR","PO BOX ONLY"
+"05048","+43.573379","-072.402698","HARTLAND","VT","WINDSOR","STANDARD"
+"05049","+43.592039","-072.588407","HARTLAND FOUR CORNERS","VT","WINDSOR","PO BOX ONLY"
+"05050","+44.462390","-072.135804","MC INDOE FALLS","VT","CALEDONIA","PO BOX ONLY"
+"05051","+44.068284","-072.118739","NEWBURY","VT","ORANGE","STANDARD"
+"05052","+43.591324","-072.349030","NORTH HARTLAND","VT","WINDSOR","STANDARD"
+"05053","+43.709919","-072.511882","NORTH POMFRET","VT","WINDSOR","STANDARD"
+"05054","+43.995961","-072.411393","NORTH THETFORD","VT","ORANGE","PO BOX ONLY"
+"05055","+43.717918","-072.361200","NORWICH","VT","WINDSOR","STANDARD"
+"05056","+43.526289","-072.724848","PLYMOUTH","VT","WINDSOR","STANDARD"
+"05058","+43.995961","-072.411393","POST MILLS","VT","ORANGE","STANDARD"
+"05059","+43.664059","-072.433116","QUECHEE","VT","WINDSOR","PO BOX ONLY"
+"05060","+43.985803","-072.694098","RANDOLPH","VT","ORANGE","STANDARD"
+"05061","+43.928552","-072.569113","RANDOLPH CENTER","VT","ORANGE","STANDARD"
+"05062","+43.475590","-072.572818","READING","VT","WINDSOR","STANDARD"
+"05065","+43.777365","-072.407132","SHARON","VT","WINDSOR","STANDARD"
+"05067","+43.697055","-072.508042","SOUTH POMFRET","VT","WINDSOR","STANDARD"
+"05068","+43.777096","-072.528249","SOUTH ROYALTON","VT","WINDSOR","STANDARD"
+"05069","+44.197790","-072.110362","SOUTH RYEGATE","VT","CALEDONIA","STANDARD"
+"05070","+43.844018","-072.378546","SOUTH STRAFFORD","VT","ORANGE","STANDARD"
+"05071","+43.565888","-072.534106","SOUTH WOODSTOCK","VT","WINDSOR","STANDARD"
+"05072","+43.892586","-072.369563","STRAFFORD","VT","ORANGE","STANDARD"
+"05073","+43.630897","-072.489080","TAFTSVILLE","VT","WINDSOR","STANDARD"
+"05074","+43.995961","-072.411393","THETFORD","VT","ORANGE","PO BOX ONLY"
+"05075","+43.854018","-072.254614","THETFORD CENTER","VT","ORANGE","STANDARD"
+"05076","+43.995961","-072.411393","EAST CORINTH","VT","ORANGE","STANDARD"
+"05077","+43.895465","-072.473372","TUNBRIDGE","VT","ORANGE","STANDARD"
+"05079","+43.952586","-072.311252","VERSHIRE","VT","ORANGE","STANDARD"
+"05081","+44.119395","-072.088869","WELLS RIVER","VT","ORANGE","STANDARD"
+"05083","+43.995961","-072.411393","WEST FAIRLEE","VT","ORANGE","STANDARD"
+"05084","+43.718535","-072.443862","WEST HARTFORD","VT","WINDSOR","STANDARD"
+"05085","+43.995961","-072.411393","WEST NEWBURY","VT","ORANGE","PO BOX ONLY"
+"05086","+44.115326","-072.317918","WEST TOPSHAM","VT","ORANGE","STANDARD"
+"05088","+43.673484","-072.311960","WILDER","VT","WINDSOR","PO BOX ONLY"
+"05089","+43.518100","-072.418059","WINDSOR","VT","WINDSOR","STANDARD"
+"05091","+43.631348","-072.512835","WOODSTOCK","VT","WINDSOR","STANDARD"
+"05101","+43.171185","-072.623106","BELLOWS FALLS","VT","WINDHAM","STANDARD"
+"05141","+42.994670","-072.720362","CAMBRIDGEPORT","VT","WINDHAM","STANDARD"
+"05142","+43.402135","-072.583854","CAVENDISH","VT","WINDSOR","STANDARD"
+"05143","+43.298315","-072.667167","CHESTER","VT","WINDSOR","STANDARD"
+"05144","+43.592039","-072.588407","CHESTER DEPOT","VT","WINDSOR","STANDARD"
+"05146","+43.179936","-072.605636","GRAFTON","VT","WINDHAM","STANDARD"
+"05148","+43.228101","-072.787995","LONDONDERRY","VT","WINDHAM","STANDARD"
+"05149","+43.376744","-072.706913","LUDLOW","VT","WINDSOR","STANDARD"
+"05150","+43.338030","-072.527652","NORTH SPRINGFIELD","VT","WINDSOR","STANDARD"
+"05151","+43.409654","-072.495851","PERKINSVILLE","VT","WINDSOR","STANDARD"
+"05152","+43.098930","-073.034944","PERU","VT","BENNINGTON","STANDARD"
+"05153","+43.439854","-072.620659","PROCTORSVILLE","VT","WINDSOR","STANDARD"
+"05154","+43.164738","-072.531940","SAXTONS RIVER","VT","WINDHAM","STANDARD"
+"05155","+43.169854","-072.851525","SOUTH LONDONDERRY","VT","WINDHAM","STANDARD"
+"05156","+43.409710","-072.586064","SPRINGFIELD","VT","WINDSOR","STANDARD"
+"05158","+43.082635","-072.474882","WESTMINSTER","VT","WINDHAM","STANDARD"
+"05159","+43.093972","-072.456492","WESTMINSTER STATION","VT","WINDHAM","PO BOX ONLY"
+"05161","+43.316142","-072.739715","WESTON","VT","WINDSOR","STANDARD"
+"05201","+42.934076","-073.105382","BENNINGTON","VT","BENNINGTON","STANDARD"
+"05250","+43.065719","-073.134727","ARLINGTON","VT","BENNINGTON","STANDARD"
+"05251","+43.261817","-073.139173","DORSET","VT","BENNINGTON","STANDARD"
+"05252","+43.069409","-073.165898","EAST ARLINGTON","VT","BENNINGTON","STANDARD"
+"05253","+43.182502","-073.065443","EAST DORSET","VT","BENNINGTON","STANDARD"
+"05254","+43.177204","-073.045787","MANCHESTER","VT","BENNINGTON","PO BOX ONLY"
+"05255","+43.169289","-073.047358","MANCHESTER CENTER","VT","BENNINGTON","STANDARD"
+"05257","+42.966471","-073.250529","NORTH BENNINGTON","VT","BENNINGTON","STANDARD"
+"05260","+42.829469","-073.262496","NORTH POWNAL","VT","BENNINGTON","STANDARD"
+"05261","+42.790682","-073.201254","POWNAL","VT","BENNINGTON","STANDARD"
+"05262","+42.979702","-073.192929","SHAFTSBURY","VT","BENNINGTON","STANDARD"
+"05301","+42.884281","-072.760753","BRATTLEBORO","VT","WINDHAM","STANDARD"
+"05302","+42.994670","-072.720362","BRATTLEBORO","VT","WINDHAM","STANDARD"
+"05303","+42.994670","-072.720362","BRATTLEBORO","VT","WINDHAM","STANDARD"
+"05304","+42.994670","-072.720362","BRATTLEBORO","VT","WINDHAM","STANDARD"
+"05340","+43.164090","-072.915140","BONDVILLE","VT","BENNINGTON","STANDARD"
+"05341","+42.968046","-072.812012","EAST DOVER","VT","WINDHAM","STANDARD"
+"05342","+42.795363","-072.817838","JACKSONVILLE","VT","WINDHAM","STANDARD"
+"05343","+43.012776","-072.767275","JAMAICA","VT","WINDHAM","STANDARD"
+"05344","+42.994670","-072.720362","MARLBORO","VT","WINDHAM","PO BOX ONLY"
+"05345","+43.013138","-072.678725","NEWFANE","VT","WINDHAM","STANDARD"
+"05346","+43.016096","-072.534025","PUTNEY","VT","WINDHAM","STANDARD"
+"05350","+42.785591","-072.971932","READSBORO","VT","BENNINGTON","STANDARD"
+"05351","+42.939071","-072.729230","SOUTH NEWFANE","VT","WINDHAM","STANDARD"
+"05352","+42.782616","-073.067501","STAMFORD","VT","BENNINGTON","STANDARD"
+"05353","+43.070341","-072.672991","TOWNSHEND","VT","WINDHAM","STANDARD"
+"05354","+42.773711","-072.520166","VERNON","VT","WINDHAM","STANDARD"
+"05355","+43.004760","-072.792004","WARDSBORO","VT","WINDHAM","STANDARD"
+"05356","+43.013041","-072.793787","WEST DOVER","VT","WINDHAM","STANDARD"
+"05357","+42.957233","-072.624080","WEST DUMMERSTON","VT","WINDHAM","PO BOX ONLY"
+"05358","+42.766519","-072.745723","WEST HALIFAX","VT","WINDHAM","STANDARD"
+"05359","+43.133864","-072.714573","WEST TOWNSHEND","VT","WINDHAM","STANDARD"
+"05360","+43.050937","-072.825636","WEST WARDSBORO","VT","WINDHAM","STANDARD"
+"05361","+42.783180","-072.867891","WHITINGHAM","VT","WINDHAM","STANDARD"
+"05362","+42.975027","-072.673566","WILLIAMSVILLE","VT","WINDHAM","STANDARD"
+"05363","+42.944039","-072.727518","WILMINGTON","VT","WINDHAM","STANDARD"
+"05401","+44.507404","-073.151384","BURLINGTON","VT","CHITTENDEN","STANDARD"
+"05402","+44.442117","-073.082525","BURLINGTON","VT","CHITTENDEN","STANDARD"
+"05403","+44.448119","-073.098238","SOUTH BURLINGTON","VT","CHITTENDEN","STANDARD"
+"05404","+44.498032","-073.182158","WINOOSKI","VT","CHITTENDEN","STANDARD"
+"05405","+44.442117","-073.082525","BURLINGTON","VT","CHITTENDEN","UNIQUE"
+"05406","+44.442117","-073.082525","BURLINGTON","VT","CHITTENDEN","STANDARD"
+"05407","+44.442117","-073.082525","SOUTH BURLINGTON","VT","CHITTENDEN","STANDARD"
+"05439","+44.495180","-073.165092","COLCHESTER","VT","CHITTENDEN","UNIQUE"
+"05440","+44.936060","-073.289065","ALBURG","VT","GRAND ISLE","STANDARD"
+"05441","+44.836967","-072.921690","BAKERSFIELD","VT","FRANKLIN","STANDARD"
+"05442","+44.724842","-072.701554","BELVIDERE CENTER","VT","LAMOILLE","STANDARD"
+"05443","+44.157814","-073.071813","BRISTOL","VT","ADDISON","STANDARD"
+"05444","+44.622180","-072.881162","CAMBRIDGE","VT","LAMOILLE","STANDARD"
+"05445","+44.316580","-073.226034","CHARLOTTE","VT","CHITTENDEN","STANDARD"
+"05446","+44.535557","-073.103897","COLCHESTER","VT","CHITTENDEN","STANDARD"
+"05447","+44.824855","-072.895849","EAST BERKSHIRE","VT","FRANKLIN","STANDARD"
+"05448","+44.741186","-072.882683","EAST FAIRFIELD","VT","FRANKLIN","STANDARD"
+"05449","+44.442117","-073.082525","COLCHESTER","VT","CHITTENDEN","STANDARD"
+"05450","+44.902044","-072.782425","ENOSBURG FALLS","VT","FRANKLIN","STANDARD"
+"05451","+44.508350","-073.050271","ESSEX","VT","CHITTENDEN","STANDARD"
+"05452","+44.485558","-073.025271","ESSEX JUNCTION","VT","CHITTENDEN","STANDARD"
+"05453","+44.442117","-073.082525","ESSEX JUNCTION","VT","CHITTENDEN","STANDARD"
+"05454","+44.733486","-072.953478","FAIRFAX","VT","FRANKLIN","STANDARD"
+"05455","+44.816159","-072.969743","FAIRFIELD","VT","FRANKLIN","STANDARD"
+"05456","+44.210886","-073.256629","FERRISBURG","VT","ADDISON","STANDARD"
+"05457","+44.960380","-072.913261","FRANKLIN","VT","FRANKLIN","STANDARD"
+"05458","+44.723391","-073.303193","GRAND ISLE","VT","GRAND ISLE","STANDARD"
+"05459","+44.962395","-073.033062","HIGHGATE CENTER","VT","FRANKLIN","STANDARD"
+"05460","+44.974765","-073.105205","HIGHGATE SPRINGS","VT","FRANKLIN","PO BOX ONLY"
+"05461","+44.455300","-073.067858","HINESBURG","VT","CHITTENDEN","STANDARD"
+"05462","+44.318091","-073.006184","HUNTINGTON","VT","CHITTENDEN","STANDARD"
+"05463","+44.878094","-073.338597","ISLE LA MOTTE","VT","GRAND ISLE","STANDARD"
+"05464","+44.638789","-072.821990","JEFFERSONVILLE","VT","LAMOILLE","STANDARD"
+"05465","+44.458996","-072.955175","JERICHO","VT","CHITTENDEN","STANDARD"
+"05466","+44.362504","-073.019801","JONESVILLE","VT","CHITTENDEN","PO BOX ONLY"
+"05468","+44.643418","-073.121685","MILTON","VT","CHITTENDEN","STANDARD"
+"05469","+44.240375","-073.134702","MONKTON","VT","ADDISON","PO BOX ONLY"
+"05470","+44.824855","-072.895849","MONTGOMERY","VT","FRANKLIN","PO BOX ONLY"
+"05471","+44.848241","-072.619812","MONTGOMERY CENTER","VT","FRANKLIN","STANDARD"
+"05472","+44.149509","-073.197156","NEW HAVEN","VT","ADDISON","STANDARD"
+"05473","+44.239233","-073.205939","NORTH FERRISBURG","VT","ADDISON","STANDARD"
+"05474","+44.835274","-073.277846","NORTH HERO","VT","GRAND ISLE","STANDARD"
+"05476","+44.952669","-072.654350","RICHFORD","VT","FRANKLIN","STANDARD"
+"05477","+44.387289","-072.953283","RICHMOND","VT","CHITTENDEN","STANDARD"
+"05478","+44.779982","-072.908985","SAINT ALBANS","VT","FRANKLIN","STANDARD"
+"05479","+44.824855","-072.895849","SAINT ALBANS","VT","FRANKLIN","UNIQUE"
+"05481","+44.824855","-072.895849","SAINT ALBANS BAY","VT","FRANKLIN","PO BOX ONLY"
+"05482","+44.424930","-073.114047","SHELBURNE","VT","CHITTENDEN","STANDARD"
+"05483","+44.897751","-072.961075","SHELDON","VT","FRANKLIN","STANDARD"
+"05485","+44.905573","-072.963154","SHELDON SPRINGS","VT","FRANKLIN","PO BOX ONLY"
+"05486","+44.738156","-073.306352","SOUTH HERO","VT","GRAND ISLE","STANDARD"
+"05487","+44.235203","-073.020860","STARKSBORO","VT","ADDISON","STANDARD"
+"05488","+44.902128","-072.948391","SWANTON","VT","FRANKLIN","STANDARD"
+"05489","+44.565148","-072.907209","UNDERHILL","VT","CHITTENDEN","STANDARD"
+"05490","+44.504656","-072.885253","UNDERHILL CENTER","VT","CHITTENDEN","PO BOX ONLY"
+"05491","+44.145691","-073.260487","VERGENNES","VT","ADDISON","STANDARD"
+"05492","+44.736083","-072.703199","WATERVILLE","VT","LAMOILLE","STANDARD"
+"05494","+44.569590","-073.025541","WESTFORD","VT","CHITTENDEN","STANDARD"
+"05495","+44.430096","-073.026735","WILLISTON","VT","CHITTENDEN","STANDARD"
+"05501","+42.647191","-071.184202","ANDOVER","MA","ESSEX","UNIQUE"
+"05544","+42.647191","-071.184202","ANDOVER","MA","ESSEX","UNIQUE"
+"05601","+44.199060","-072.559638","MONTPELIER","VT","WASHINGTON","STANDARD"
+"05602","+44.268290","-072.623619","MONTPELIER","VT","WASHINGTON","STANDARD"
+"05603","+44.156554","-072.655892","MONTPELIER","VT","WASHINGTON","UNIQUE"
+"05604","+44.259518","-072.585018","MONTPELIER","VT","WASHINGTON","UNIQUE"
+"05609","+44.259518","-072.585018","MONTPELIER","VT","WASHINGTON","UNIQUE"
+"05620","+44.259518","-072.585018","MONTPELIER","VT","WASHINGTON","UNIQUE"
+"05633","+44.259518","-072.585018","MONTPELIER","VT","WASHINGTON","UNIQUE"
+"05640","+44.174872","-072.502235","ADAMANT","VT","WASHINGTON","STANDARD"
+"05641","+44.208960","-072.607693","BARRE","VT","WASHINGTON","STANDARD"
+"05647","+44.266228","-072.530473","CABOT","VT","WASHINGTON","STANDARD"
+"05648","+44.259518","-072.585018","CALAIS","VT","WASHINGTON","STANDARD"
+"05649","+44.157636","-072.453261","EAST BARRE","VT","WASHINGTON","STANDARD"
+"05650","+44.407044","-072.498572","EAST CALAIS","VT","WASHINGTON","STANDARD"
+"05651","+44.279376","-072.496570","EAST MONTPELIER","VT","WASHINGTON","STANDARD"
+"05652","+44.718619","-072.578210","EDEN","VT","LAMOILLE","STANDARD"
+"05653","+44.701158","-072.479642","EDEN MILLS","VT","LAMOILLE","STANDARD"
+"05654","+44.155438","-072.484706","GRANITEVILLE","VT","WASHINGTON","STANDARD"
+"05655","+44.560808","-072.590031","HYDE PARK","VT","LAMOILLE","STANDARD"
+"05656","+44.642603","-072.735911","JOHNSON","VT","LAMOILLE","STANDARD"
+"05657","+44.599905","-072.647519","LAKE ELMORE","VT","LAMOILLE","STANDARD"
+"05658","+44.374874","-072.329902","MARSHFIELD","VT","WASHINGTON","STANDARD"
+"05660","+44.270817","-072.786431","MORETOWN","VT","WASHINGTON","STANDARD"
+"05661","+44.560179","-072.615346","MORRISVILLE","VT","LAMOILLE","STANDARD"
+"05662","+44.442001","-072.718759","MOSCOW","VT","LAMOILLE","PO BOX ONLY"
+"05663","+44.180906","-072.678854","NORTHFIELD","VT","WASHINGTON","STANDARD"
+"05664","+44.183536","-072.646591","NORTHFIELD FALLS","VT","WASHINGTON","PO BOX ONLY"
+"05665","+44.673070","-072.597057","NORTH HYDE PARK","VT","LAMOILLE","PO BOX ONLY"
+"05666","+44.259518","-072.585018","NORTH MONTPELIER","VT","WASHINGTON","STANDARD"
+"05667","+44.283708","-072.552243","PLAINFIELD","VT","WASHINGTON","STANDARD"
+"05669","+44.028005","-073.089655","ROXBURY","VT","ADDISON","STANDARD"
+"05670","+44.175744","-072.502470","SOUTH BARRE","VT","WASHINGTON","PO BOX ONLY"
+"05671","+44.259518","-072.585018","WATERBURY","VT","WASHINGTON","UNIQUE"
+"05672","+44.535179","-072.660043","STOWE","VT","LAMOILLE","STANDARD"
+"05673","+44.192186","-072.843868","WAITSFIELD","VT","WASHINGTON","STANDARD"
+"05674","+44.217175","-072.820401","WARREN","VT","WASHINGTON","STANDARD"
+"05675","+44.078238","-072.426322","WASHINGTON","VT","ORANGE","STANDARD"
+"05676","+44.259608","-072.781143","WATERBURY","VT","WASHINGTON","STANDARD"
+"05677","+44.389313","-072.708616","WATERBURY CENTER","VT","WASHINGTON","STANDARD"
+"05678","+44.155782","-072.465810","WEBSTERVILLE","VT","WASHINGTON","PO BOX ONLY"
+"05679","+44.103841","-072.526916","WILLIAMSTOWN","VT","ORANGE","STANDARD"
+"05680","+44.539539","-072.487589","WOLCOTT","VT","LAMOILLE","STANDARD"
+"05681","+44.259518","-072.585018","WOODBURY","VT","WASHINGTON","STANDARD"
+"05682","+44.343536","-072.575645","WORCESTER","VT","WASHINGTON","STANDARD"
+"05701","+43.630346","-072.935860","RUTLAND","VT","RUTLAND","STANDARD"
+"05702","+43.412792","-072.990632","RUTLAND","VT","RUTLAND","STANDARD"
+"05730","+43.420978","-072.828524","BELMONT","VT","RUTLAND","STANDARD"
+"05731","+43.687677","-073.291868","BENSON","VT","RUTLAND","STANDARD"
+"05732","+43.643723","-073.209356","BOMOSEEN","VT","RUTLAND","STANDARD"
+"05733","+43.655139","-073.121251","BRANDON","VT","RUTLAND","STANDARD"
+"05734","+43.982512","-073.331483","BRIDPORT","VT","ADDISON","STANDARD"
+"05735","+43.636856","-073.126638","CASTLETON","VT","RUTLAND","STANDARD"
+"05736","+43.594106","-073.008253","CENTER RUTLAND","VT","RUTLAND","STANDARD"
+"05737","+43.713218","-072.925199","CHITTENDEN","VT","RUTLAND","STANDARD"
+"05738","+43.526706","-072.869165","CUTTINGSVILLE","VT","RUTLAND","STANDARD"
+"05739","+43.347920","-073.027985","DANBY","VT","RUTLAND","STANDARD"
+"05740","+43.971530","-073.091416","EAST MIDDLEBURY","VT","ADDISON","PO BOX ONLY"
+"05741","+43.592039","-072.818121","EAST POULTNEY","VT","RUTLAND","STANDARD"
+"05742","+43.446092","-072.920870","EAST WALLINGFORD","VT","RUTLAND","STANDARD"
+"05743","+43.634258","-073.182585","FAIR HAVEN","VT","RUTLAND","STANDARD"
+"05744","+43.576783","-073.107352","FLORENCE","VT","RUTLAND","STANDARD"
+"05745","+43.592039","-072.818121","FOREST DALE","VT","RUTLAND","PO BOX ONLY"
+"05746","+43.592039","-072.588407","GAYSVILLE","VT","WINDSOR","PO BOX ONLY"
+"05747","+44.003200","-072.817108","GRANVILLE","VT","ADDISON","STANDARD"
+"05748","+43.907858","-072.890031","HANCOCK","VT","ADDISON","STANDARD"
+"05750","+43.599381","-073.251040","HYDEVILLE","VT","RUTLAND","PO BOX ONLY"
+"05751","+43.656951","-072.782713","KILLINGTON","VT","RUTLAND","STANDARD"
+"05753","+43.991942","-073.171578","MIDDLEBURY","VT","ADDISON","STANDARD"
+"05757","+43.478301","-073.060391","MIDDLETOWN SPRINGS","VT","RUTLAND","STANDARD"
+"05758","+43.444535","-072.802413","MOUNT HOLLY","VT","RUTLAND","STANDARD"
+"05759","+43.535739","-072.970114","NORTH CLARENDON","VT","RUTLAND","STANDARD"
+"05760","+43.863158","-073.242322","ORWELL","VT","ADDISON","STANDARD"
+"05761","+43.361439","-073.150683","PAWLET","VT","RUTLAND","STANDARD"
+"05762","+43.592039","-072.818121","PITTSFIELD","VT","RUTLAND","STANDARD"
+"05763","+43.721820","-072.999461","PITTSFORD","VT","RUTLAND","STANDARD"
+"05764","+43.525395","-073.112878","POULTNEY","VT","RUTLAND","STANDARD"
+"05765","+43.601975","-073.095890","PROCTOR","VT","RUTLAND","STANDARD"
+"05766","+43.979315","-073.010663","RIPTON","VT","ADDISON","STANDARD"
+"05767","+43.866832","-072.851495","ROCHESTER","VT","WINDSOR","STANDARD"
+"05768","+43.026984","-073.055156","RUPERT","VT","BENNINGTON","PO BOX ONLY"
+"05769","+43.920297","-073.122709","SALISBURY","VT","ADDISON","STANDARD"
+"05770","+43.912406","-073.279162","SHOREHAM","VT","ADDISON","STANDARD"
+"05772","+43.756978","-072.730177","STOCKBRIDGE","VT","WINDSOR","STANDARD"
+"05773","+43.477386","-073.066066","WALLINGFORD","VT","RUTLAND","STANDARD"
+"05774","+43.429363","-073.161826","WELLS","VT","RUTLAND","STANDARD"
+"05775","+43.360006","-073.224211","WEST PAWLET","VT","RUTLAND","STANDARD"
+"05776","+43.026984","-073.055156","WEST RUPERT","VT","BENNINGTON","STANDARD"
+"05777","+43.588163","-073.065323","WEST RUTLAND","VT","RUTLAND","STANDARD"
+"05778","+43.893982","-073.203001","WHITING","VT","ADDISON","STANDARD"
+"05819","+44.426455","-072.114155","SAINT JOHNSBURY","VT","CALEDONIA","STANDARD"
+"05820","+44.741679","-072.364639","ALBANY","VT","ORLEANS","STANDARD"
+"05821","+44.313675","-072.118790","BARNET","VT","CALEDONIA","STANDARD"
+"05822","+44.736630","-072.199084","BARTON","VT","ORLEANS","STANDARD"
+"05823","+45.005783","-072.138347","BEEBE PLAIN","VT","ORLEANS","PO BOX ONLY"
+"05824","+44.581613","-071.833956","CONCORD","VT","ESSEX","STANDARD"
+"05825","+44.775607","-072.226410","COVENTRY","VT","ORLEANS","PO BOX ONLY"
+"05826","+44.641663","-072.388928","CRAFTSBURY","VT","ORLEANS","STANDARD"
+"05827","+44.678786","-072.359440","CRAFTSBURY COMMON","VT","ORLEANS","STANDARD"
+"05828","+44.437306","-072.123508","DANVILLE","VT","CALEDONIA","STANDARD"
+"05829","+44.952347","-072.218616","DERBY","VT","ORLEANS","STANDARD"
+"05830","+44.970350","-072.036632","DERBY LINE","VT","ORLEANS","STANDARD"
+"05832","+44.587962","-071.910223","EAST BURKE","VT","CALEDONIA","STANDARD"
+"05833","+44.775607","-072.226410","EAST CHARLESTON","VT","ORLEANS","STANDARD"
+"05836","+44.496356","-072.173710","EAST HARDWICK","VT","CALEDONIA","STANDARD"
+"05837","+44.667396","-071.813465","EAST HAVEN","VT","ESSEX","STANDARD"
+"05838","+44.468494","-071.930077","EAST SAINT JOHNSBURY","VT","CALEDONIA","PO BOX ONLY"
+"05839","+44.679528","-072.221912","GLOVER","VT","ORLEANS","STANDARD"
+"05840","+44.680771","-071.719436","GRANBY","VT","ESSEX","PO BOX ONLY"
+"05841","+44.600325","-072.286556","GREENSBORO","VT","ORLEANS","STANDARD"
+"05842","+44.775607","-072.226410","GREENSBORO BEND","VT","ORLEANS","STANDARD"
+"05843","+44.516090","-072.309822","HARDWICK","VT","CALEDONIA","STANDARD"
+"05845","+44.783177","-072.301139","IRASBURG","VT","ORLEANS","STANDARD"
+"05846","+44.832535","-071.841125","ISLAND POND","VT","ESSEX","STANDARD"
+"05847","+44.788925","-072.439455","LOWELL","VT","ORLEANS","STANDARD"
+"05848","+44.382103","-071.919518","LOWER WATERFORD","VT","CALEDONIA","PO BOX ONLY"
+"05849","+44.497557","-071.950519","LYNDON","VT","CALEDONIA","PO BOX ONLY"
+"05850","+44.481915","-071.988258","LYNDON CENTER","VT","CALEDONIA","STANDARD"
+"05851","+44.535100","-072.056557","LYNDONVILLE","VT","CALEDONIA","STANDARD"
+"05853","+44.878704","-071.971424","MORGAN","VT","ORLEANS","STANDARD"
+"05855","+44.907921","-072.203948","NEWPORT","VT","ORLEANS","STANDARD"
+"05857","+44.927018","-072.299191","NEWPORT CENTER","VT","ORLEANS","STANDARD"
+"05858","+44.512087","-071.795986","NORTH CONCORD","VT","ESSEX","STANDARD"
+"05859","+44.937769","-072.433354","NORTH TROY","VT","ORLEANS","STANDARD"
+"05860","+44.823782","-072.102019","ORLEANS","VT","ORLEANS","STANDARD"
+"05861","+44.462390","-072.135804","PASSUMPSIC","VT","CALEDONIA","PO BOX ONLY"
+"05862","+44.462390","-072.135804","PEACHAM","VT","CALEDONIA","STANDARD"
+"05863","+44.503403","-071.972088","SAINT JOHNSBURY CENTER","VT","CALEDONIA","PO BOX ONLY"
+"05866","+44.639653","-072.132255","SHEFFIELD","VT","CALEDONIA","STANDARD"
+"05867","+44.664521","-072.042415","SUTTON","VT","CALEDONIA","STANDARD"
+"05868","+44.775607","-072.226410","TROY","VT","ORLEANS","STANDARD"
+"05871","+44.683041","-071.936817","WEST BURKE","VT","CALEDONIA","STANDARD"
+"05872","+44.849402","-072.031210","WEST CHARLESTON","VT","ORLEANS","STANDARD"
+"05873","+44.393366","-072.222424","WEST DANVILLE","VT","CALEDONIA","STANDARD"
+"05874","+44.869117","-072.450485","WESTFIELD","VT","ORLEANS","STANDARD"
+"05875","+44.710028","-072.258038","WEST GLOVER","VT","ORLEANS","STANDARD"
+"05901","+44.680771","-071.719436","AVERILL","VT","ESSEX","STANDARD"
+"05902","+44.680771","-071.719436","BEECHER FALLS","VT","ESSEX","STANDARD"
+"05903","+44.930787","-071.597809","CANAAN","VT","ESSEX","STANDARD"
+"05904","+44.680771","-071.719436","GILMAN","VT","ESSEX","STANDARD"
+"05905","+44.671187","-071.662213","GUILDHALL","VT","ESSEX","STANDARD"
+"05906","+44.680771","-071.719436","LUNENBURG","VT","ESSEX","STANDARD"
+"05907","+44.932643","-071.776359","NORTON","VT","ESSEX","STANDARD"
+"06001","+41.757944","-072.728272","AVON","CT","HARTFORD","STANDARD"
+"06002","+41.851961","-072.738939","BLOOMFIELD","CT","HARTFORD","STANDARD"
+"06006","+41.879637","-072.734271","WINDSOR","CT","HARTFORD","UNIQUE"
+"06010","+41.681198","-072.939577","BRISTOL","CT","HARTFORD","STANDARD"
+"06011","+41.791776","-072.718832","BRISTOL","CT","HARTFORD","STANDARD"
+"06013","+41.761773","-072.958260","BURLINGTON","CT","HARTFORD","STANDARD"
+"06016","+41.842097","-072.708388","BROAD BROOK","CT","HARTFORD","STANDARD"
+"06018","+42.001585","-073.295891","CANAAN","CT","LITCHFIELD","STANDARD"
+"06019","+41.842882","-072.899645","CANTON","CT","HARTFORD","STANDARD"
+"06020","+41.853921","-072.902811","CANTON CENTER","CT","HARTFORD","STANDARD"
+"06021","+42.005809","-073.118329","COLEBROOK","CT","LITCHFIELD","STANDARD"
+"06022","+41.851597","-072.918127","COLLINSVILLE","CT","HARTFORD","STANDARD"
+"06023","+41.613489","-072.720700","EAST BERLIN","CT","HARTFORD","STANDARD"
+"06024","+42.015806","-073.291299","EAST CANAAN","CT","LITCHFIELD","STANDARD"
+"06025","+41.688896","-072.534482","EAST GLASTONBURY","CT","HARTFORD","PO BOX ONLY"
+"06026","+41.939096","-072.740538","EAST GRANBY","CT","HARTFORD","STANDARD"
+"06027","+42.004978","-072.896907","EAST HARTLAND","CT","HARTFORD","STANDARD"
+"06028","+41.859248","-072.603033","EAST WINDSOR HILL","CT","HARTFORD","PO BOX ONLY"
+"06029","+41.849319","-072.411777","ELLINGTON","CT","TOLLAND","STANDARD"
+"06030","+41.791776","-072.718832","FARMINGTON","CT","HARTFORD","UNIQUE"
+"06031","+41.949717","-073.304403","FALLS VILLAGE","CT","LITCHFIELD","STANDARD"
+"06032","+41.726769","-072.829543","FARMINGTON","CT","HARTFORD","STANDARD"
+"06033","+41.703451","-072.539332","GLASTONBURY","CT","HARTFORD","STANDARD"
+"06034","+41.791776","-072.718832","FARMINGTON","CT","HARTFORD","STANDARD"
+"06035","+41.966062","-072.796407","GRANBY","CT","HARTFORD","STANDARD"
+"06037","+41.602948","-072.769991","BERLIN","CT","HARTFORD","STANDARD"
+"06039","+41.951917","-073.381380","LAKEVILLE","CT","LITCHFIELD","STANDARD"
+"06040","+41.776048","-072.523748","MANCHESTER","CT","HARTFORD","STANDARD"
+"06041","+41.794681","-072.564832","MANCHESTER","CT","HARTFORD","UNIQUE"
+"06043","+41.768648","-072.439278","BOLTON","CT","TOLLAND","STANDARD"
+"06045","+41.791776","-072.718832","MANCHESTER","CT","HARTFORD","STANDARD"
+"06049","+41.791776","-072.718832","MELROSE","CT","HARTFORD","PO BOX ONLY"
+"06050","+41.666049","-072.778391","NEW BRITAIN","CT","HARTFORD","STANDARD"
+"06051","+41.668449","-072.770441","NEW BRITAIN","CT","HARTFORD","STANDARD"
+"06052","+41.656748","-072.801892","NEW BRITAIN","CT","HARTFORD","STANDARD"
+"06053","+41.690249","-072.790991","NEW BRITAIN","CT","HARTFORD","STANDARD"
+"06057","+41.883102","-073.045918","NEW HARTFORD","CT","LITCHFIELD","STANDARD"
+"06058","+41.886811","-073.184674","NORFOLK","CT","LITCHFIELD","STANDARD"
+"06059","+41.899683","-072.890744","NORTH CANTON","CT","HARTFORD","STANDARD"
+"06060","+42.004694","-072.843205","NORTH GRANBY","CT","HARTFORD","STANDARD"
+"06061","+41.874382","-072.967958","PINE MEADOW","CT","LITCHFIELD","PO BOX ONLY"
+"06062","+41.672983","-072.859695","PLAINVILLE","CT","HARTFORD","STANDARD"
+"06063","+41.939370","-072.990647","BARKHAMSTED","CT","LITCHFIELD","STANDARD"
+"06064","+41.791776","-072.718832","POQUONOCK","CT","HARTFORD","PO BOX ONLY"
+"06065","+41.968597","-073.014467","RIVERTON","CT","LITCHFIELD","STANDARD"
+"06066","+41.837200","-072.454917","VERNON ROCKVILLE","CT","TOLLAND","STANDARD"
+"06067","+41.657249","-072.670887","ROCKY HILL","CT","HARTFORD","STANDARD"
+"06068","+42.005790","-073.399336","SALISBURY","CT","LITCHFIELD","STANDARD"
+"06069","+41.874681","-073.433903","SHARON","CT","LITCHFIELD","STANDARD"
+"06070","+41.868647","-072.819742","SIMSBURY","CT","HARTFORD","STANDARD"
+"06071","+41.919603","-072.433046","SOMERS","CT","TOLLAND","STANDARD"
+"06072","+41.976466","-072.490593","SOMERSVILLE","CT","TOLLAND","PO BOX ONLY"
+"06073","+41.657099","-072.572233","SOUTH GLASTONBURY","CT","HARTFORD","STANDARD"
+"06074","+41.834198","-072.564632","SOUTH WINDSOR","CT","HARTFORD","STANDARD"
+"06075","+41.811520","-072.308779","STAFFORD","CT","TOLLAND","PO BOX ONLY"
+"06076","+41.900495","-072.276410","STAFFORD SPRINGS","CT","TOLLAND","STANDARD"
+"06077","+41.991645","-072.257735","STAFFORDVILLE","CT","TOLLAND","PO BOX ONLY"
+"06078","+41.989646","-072.658135","SUFFIELD","CT","HARTFORD","STANDARD"
+"06079","+42.032012","-073.403763","TACONIC","CT","LITCHFIELD","PO BOX ONLY"
+"06080","+41.948597","-072.628802","SUFFIELD","CT","HARTFORD","UNIQUE"
+"06081","+41.905269","-072.767239","TARIFFVILLE","CT","HARTFORD","STANDARD"
+"06082","+41.984646","-072.557731","ENFIELD","CT","HARTFORD","STANDARD"
+"06083","+41.791776","-072.718832","ENFIELD","CT","HARTFORD","STANDARD"
+"06084","+41.882553","-072.361039","TOLLAND","CT","TOLLAND","STANDARD"
+"06085","+41.860009","-072.933467","UNIONVILLE","CT","HARTFORD","STANDARD"
+"06087","+41.757616","-072.884953","UNIONVILLE","CT","HARTFORD","UNIQUE"
+"06088","+41.903347","-072.592883","EAST WINDSOR","CT","HARTFORD","STANDARD"
+"06089","+41.889965","-072.704000","WEATOGUE","CT","HARTFORD","STANDARD"
+"06090","+41.955645","-072.861993","WEST GRANBY","CT","HARTFORD","STANDARD"
+"06091","+42.003447","-072.992109","WEST HARTLAND","CT","HARTFORD","STANDARD"
+"06092","+41.865597","-072.849854","WEST SIMSBURY","CT","HARTFORD","STANDARD"
+"06093","+42.005795","-072.727337","WEST SUFFIELD","CT","HARTFORD","STANDARD"
+"06094","+41.896321","-073.146312","WINCHESTER CENTER","CT","LITCHFIELD","STANDARD"
+"06095","+41.909988","-072.804935","WINDSOR","CT","HARTFORD","STANDARD"
+"06096","+41.933846","-072.660245","WINDSOR LOCKS","CT","HARTFORD","STANDARD"
+"06098","+41.925671","-073.058157","WINSTED","CT","LITCHFIELD","STANDARD"
+"06101","+41.780070","-072.677099","HARTFORD","CT","HARTFORD","STANDARD"
+"06102","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06103","+41.766349","-072.674636","HARTFORD","CT","HARTFORD","STANDARD"
+"06104","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06105","+41.774499","-072.699537","HARTFORD","CT","HARTFORD","STANDARD"
+"06106","+41.745049","-072.687787","HARTFORD","CT","HARTFORD","STANDARD"
+"06107","+41.753250","-072.758040","W HARTFORD","CT","HARTFORD","STANDARD"
+"06108","+41.779799","-072.621365","EAST HARTFORD","CT","HARTFORD","STANDARD"
+"06109","+41.698899","-072.667887","WETHERSFIELD","CT","HARTFORD","STANDARD"
+"06110","+41.734250","-072.738139","W HARTFORD","CT","HARTFORD","STANDARD"
+"06111","+41.685985","-072.729646","NEWINGTON","CT","HARTFORD","STANDARD"
+"06112","+41.791337","-072.694337","HARTFORD","CT","HARTFORD","STANDARD"
+"06114","+41.747399","-072.672237","HARTFORD","CT","HARTFORD","STANDARD"
+"06115","+41.758849","-072.679387","HARTFORD","CT","HARTFORD","STANDARD"
+"06117","+41.788688","-072.755739","W HARTFORD","CT","HARTFORD","STANDARD"
+"06118","+41.748999","-072.609884","EAST HARTFORD","CT","HARTFORD","STANDARD"
+"06119","+41.764349","-072.726388","W HARTFORD","CT","HARTFORD","STANDARD"
+"06120","+41.785449","-072.669936","HARTFORD","CT","HARTFORD","STANDARD"
+"06123","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06126","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06127","+41.791776","-072.718832","W HARTFORD","CT","HARTFORD","STANDARD"
+"06128","+41.791776","-072.718832","EAST HARTFORD","CT","HARTFORD","STANDARD"
+"06129","+41.791776","-072.718832","WETHERSFIELD","CT","HARTFORD","STANDARD"
+"06131","+41.791776","-072.718832","NEWINGTON","CT","HARTFORD","STANDARD"
+"06132","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06133","+41.791776","-072.718832","W HARTFORD","CT","HARTFORD","STANDARD"
+"06134","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06137","+41.791776","-072.718832","W HARTFORD","CT","HARTFORD","STANDARD"
+"06138","+41.791776","-072.718832","EAST HARTFORD","CT","HARTFORD","STANDARD"
+"06140","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06141","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06142","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06143","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06144","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06145","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06146","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06147","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06150","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","UNIQUE"
+"06151","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","UNIQUE"
+"06152","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","STANDARD"
+"06153","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","UNIQUE"
+"06154","+41.771499","-072.686687","HARTFORD","CT","HARTFORD","UNIQUE"
+"06155","+41.769280","-072.686465","HARTFORD","CT","HARTFORD","UNIQUE"
+"06156","+41.767949","-072.690687","HARTFORD","CT","HARTFORD","UNIQUE"
+"06160","+41.766499","-072.693337","HARTFORD","CT","HARTFORD","UNIQUE"
+"06161","+41.766049","-072.671837","HARTFORD","CT","HARTFORD","UNIQUE"
+"06167","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","UNIQUE"
+"06176","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","UNIQUE"
+"06180","+41.791776","-072.718832","HARTFORD","CT","HARTFORD","UNIQUE"
+"06183","+41.763849","-072.673037","HARTFORD","CT","HARTFORD","UNIQUE"
+"06199","+41.927447","-072.680386","HARTFORD","CT","HARTFORD","STANDARD"
+"06226","+41.845504","-072.091889","WILLIMANTIC","CT","WINDHAM","STANDARD"
+"06230","+41.847302","-072.025280","ABINGTON","CT","WINDHAM","PO BOX ONLY"
+"06231","+41.626377","-072.372800","AMSTON","CT","TOLLAND","STANDARD"
+"06232","+41.731847","-072.374634","ANDOVER","CT","TOLLAND","STANDARD"
+"06233","+41.831565","-072.020137","BALLOUVILLE","CT","WINDHAM","PO BOX ONLY"
+"06234","+41.847758","-071.983412","BROOKLYN","CT","WINDHAM","STANDARD"
+"06235","+41.802940","-072.126036","CHAPLIN","CT","WINDHAM","STANDARD"
+"06237","+41.696124","-072.300043","COLUMBIA","CT","TOLLAND","STANDARD"
+"06238","+41.778623","-072.323642","COVENTRY","CT","TOLLAND","STANDARD"
+"06239","+41.864901","-071.874354","DANIELSON","CT","WINDHAM","STANDARD"
+"06241","+41.854975","-071.858826","DAYVILLE","CT","WINDHAM","STANDARD"
+"06242","+41.927524","-072.041112","EASTFORD","CT","WINDHAM","STANDARD"
+"06243","+41.844885","-071.818941","EAST KILLINGLY","CT","WINDHAM","STANDARD"
+"06244","+41.984327","-071.981045","EAST WOODSTOCK","CT","WINDHAM","PO BOX ONLY"
+"06245","+42.019776","-071.941669","FABYAN","CT","WINDHAM","PO BOX ONLY"
+"06246","+41.971116","-071.891732","GROSVENOR DALE","CT","WINDHAM","PO BOX ONLY"
+"06247","+41.788756","-071.975819","HAMPTON","CT","WINDHAM","STANDARD"
+"06248","+41.689249","-072.398627","HEBRON","CT","TOLLAND","STANDARD"
+"06249","+41.628008","-072.245422","LEBANON","CT","NEW LONDON","STANDARD"
+"06250","+41.781550","-072.225540","MANSFIELD CENTER","CT","TOLLAND","STANDARD"
+"06251","+41.799326","-072.306526","MANSFIELD DEPOT","CT","TOLLAND","PO BOX ONLY"
+"06254","+41.609895","-072.150305","NORTH FRANKLIN","CT","NEW LONDON","STANDARD"
+"06255","+41.978392","-071.899716","NORTH GROSVENORDALE","CT","WINDHAM","STANDARD"
+"06256","+41.778469","-072.040003","NORTH WINDHAM","CT","WINDHAM","STANDARD"
+"06258","+41.889048","-071.968232","POMFRET","CT","WINDHAM","PO BOX ONLY"
+"06259","+41.863133","-072.002590","POMFRET CENTER","CT","WINDHAM","STANDARD"
+"06260","+41.862904","-071.887712","PUTNAM","CT","WINDHAM","STANDARD"
+"06262","+42.021536","-071.947077","QUINEBAUG","CT","WINDHAM","STANDARD"
+"06263","+41.839051","-071.906340","ROGERS","CT","WINDHAM","PO BOX ONLY"
+"06264","+41.695803","-072.087045","SCOTLAND","CT","WINDHAM","STANDARD"
+"06265","+41.811520","-072.308779","SOUTH WILLINGTON","CT","TOLLAND","PO BOX ONLY"
+"06266","+41.674079","-072.172298","SOUTH WINDHAM","CT","WINDHAM","STANDARD"
+"06267","+41.943902","-071.945253","SOUTH WOODSTOCK","CT","WINDHAM","PO BOX ONLY"
+"06268","+41.787937","-072.252480","STORRS MANSFIELD","CT","TOLLAND","STANDARD"
+"06269","+41.808007","-072.250963","STORRS MANSFIELD","CT","TOLLAND","UNIQUE"
+"06277","+41.975796","-071.862047","THOMPSON","CT","WINDHAM","STANDARD"
+"06278","+41.889043","-072.147561","ASHFORD","CT","WINDHAM","STANDARD"
+"06279","+41.896623","-072.262236","WILLINGTON","CT","TOLLAND","STANDARD"
+"06280","+41.693914","-072.137843","WINDHAM","CT","WINDHAM","STANDARD"
+"06281","+41.961991","-072.014108","WOODSTOCK","CT","WINDHAM","STANDARD"
+"06282","+41.952846","-072.057134","WOODSTOCK VALLEY","CT","WINDHAM","STANDARD"
+"06320","+41.413998","-072.109070","NEW LONDON","CT","NEW LONDON","STANDARD"
+"06330","+41.501708","-072.044306","BALTIC","CT","NEW LONDON","STANDARD"
+"06331","+41.696753","-071.998277","CANTERBURY","CT","WINDHAM","STANDARD"
+"06332","+41.725694","-071.909019","CENTRAL VILLAGE","CT","WINDHAM","PO BOX ONLY"
+"06333","+41.378842","-072.236794","EAST LYME","CT","NEW LONDON","STANDARD"
+"06334","+41.544598","-072.177023","BOZRAH","CT","NEW LONDON","STANDARD"
+"06335","+41.523377","-072.021165","GALES FERRY","CT","NEW LONDON","STANDARD"
+"06336","+41.579548","-072.196273","GILMAN","CT","NEW LONDON","STANDARD"
+"06337","+41.559873","-071.889199","GLASGO","CT","NEW LONDON","PO BOX ONLY"
+"06339","+41.492843","-071.965554","LEDYARD","CT","NEW LONDON","STANDARD"
+"06340","+41.355405","-072.038268","GROTON","CT","NEW LONDON","STANDARD"
+"06349","+41.399730","-072.090357","GROTON","CT","NEW LONDON","STANDARD"
+"06350","+41.644546","-072.067690","HANOVER","CT","NEW LONDON","PO BOX ONLY"
+"06351","+41.599562","-071.982619","JEWETT CITY","CT","NEW LONDON","STANDARD"
+"06353","+41.452548","-072.137471","MONTVILLE","CT","NEW LONDON","STANDARD"
+"06354","+41.704931","-071.849772","MOOSUP","CT","WINDHAM","STANDARD"
+"06355","+41.485188","-072.000748","MYSTIC","CT","NEW LONDON","STANDARD"
+"06357","+41.323447","-072.215623","NIANTIC","CT","NEW LONDON","STANDARD"
+"06359","+41.466851","-071.880694","NORTH STONINGTON","CT","NEW LONDON","STANDARD"
+"06360","+41.499398","-071.994757","NORWICH","CT","NEW LONDON","STANDARD"
+"06365","+41.522369","-071.993427","PRESTON","CT","NEW LONDON","STANDARD"
+"06370","+41.512172","-072.102302","OAKDALE","CT","NEW LONDON","STANDARD"
+"06371","+41.409397","-072.147665","OLD LYME","CT","NEW LONDON","STANDARD"
+"06372","+41.388216","-071.949548","OLD MYSTIC","CT","NEW LONDON","PO BOX ONLY"
+"06373","+41.678546","-071.817759","ONECO","CT","WINDHAM","PO BOX ONLY"
+"06374","+41.688121","-071.884113","PLAINFIELD","CT","WINDHAM","STANDARD"
+"06375","+41.401066","-072.140022","QUAKER HILL","CT","NEW LONDON","STANDARD"
+"06376","+41.296668","-072.263296","SOUTH LYME","CT","NEW LONDON","PO BOX ONLY"
+"06377","+41.719948","-071.823184","STERLING","CT","WINDHAM","STANDARD"
+"06378","+41.378598","-071.917915","STONINGTON","CT","NEW LONDON","STANDARD"
+"06379","+41.455191","-071.895547","PAWCATUCK","CT","NEW LONDON","STANDARD"
+"06380","+41.563998","-072.055220","TAFTVILLE","CT","NEW LONDON","STANDARD"
+"06382","+41.424507","-072.069578","UNCASVILLE","CT","NEW LONDON","STANDARD"
+"06383","+41.601648","-072.040370","VERSAILLES","CT","NEW LONDON","PO BOX ONLY"
+"06384","+41.576894","-071.866587","VOLUNTOWN","CT","NEW LONDON","STANDARD"
+"06385","+41.456698","-072.126498","WATERFORD","CT","NEW LONDON","STANDARD"
+"06386","+41.464758","-072.127301","WATERFORD","CT","NEW LONDON","UNIQUE"
+"06387","+41.744527","-071.913339","WAUREGAN","CT","WINDHAM","PO BOX ONLY"
+"06388","+41.344098","-071.976467","WEST MYSTIC","CT","NEW LONDON","STANDARD"
+"06389","+41.559648","-072.122672","YANTIC","CT","NEW LONDON","PO BOX ONLY"
+"06390","+40.992288","-072.723496","FISHERS ISLAND","NY","SUFFOLK","PO BOX ONLY"
+"06401","+41.342514","-073.070301","ANSONIA","CT","NEW HAVEN","STANDARD"
+"06403","+41.435134","-073.058835","BEACON FALLS","CT","NEW HAVEN","STANDARD"
+"06404","+41.165097","-073.129186","BOTSFORD","CT","FAIRFIELD","PO BOX ONLY"
+"06405","+41.284746","-072.796292","BRANFORD","CT","NEW HAVEN","STANDARD"
+"06408","+41.365709","-072.927507","CHESHIRE","CT","NEW HAVEN","UNIQUE"
+"06409","+41.349098","-072.413380","CENTERBROOK","CT","MIDDLESEX","STANDARD"
+"06410","+41.460167","-072.972220","CHESHIRE","CT","NEW HAVEN","STANDARD"
+"06411","+41.550097","-072.922235","CHESHIRE","CT","NEW HAVEN","UNIQUE"
+"06412","+41.390270","-072.461805","CHESTER","CT","MIDDLESEX","STANDARD"
+"06413","+41.298201","-072.532934","CLINTON","CT","MIDDLESEX","STANDARD"
+"06414","+41.566668","-072.558055","COBALT","CT","MIDDLESEX","PO BOX ONLY"
+"06415","+41.546443","-072.338832","COLCHESTER","CT","NEW LONDON","STANDARD"
+"06416","+41.608529","-072.667807","CROMWELL","CT","MIDDLESEX","STANDARD"
+"06417","+41.368124","-072.452284","DEEP RIVER","CT","MIDDLESEX","STANDARD"
+"06418","+41.327246","-073.084252","DERBY","CT","NEW HAVEN","STANDARD"
+"06419","+41.417962","-072.493446","KILLINGWORTH","CT","MIDDLESEX","STANDARD"
+"06420","+41.527441","-072.269141","SALEM","CT","NEW LONDON","STANDARD"
+"06422","+41.462468","-072.682297","DURHAM","CT","MIDDLESEX","STANDARD"
+"06423","+41.475478","-072.389729","EAST HADDAM","CT","MIDDLESEX","STANDARD"
+"06424","+41.559841","-072.494927","EAST HAMPTON","CT","MIDDLESEX","STANDARD"
+"06426","+41.448179","-072.504260","ESSEX","CT","MIDDLESEX","STANDARD"
+"06430","+41.175173","-073.282408","FAIRFIELD","CT","FAIRFIELD","STANDARD"
+"06431","+41.219093","-073.252696","FAIRFIELD","CT","FAIRFIELD","UNIQUE"
+"06432","+41.196046","-073.252802","FAIRFIELD","CT","FAIRFIELD","STANDARD"
+"06436","+41.308873","-073.363661","GREENS FARMS","CT","FAIRFIELD","PO BOX ONLY"
+"06437","+41.338847","-072.690089","GUILFORD","CT","NEW HAVEN","STANDARD"
+"06438","+41.471457","-072.511376","HADDAM","CT","MIDDLESEX","STANDARD"
+"06439","+41.421198","-072.414095","HADLYME","CT","NEW LONDON","PO BOX ONLY"
+"06440","+41.308873","-073.363661","HAWLEYVILLE","CT","FAIRFIELD","PO BOX ONLY"
+"06441","+41.462718","-072.578971","HIGGANUM","CT","MIDDLESEX","STANDARD"
+"06442","+41.344076","-072.444369","IVORYTON","CT","MIDDLESEX","STANDARD"
+"06443","+41.350397","-072.788392","MADISON","CT","NEW HAVEN","STANDARD"
+"06444","+41.791776","-072.718832","MARION","CT","HARTFORD","PO BOX ONLY"
+"06447","+41.636949","-072.463179","MARLBOROUGH","CT","HARTFORD","STANDARD"
+"06450","+41.536498","-072.801901","MERIDEN","CT","NEW HAVEN","STANDARD"
+"06451","+41.540110","-072.818880","MERIDEN","CT","NEW HAVEN","STANDARD"
+"06454","+41.365709","-072.927507","MERIDEN","CT","NEW HAVEN","UNIQUE"
+"06455","+41.515346","-072.712988","MIDDLEFIELD","CT","MIDDLESEX","STANDARD"
+"06456","+41.538017","-072.525208","MIDDLE HADDAM","CT","MIDDLESEX","PO BOX ONLY"
+"06457","+41.550139","-072.655357","MIDDLETOWN","CT","MIDDLESEX","STANDARD"
+"06459","+41.556463","-072.658179","MIDDLETOWN","CT","MIDDLESEX","UNIQUE"
+"06460","+41.343773","-072.951273","MILFORD","CT","NEW HAVEN","STANDARD"
+"06467","+41.565697","-072.903746","MILLDALE","CT","HARTFORD","PO BOX ONLY"
+"06468","+41.341845","-073.236918","MONROE","CT","FAIRFIELD","STANDARD"
+"06469","+41.508904","-072.440086","MOODUS","CT","MIDDLESEX","STANDARD"
+"06470","+41.396295","-073.310561","NEWTOWN","CT","FAIRFIELD","STANDARD"
+"06471","+41.332347","-072.780892","NORTH BRANFORD","CT","NEW HAVEN","STANDARD"
+"06472","+41.379797","-072.772991","NORTHFORD","CT","NEW HAVEN","STANDARD"
+"06473","+41.384381","-072.862644","NORTH HAVEN","CT","NEW HAVEN","STANDARD"
+"06474","+41.464758","-072.127301","NORTH WESTCHESTER","CT","NEW LONDON","PO BOX ONLY"
+"06475","+41.300448","-072.389129","OLD SAYBROOK","CT","MIDDLESEX","STANDARD"
+"06477","+41.279896","-073.031018","ORANGE","CT","NEW HAVEN","STANDARD"
+"06478","+41.432583","-073.138379","OXFORD","CT","NEW HAVEN","STANDARD"
+"06479","+41.577845","-072.902496","PLANTSVILLE","CT","HARTFORD","STANDARD"
+"06480","+41.598339","-072.601307","PORTLAND","CT","MIDDLESEX","STANDARD"
+"06481","+41.542105","-072.666583","ROCKFALL","CT","MIDDLESEX","STANDARD"
+"06482","+41.408137","-073.249671","SANDY HOOK","CT","FAIRFIELD","STANDARD"
+"06483","+41.417646","-073.102078","SEYMOUR","CT","NEW HAVEN","STANDARD"
+"06484","+41.314347","-073.137143","SHELTON","CT","FAIRFIELD","STANDARD"
+"06487","+41.365709","-072.927507","SOUTH BRITAIN","CT","NEW HAVEN","PO BOX ONLY"
+"06488","+41.470921","-073.240839","SOUTHBURY","CT","NEW HAVEN","STANDARD"
+"06489","+41.604786","-072.871945","SOUTHINGTON","CT","HARTFORD","STANDARD"
+"06490","+41.143396","-073.289859","SOUTHPORT","CT","FAIRFIELD","STANDARD"
+"06491","+41.386646","-073.187207","STEVENSON","CT","FAIRFIELD","PO BOX ONLY"
+"06492","+41.456205","-072.811047","WALLINGFORD","CT","NEW HAVEN","STANDARD"
+"06493","+41.365709","-072.927507","WALLINGFORD","CT","NEW HAVEN","UNIQUE"
+"06494","+41.365709","-072.927507","WALLINGFORD","CT","NEW HAVEN","UNIQUE"
+"06495","+41.365709","-072.927507","WALLINGFORD","CT","NEW HAVEN","UNIQUE"
+"06497","+41.207146","-073.130503","STRATFORD","CT","FAIRFIELD","STANDARD"
+"06498","+41.307899","-072.463381","WESTBROOK","CT","MIDDLESEX","STANDARD"
+"06501","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06502","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06503","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06504","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06505","+41.305721","-072.779901","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06506","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06507","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06508","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06509","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06510","+41.309797","-072.922296","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06511","+41.310547","-072.926046","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06512","+41.290997","-072.865894","EAST HAVEN","CT","NEW HAVEN","STANDARD"
+"06513","+41.307197","-072.865365","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06514","+41.372723","-072.938747","HAMDEN","CT","NEW HAVEN","STANDARD"
+"06515","+41.328697","-072.964247","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06516","+41.272452","-072.940335","WEST HAVEN","CT","NEW HAVEN","STANDARD"
+"06517","+41.362197","-072.911396","HAMDEN","CT","NEW HAVEN","STANDARD"
+"06518","+41.416747","-072.906096","HAMDEN","CT","NEW HAVEN","STANDARD"
+"06519","+41.296897","-072.938596","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06520","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06521","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06524","+41.428088","-072.996191","BETHANY","CT","NEW HAVEN","STANDARD"
+"06525","+41.353296","-073.013981","WOODBRIDGE","CT","NEW HAVEN","STANDARD"
+"06530","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06531","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06532","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06533","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06534","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06535","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06536","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","STANDARD"
+"06537","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","UNIQUE"
+"06538","+41.365709","-072.927507","NEW HAVEN","CT","NEW HAVEN","UNIQUE"
+"06540","+41.299647","-072.918846","NEW HAVEN","CT","NEW HAVEN","UNIQUE"
+"06601","+41.308873","-073.363661","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06602","+41.179846","-073.189006","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06604","+41.192746","-073.213907","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06605","+41.162573","-073.216557","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06606","+41.208796","-073.211807","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06607","+41.181596","-073.165604","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06608","+41.188199","-073.180005","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06610","+41.219847","-073.163955","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06611","+41.259996","-073.206957","TRUMBULL","CT","FAIRFIELD","STANDARD"
+"06612","+41.273016","-073.297721","EASTON","CT","FAIRFIELD","STANDARD"
+"06614","+41.216006","-073.130353","STRATFORD","CT","FAIRFIELD","STANDARD"
+"06615","+41.177046","-073.133574","STRATFORD","CT","FAIRFIELD","STANDARD"
+"06650","+41.308873","-073.363661","BRIDGEPORT","CT","FAIRFIELD","STANDARD"
+"06673","+41.308873","-073.363661","BRIDGEPORT","CT","FAIRFIELD","UNIQUE"
+"06699","+41.308873","-073.363661","BRIDGEPORT","CT","FAIRFIELD","UNIQUE"
+"06701","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","UNIQUE"
+"06702","+41.540696","-073.071124","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06703","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06704","+41.581797","-073.034451","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06705","+41.552893","-072.992749","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06706","+41.535346","-073.026951","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06708","+41.551496","-073.064152","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06710","+41.571496","-073.044035","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06712","+41.499097","-072.975694","PROSPECT","CT","NEW HAVEN","STANDARD"
+"06716","+41.598347","-072.980578","WOLCOTT","CT","NEW HAVEN","STANDARD"
+"06720","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06721","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06722","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06723","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06724","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06725","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06726","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","STANDARD"
+"06749","+41.365709","-072.927507","WATERBURY","CT","NEW HAVEN","UNIQUE"
+"06750","+41.714352","-073.251598","BANTAM","CT","LITCHFIELD","STANDARD"
+"06751","+41.640900","-073.209685","BETHLEHEM","CT","LITCHFIELD","STANDARD"
+"06752","+41.520312","-073.363875","BRIDGEWATER","CT","LITCHFIELD","STANDARD"
+"06753","+41.828067","-073.332345","CORNWALL","CT","LITCHFIELD","PO BOX ONLY"
+"06754","+41.744373","-073.301922","CORNWALL BRIDGE","CT","LITCHFIELD","STANDARD"
+"06755","+41.634686","-073.472048","GAYLORDSVILLE","CT","LITCHFIELD","STANDARD"
+"06756","+41.794278","-073.239023","GOSHEN","CT","LITCHFIELD","STANDARD"
+"06757","+41.774725","-073.401908","KENT","CT","LITCHFIELD","STANDARD"
+"06758","+41.739889","-073.222981","LAKESIDE","CT","LITCHFIELD","STANDARD"
+"06759","+41.791598","-073.229787","LITCHFIELD","CT","LITCHFIELD","STANDARD"
+"06762","+41.528274","-073.116458","MIDDLEBURY","CT","NEW HAVEN","STANDARD"
+"06763","+41.689616","-073.212587","MORRIS","CT","LITCHFIELD","STANDARD"
+"06770","+41.491016","-073.052965","NAUGATUCK","CT","NEW HAVEN","STANDARD"
+"06776","+41.658619","-073.366017","NEW MILFORD","CT","LITCHFIELD","STANDARD"
+"06777","+41.690297","-073.310346","NEW PRESTON MARBLE DALE","CT","LITCHFIELD","STANDARD"
+"06778","+41.707722","-073.108997","NORTHFIELD","CT","LITCHFIELD","STANDARD"
+"06779","+41.604052","-073.216887","OAKVILLE","CT","LITCHFIELD","STANDARD"
+"06781","+41.669898","-072.991450","PEQUABUCK","CT","LITCHFIELD","PO BOX ONLY"
+"06782","+41.658730","-073.044364","PLYMOUTH","CT","LITCHFIELD","STANDARD"
+"06783","+41.578971","-073.298344","ROXBURY","CT","LITCHFIELD","STANDARD"
+"06784","+41.525631","-073.490891","SHERMAN","CT","FAIRFIELD","STANDARD"
+"06785","+41.682439","-073.305256","SOUTH KENT","CT","LITCHFIELD","STANDARD"
+"06786","+41.663530","-073.022449","TERRYVILLE","CT","LITCHFIELD","STANDARD"
+"06787","+41.658721","-073.098657","THOMASTON","CT","LITCHFIELD","STANDARD"
+"06790","+41.874840","-073.126763","TORRINGTON","CT","LITCHFIELD","STANDARD"
+"06791","+41.649639","-073.176163","HARWINTON","CT","LITCHFIELD","STANDARD"
+"06793","+41.718159","-073.294187","WASHINGTON","CT","LITCHFIELD","STANDARD"
+"06794","+41.646347","-073.316951","WASHINGTON DEPOT","CT","LITCHFIELD","STANDARD"
+"06795","+41.759427","-073.162003","WATERTOWN","CT","LITCHFIELD","STANDARD"
+"06796","+41.821529","-073.350384","WEST CORNWALL","CT","LITCHFIELD","STANDARD"
+"06798","+41.733106","-073.135499","WOODBURY","CT","LITCHFIELD","STANDARD"
+"06801","+41.381244","-073.399080","BETHEL","CT","FAIRFIELD","STANDARD"
+"06804","+41.404799","-073.275562","BROOKFIELD","CT","FAIRFIELD","STANDARD"
+"06807","+41.058646","-073.587618","COS COB","CT","FAIRFIELD","STANDARD"
+"06810","+41.376242","-073.471416","DANBURY","CT","FAIRFIELD","STANDARD"
+"06811","+41.423330","-073.478717","DANBURY","CT","FAIRFIELD","STANDARD"
+"06812","+41.486689","-073.491042","NEW FAIRFIELD","CT","FAIRFIELD","STANDARD"
+"06813","+41.308873","-073.363661","DANBURY","CT","FAIRFIELD","STANDARD"
+"06814","+41.308873","-073.363661","DANBURY","CT","FAIRFIELD","UNIQUE"
+"06816","+41.308873","-073.363661","DANBURY","CT","FAIRFIELD","UNIQUE"
+"06817","+41.308873","-073.363661","DANBURY","CT","FAIRFIELD","UNIQUE"
+"06820","+41.075846","-073.480765","DARIEN","CT","FAIRFIELD","STANDARD"
+"06829","+41.255530","-073.427915","GEORGETOWN","CT","FAIRFIELD","PO BOX ONLY"
+"06830","+41.042746","-073.626170","GREENWICH","CT","FAIRFIELD","STANDARD"
+"06831","+41.079983","-073.654472","GREENWICH","CT","FAIRFIELD","STANDARD"
+"06832","+41.308873","-073.363661","GREENWICH","CT","FAIRFIELD","UNIQUE"
+"06836","+41.308873","-073.363661","GREENWICH","CT","FAIRFIELD","STANDARD"
+"06840","+41.162209","-073.501267","NEW CANAAN","CT","FAIRFIELD","STANDARD"
+"06842","+41.147096","-073.495366","NEW CANAAN","CT","FAIRFIELD","UNIQUE"
+"06850","+41.126146","-073.442423","NORWALK","CT","FAIRFIELD","STANDARD"
+"06851","+41.139796","-073.404963","NORWALK","CT","FAIRFIELD","STANDARD"
+"06852","+41.308873","-073.363661","NORWALK","CT","FAIRFIELD","STANDARD"
+"06853","+41.070396","-073.437563","NORWALK","CT","FAIRFIELD","STANDARD"
+"06854","+41.090946","-073.432313","NORWALK","CT","FAIRFIELD","STANDARD"
+"06855","+41.099196","-073.398362","NORWALK","CT","FAIRFIELD","STANDARD"
+"06856","+41.111196","-073.420363","NORWALK","CT","FAIRFIELD","STANDARD"
+"06857","+41.308873","-073.363661","NORWALK","CT","FAIRFIELD","UNIQUE"
+"06858","+41.110496","-073.416213","NORWALK","CT","FAIRFIELD","UNIQUE"
+"06859","+41.308873","-073.363661","NORWALK","CT","FAIRFIELD","UNIQUE"
+"06860","+41.308873","-073.363661","NORWALK","CT","FAIRFIELD","UNIQUE"
+"06870","+41.034946","-073.566968","OLD GREENWICH","CT","FAIRFIELD","STANDARD"
+"06875","+41.308873","-073.363661","REDDING CENTER","CT","FAIRFIELD","PO BOX ONLY"
+"06876","+41.032647","-073.583569","REDDING RIDGE","CT","FAIRFIELD","PO BOX ONLY"
+"06877","+41.308201","-073.494637","RIDGEFIELD","CT","FAIRFIELD","STANDARD"
+"06878","+41.035596","-073.580241","RIVERSIDE","CT","FAIRFIELD","STANDARD"
+"06879","+41.308873","-073.363661","RIDGEFIELD","CT","FAIRFIELD","UNIQUE"
+"06880","+41.144496","-073.343261","WESTPORT","CT","FAIRFIELD","STANDARD"
+"06881","+41.308873","-073.363661","WESTPORT","CT","FAIRFIELD","STANDARD"
+"06883","+41.222945","-073.376263","WESTON","CT","FAIRFIELD","STANDARD"
+"06888","+41.308873","-073.363661","WESTPORT","CT","FAIRFIELD","UNIQUE"
+"06889","+41.141005","-073.346890","WESTPORT","CT","FAIRFIELD","UNIQUE"
+"06896","+41.271095","-073.386340","REDDING","CT","FAIRFIELD","STANDARD"
+"06897","+41.209695","-073.439165","WILTON","CT","FAIRFIELD","STANDARD"
+"06901","+41.054082","-073.536216","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06902","+41.060196","-073.544477","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06903","+41.136773","-073.565919","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06904","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06905","+41.116751","-073.552752","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06906","+41.071246","-073.521416","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06907","+41.088346","-073.537217","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06910","+41.039147","-073.559118","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06911","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06912","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","STANDARD"
+"06913","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06914","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06920","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06921","+41.049866","-073.537960","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06922","+41.051551","-073.514344","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06925","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06926","+41.041197","-073.538567","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06927","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"06928","+41.308873","-073.363661","STAMFORD","CT","FAIRFIELD","UNIQUE"
+"07001","+40.582845","-074.275240","AVENEL","NJ","MIDDLESEX","STANDARD"
+"07002","+40.670858","-074.109486","BAYONNE","NJ","HUDSON","STANDARD"
+"07003","+40.808549","-074.187005","BLOOMFIELD","NJ","ESSEX","STANDARD"
+"07004","+40.875948","-074.296810","FAIRFIELD","NJ","ESSEX","STANDARD"
+"07005","+40.918648","-074.430696","BOONTON","NJ","MORRIS","STANDARD"
+"07006","+40.854548","-074.278892","CALDWELL","NJ","ESSEX","STANDARD"
+"07007","+40.791850","-074.245241","CALDWELL","NJ","ESSEX","STANDARD"
+"07008","+40.583203","-074.234839","CARTERET","NJ","MIDDLESEX","STANDARD"
+"07009","+40.857049","-074.227109","CEDAR GROVE","NJ","ESSEX","STANDARD"
+"07010","+40.820541","-073.987820","CLIFFSIDE PARK","NJ","BERGEN","STANDARD"
+"07011","+40.877949","-074.141237","CLIFTON","NJ","PASSAIC","STANDARD"
+"07012","+40.847699","-074.160538","CLIFTON","NJ","PASSAIC","STANDARD"
+"07013","+40.872898","-074.170138","CLIFTON","NJ","PASSAIC","STANDARD"
+"07014","+40.832449","-074.136937","CLIFTON","NJ","PASSAIC","STANDARD"
+"07015","+41.011428","-074.304793","CLIFTON","NJ","PASSAIC","STANDARD"
+"07016","+40.654802","-074.304792","CRANFORD","NJ","UNION","STANDARD"
+"07017","+40.771850","-074.207039","EAST ORANGE","NJ","ESSEX","STANDARD"
+"07018","+40.756600","-074.216839","EAST ORANGE","NJ","ESSEX","STANDARD"
+"07019","+40.791850","-074.245241","EAST ORANGE","NJ","ESSEX","STANDARD"
+"07020","+40.826550","-073.978082","EDGEWATER","NJ","BERGEN","STANDARD"
+"07021","+40.826158","-074.276591","ESSEX FELLS","NJ","ESSEX","STANDARD"
+"07022","+40.817537","-074.000883","FAIRVIEW","NJ","BERGEN","STANDARD"
+"07023","+40.641902","-074.387044","FANWOOD","NJ","UNION","STANDARD"
+"07024","+40.848745","-073.974032","FORT LEE","NJ","BERGEN","STANDARD"
+"07026","+40.884648","-074.110336","GARFIELD","NJ","BERGEN","STANDARD"
+"07027","+40.651242","-074.322892","GARWOOD","NJ","UNION","STANDARD"
+"07028","+40.807499","-074.205039","GLEN RIDGE","NJ","ESSEX","STANDARD"
+"07029","+40.744501","-074.150787","HARRISON","NJ","HUDSON","STANDARD"
+"07030","+40.746851","-074.033934","HOBOKEN","NJ","HUDSON","STANDARD"
+"07031","+40.787112","-074.127316","NORTH ARLINGTON","NJ","BERGEN","STANDARD"
+"07032","+40.751750","-074.122937","KEARNY","NJ","HUDSON","STANDARD"
+"07033","+40.677601","-074.291191","KENILWORTH","NJ","UNION","STANDARD"
+"07034","+40.880649","-074.379745","LAKE HIAWATHA","NJ","MORRIS","STANDARD"
+"07035","+40.926637","-074.303093","LINCOLN PARK","NJ","MORRIS","STANDARD"
+"07036","+40.626953","-074.250939","LINDEN","NJ","UNION","STANDARD"
+"07039","+40.787006","-074.325993","LIVINGSTON","NJ","ESSEX","STANDARD"
+"07040","+40.729100","-074.266541","MAPLEWOOD","NJ","ESSEX","STANDARD"
+"07041","+40.733650","-074.301692","MILLBURN","NJ","ESSEX","STANDARD"
+"07042","+40.811908","-074.216389","MONTCLAIR","NJ","ESSEX","STANDARD"
+"07043","+40.803400","-074.194480","MONTCLAIR","NJ","ESSEX","STANDARD"
+"07044","+40.832849","-074.243895","VERONA","NJ","ESSEX","STANDARD"
+"07045","+40.906311","-074.363231","MONTVILLE","NJ","MORRIS","STANDARD"
+"07046","+40.890502","-074.440898","MOUNTAIN LAKES","NJ","MORRIS","STANDARD"
+"07047","+40.789724","-074.023234","NORTH BERGEN","NJ","HUDSON","STANDARD"
+"07050","+40.770400","-074.236740","ORANGE","NJ","ESSEX","STANDARD"
+"07051","+40.791850","-074.245241","ORANGE","NJ","ESSEX","STANDARD"
+"07052","+40.789944","-074.227190","WEST ORANGE","NJ","ESSEX","STANDARD"
+"07054","+40.852118","-074.407706","PARSIPPANY","NJ","MORRIS","STANDARD"
+"07055","+40.855103","-074.126916","PASSAIC","NJ","PASSAIC","STANDARD"
+"07057","+40.852799","-074.107325","WALLINGTON","NJ","BERGEN","STANDARD"
+"07058","+40.871014","-074.340144","PINE BROOK","NJ","MORRIS","STANDARD"
+"07059","+40.629101","-074.532449","WARREN","NJ","SOMERSET","STANDARD"
+"07060","+40.615202","-074.414995","PLAINFIELD","NJ","UNION","STANDARD"
+"07061","+40.665651","-074.299692","PLAINFIELD","NJ","UNION","STANDARD"
+"07062","+40.632252","-074.399736","PLAINFIELD","NJ","UNION","STANDARD"
+"07063","+40.604752","-074.442746","PLAINFIELD","NJ","UNION","STANDARD"
+"07064","+40.570254","-074.249739","PORT READING","NJ","MIDDLESEX","STANDARD"
+"07065","+40.609553","-074.280641","RAHWAY","NJ","UNION","STANDARD"
+"07066","+40.622502","-074.311092","CLARK","NJ","UNION","STANDARD"
+"07067","+40.590853","-074.314688","COLONIA","NJ","MIDDLESEX","STANDARD"
+"07068","+40.820499","-074.306093","ROSELAND","NJ","ESSEX","STANDARD"
+"07069",,,"WATCHUNG","NJ","SOMERSET","STANDARD"
+"07070","+40.827449","-074.109786","RUTHERFORD","NJ","BERGEN","STANDARD"
+"07071","+40.799549","-074.116517","LYNDHURST","NJ","BERGEN","STANDARD"
+"07072","+40.828399","-074.076055","CARLSTADT","NJ","BERGEN","STANDARD"
+"07073","+40.828399","-074.093886","EAST RUTHERFORD","NJ","BERGEN","STANDARD"
+"07074","+40.839299","-074.060184","MOONACHIE","NJ","BERGEN","STANDARD"
+"07075","+40.848599","-074.089585","WOOD RIDGE","NJ","BERGEN","STANDARD"
+"07076","+40.637852","-074.368244","SCOTCH PLAINS","NJ","UNION","STANDARD"
+"07077","+40.551804","-074.259139","SEWAREN","NJ","MIDDLESEX","STANDARD"
+"07078","+40.740550","-074.334443","SHORT HILLS","NJ","ESSEX","STANDARD"
+"07079","+40.745772","-074.267541","SOUTH ORANGE","NJ","ESSEX","STANDARD"
+"07080","+40.572065","-074.413545","SOUTH PLAINFIELD","NJ","MIDDLESEX","STANDARD"
+"07081","+40.701101","-074.316301","SPRINGFIELD","NJ","UNION","STANDARD"
+"07082","+40.927690","-074.347695","TOWACO","NJ","MORRIS","STANDARD"
+"07083","+40.692651","-074.269841","UNION","NJ","UNION","STANDARD"
+"07086",,,"WEEHAWKEN","NJ","HUDSON","STANDARD"
+"07087","+40.758951","-074.056335","UNION CITY","NJ","HUDSON","STANDARD"
+"07088","+40.717890","-074.284341","VAUXHALL","NJ","UNION","STANDARD"
+"07090","+40.652851","-074.346764","WESTFIELD","NJ","UNION","STANDARD"
+"07091","+40.665651","-074.299692","WESTFIELD","NJ","UNION","STANDARD"
+"07092","+40.680701","-074.358394","MOUNTAINSIDE","NJ","UNION","STANDARD"
+"07093","+40.788800","-074.011533","WEST NEW YORK","NJ","HUDSON","STANDARD"
+"07094","+40.788850","-074.056035","SECAUCUS","NJ","HUDSON","STANDARD"
+"07095","+40.553254","-074.288023","WOODBRIDGE","NJ","MIDDLESEX","STANDARD"
+"07096","+40.732760","-074.075485","SECAUCUS","NJ","HUDSON","STANDARD"
+"07097","+40.732760","-074.075485","JERSEY CITY","NJ","HUDSON","UNIQUE"
+"07099","+40.732760","-074.075485","KEARNY","NJ","HUDSON","UNIQUE"
+"07101","+40.736101","-074.225090","NEWARK","NJ","ESSEX","STANDARD"
+"07102","+40.735642","-074.173988","NEWARK","NJ","ESSEX","STANDARD"
+"07103","+40.738901","-074.194839","NEWARK","NJ","ESSEX","STANDARD"
+"07104","+40.764350","-074.151788","NEWARK","NJ","ESSEX","STANDARD"
+"07105","+40.723606","-074.147337","NEWARK","NJ","ESSEX","STANDARD"
+"07106","+40.742450","-074.231140","NEWARK","NJ","ESSEX","STANDARD"
+"07107","+40.764600","-074.188029","NEWARK","NJ","ESSEX","STANDARD"
+"07108","+40.722496","-074.200649","NEWARK","NJ","ESSEX","STANDARD"
+"07109","+40.782100","-074.167488","BELLEVILLE","NJ","ESSEX","STANDARD"
+"07110","+40.821299","-074.159449","NUTLEY","NJ","ESSEX","STANDARD"
+"07111","+40.726231","-074.232940","IRVINGTON","NJ","ESSEX","STANDARD"
+"07112","+40.711151","-074.211265","NEWARK","NJ","ESSEX","STANDARD"
+"07114","+40.705401","-074.169538","NEWARK","NJ","ESSEX","STANDARD"
+"07175","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07182","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07184","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07188","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07189","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07191","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07192","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07193","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07194","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07195","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07197","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07198","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07199","+40.791850","-074.245241","NEWARK","NJ","ESSEX","UNIQUE"
+"07201","+40.672052","-074.183438","ELIZABETH","NJ","UNION","STANDARD"
+"07202","+40.650902","-074.217189","ELIZABETH","NJ","UNION","STANDARD"
+"07203","+40.650152","-074.258790","ROSELLE","NJ","UNION","STANDARD"
+"07204","+40.665652","-074.266740","ROSELLE PARK","NJ","UNION","STANDARD"
+"07205","+40.693823","-074.229889","HILLSIDE","NJ","UNION","STANDARD"
+"07206","+40.652152","-074.191814","ELIZABETH","NJ","UNION","STANDARD"
+"07207","+40.665651","-074.299692","ELIZABETH","NJ","UNION","STANDARD"
+"07208","+40.677102","-074.229289","ELIZABETH","NJ","UNION","STANDARD"
+"07302","+40.726001","-074.047304","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07303","+40.732760","-074.075485","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07304","+40.716101","-074.065535","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07305","+40.696661","-074.081135","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07306","+40.734951","-074.068685","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07307","+40.749801","-074.054285","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07308","+40.732760","-074.075485","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07309","+40.732760","-074.075485","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07310","+40.732728","-074.037168","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07311","+40.732350","-074.075391","JERSEY CITY","NJ","HUDSON","STANDARD"
+"07399","+40.732350","-074.075391","JERSEY CITY","NJ","HUDSON","UNIQUE"
+"07401","+41.017446","-074.062774","ALLENDALE","NJ","BERGEN","STANDARD"
+"07403","+41.023414","-074.334444","BLOOMINGDALE","NJ","PASSAIC","STANDARD"
+"07405","+40.998797","-074.426148","BUTLER","NJ","MORRIS","STANDARD"
+"07407","+40.905848","-074.117736","ELMWOOD PARK","NJ","BERGEN","STANDARD"
+"07410","+40.935348","-074.119236","FAIR LAWN","NJ","BERGEN","STANDARD"
+"07416","+41.115723","-074.593439","FRANKLIN","NJ","SUSSEX","STANDARD"
+"07417","+41.010464","-074.208310","FRANKLIN LAKES","NJ","BERGEN","STANDARD"
+"07418","+41.228102","-074.477351","GLENWOOD","NJ","SUSSEX","STANDARD"
+"07419","+41.159187","-074.576880","HAMBURG","NJ","SUSSEX","STANDARD"
+"07420","+41.028396","-074.304516","HASKELL","NJ","PASSAIC","STANDARD"
+"07421","+41.151395","-074.357893","HEWITT","NJ","PASSAIC","STANDARD"
+"07422","+41.187468","-074.458935","HIGHLAND LAKES","NJ","SUSSEX","STANDARD"
+"07423","+40.998882","-074.096848","HO HO KUS","NJ","BERGEN","STANDARD"
+"07424","+40.883548","-074.214388","LITTLE FALLS","NJ","PASSAIC","STANDARD"
+"07428","+41.206509","-074.538144","MC AFEE","NJ","SUSSEX","PO BOX ONLY"
+"07430","+41.053446","-074.172766","MAHWAH","NJ","BERGEN","STANDARD"
+"07432","+40.994697","-074.142287","MIDLAND PARK","NJ","BERGEN","STANDARD"
+"07435","+41.053096","-074.439356","NEWFOUNDLAND","NJ","PASSAIC","STANDARD"
+"07436","+41.023402","-074.238623","OAKLAND","NJ","BERGEN","STANDARD"
+"07438","+41.099796","-074.443399","OAK RIDGE","NJ","PASSAIC","STANDARD"
+"07439","+41.078346","-074.594104","OGDENSBURG","NJ","SUSSEX","STANDARD"
+"07440","+40.948208","-074.295592","PEQUANNOCK","NJ","MORRIS","STANDARD"
+"07442","+40.999597","-074.297725","POMPTON LAKES","NJ","PASSAIC","STANDARD"
+"07444","+41.008797","-074.402663","POMPTON PLAINS","NJ","MORRIS","STANDARD"
+"07446","+41.059124","-074.133441","RAMSEY","NJ","BERGEN","STANDARD"
+"07450","+40.982247","-074.112070","RIDGEWOOD","NJ","BERGEN","STANDARD"
+"07451","+40.948054","-074.083231","RIDGEWOOD","NJ","BERGEN","STANDARD"
+"07452","+40.960347","-074.125036","GLEN ROCK","NJ","BERGEN","STANDARD"
+"07456","+41.110445","-074.293271","RINGWOOD","NJ","PASSAIC","STANDARD"
+"07457","+40.992647","-074.312443","RIVERDALE","NJ","MORRIS","STANDARD"
+"07458","+41.044324","-074.098093","SADDLE RIVER","NJ","BERGEN","STANDARD"
+"07460","+41.138101","-074.561915","STOCKHOLM","NJ","SUSSEX","STANDARD"
+"07461","+41.242702","-074.596734","SUSSEX","NJ","SUSSEX","STANDARD"
+"07462","+41.189046","-074.514340","VERNON","NJ","SUSSEX","STANDARD"
+"07463","+41.041225","-074.128326","WALDWICK","NJ","BERGEN","STANDARD"
+"07465","+41.065596","-074.297393","WANAQUE","NJ","PASSAIC","STANDARD"
+"07470","+40.948689","-074.241168","WAYNE","NJ","PASSAIC","STANDARD"
+"07474","+41.011428","-074.304793","WAYNE","NJ","PASSAIC","STANDARD"
+"07477","+41.011428","-074.304793","WAYNE","NJ","PASSAIC","UNIQUE"
+"07480","+41.047296","-074.294243","WEST MILFORD","NJ","PASSAIC","STANDARD"
+"07481","+40.998387","-074.165733","WYCKOFF","NJ","BERGEN","STANDARD"
+"07495","+40.948054","-074.083231","MAHWAH","NJ","BERGEN","STANDARD"
+"07498","+40.948054","-074.083231","MAHWAH","NJ","BERGEN","UNIQUE"
+"07501","+40.915045","-074.174488","PATERSON","NJ","PASSAIC","STANDARD"
+"07502","+40.918698","-074.194989","PATERSON","NJ","PASSAIC","STANDARD"
+"07503","+40.898098","-074.151837","PATERSON","NJ","PASSAIC","STANDARD"
+"07504","+40.911248","-074.144087","PATERSON","NJ","PASSAIC","STANDARD"
+"07505","+40.916648","-074.174038","PATERSON","NJ","PASSAIC","STANDARD"
+"07506","+40.954375","-074.161788","HAWTHORNE","NJ","PASSAIC","STANDARD"
+"07507","+41.011428","-074.304793","HAWTHORNE","NJ","PASSAIC","STANDARD"
+"07508","+40.951587","-074.186269","HALEDON","NJ","PASSAIC","STANDARD"
+"07509","+41.011428","-074.304793","PATERSON","NJ","PASSAIC","STANDARD"
+"07510","+41.011428","-074.304793","PATERSON","NJ","PASSAIC","STANDARD"
+"07511","+41.011428","-074.304793","TOTOWA","NJ","PASSAIC","STANDARD"
+"07512","+40.901698","-074.221990","TOTOWA","NJ","PASSAIC","STANDARD"
+"07513","+40.907698","-074.146515","PATERSON","NJ","PASSAIC","STANDARD"
+"07514","+40.928748","-074.143187","PATERSON","NJ","PASSAIC","STANDARD"
+"07522","+40.923798","-074.179488","PATERSON","NJ","PASSAIC","STANDARD"
+"07524","+40.932498","-074.156971","PATERSON","NJ","PASSAIC","STANDARD"
+"07533","+41.011428","-074.304793","PATERSON","NJ","PASSAIC","STANDARD"
+"07538","+41.011428","-074.304793","HALEDON","NJ","PASSAIC","STANDARD"
+"07543","+41.011428","-074.304793","PATERSON","NJ","PASSAIC","STANDARD"
+"07544","+41.011428","-074.304793","PATERSON","NJ","PASSAIC","STANDARD"
+"07601","+40.913482","-074.001623","HACKENSACK","NJ","BERGEN","STANDARD"
+"07602","+40.948054","-074.083231","HACKENSACK","NJ","BERGEN","STANDARD"
+"07603","+40.874773","-074.030484","BOGOTA","NJ","BERGEN","STANDARD"
+"07604","+40.862349","-074.075585","HASBROUCK HEIGHTS","NJ","BERGEN","STANDARD"
+"07605","+40.863499","-073.987132","LEONIA","NJ","BERGEN","STANDARD"
+"07606","+40.857899","-074.048884","SOUTH HACKENSACK","NJ","BERGEN","STANDARD"
+"07607","+40.901810","-074.061784","MAYWOOD","NJ","BERGEN","STANDARD"
+"07608","+40.863954","-074.055584","TETERBORO","NJ","BERGEN","STANDARD"
+"07620","+40.958975","-073.927906","ALPINE","NJ","BERGEN","PO BOX ONLY"
+"07621","+40.923498","-073.998332","BERGENFIELD","NJ","BERGEN","STANDARD"
+"07624","+40.970621","-073.960164","CLOSTER","NJ","BERGEN","STANDARD"
+"07626","+40.972898","-074.098841","CRESSKILL","NJ","BERGEN","STANDARD"
+"07627","+40.954198","-073.957623","DEMAREST","NJ","BERGEN","STANDARD"
+"07628","+40.955018","-073.989911","DUMONT","NJ","BERGEN","STANDARD"
+"07630","+40.973199","-074.021118","EMERSON","NJ","BERGEN","STANDARD"
+"07631","+40.889498","-073.971782","ENGLEWOOD","NJ","BERGEN","STANDARD"
+"07632","+40.883949","-073.952423","ENGLEWOOD CLIFFS","NJ","BERGEN","STANDARD"
+"07640","+40.991696","-073.984860","HARRINGTON PARK","NJ","BERGEN","STANDARD"
+"07641","+40.963867","-073.993580","HAWORTH","NJ","BERGEN","STANDARD"
+"07642","+41.008367","-074.048576","HILLSDALE","NJ","BERGEN","STANDARD"
+"07643","+40.925361","-074.076029","LITTLE FERRY","NJ","BERGEN","STANDARD"
+"07644","+40.878349","-074.081335","LODI","NJ","BERGEN","STANDARD"
+"07645","+41.054651","-074.045425","MONTVALE","NJ","BERGEN","STANDARD"
+"07646","+40.932998","-074.017633","NEW MILFORD","NJ","BERGEN","STANDARD"
+"07647","+41.008636","-073.938930","NORTHVALE","NJ","BERGEN","STANDARD"
+"07648","+40.992921","-073.949747","NORWOOD","NJ","BERGEN","STANDARD"
+"07649","+40.955347","-074.026983","ORADELL","NJ","BERGEN","STANDARD"
+"07650","+40.939673","-074.010792","PALISADES PARK","NJ","BERGEN","STANDARD"
+"07652","+40.944997","-074.068964","PARAMUS","NJ","BERGEN","STANDARD"
+"07653","+40.948054","-074.083231","PARAMUS","NJ","BERGEN","STANDARD"
+"07656","+41.032868","-074.042948","PARK RIDGE","NJ","BERGEN","STANDARD"
+"07657","+40.833150","-074.004233","RIDGEFIELD","NJ","BERGEN","STANDARD"
+"07660","+40.853449","-074.021233","RIDGEFIELD PARK","NJ","BERGEN","STANDARD"
+"07661","+40.926248","-074.038533","RIVER EDGE","NJ","BERGEN","STANDARD"
+"07662","+40.905698","-074.079035","ROCHELLE PARK","NJ","BERGEN","STANDARD"
+"07663","+40.942101","-074.094685","SADDLE BROOK","NJ","BERGEN","STANDARD"
+"07666","+40.914616","-073.986334","TEANECK","NJ","BERGEN","STANDARD"
+"07670","+40.919298","-073.960481","TENAFLY","NJ","BERGEN","STANDARD"
+"07675","+41.011453","-074.021278","WESTWOOD","NJ","BERGEN","STANDARD"
+"07676",,,"TOWNSHIP OF WASHINGTON","NJ","BERGEN","STANDARD"
+"07677",,,"WOODCLIFF LAKE","NJ","BERGEN","STANDARD"
+"07701","+40.358409","-074.068143","RED BANK","NJ","MONMOUTH","STANDARD"
+"07702","+40.325361","-074.107943","SHREWSBURY","NJ","MONMOUTH","STANDARD"
+"07703","+40.314531","-074.041654","FORT MONMOUTH","NJ","MONMOUTH","STANDARD"
+"07704","+40.358459","-074.036433","FAIR HAVEN","NJ","MONMOUTH","STANDARD"
+"07709","+40.302718","-074.249280","ALLENHURST","NJ","MONMOUTH","UNIQUE"
+"07710","+40.302718","-074.249280","ADELPHIA","NJ","MONMOUTH","PO BOX ONLY"
+"07711","+40.237111","-074.008581","ALLENHURST","NJ","MONMOUTH","STANDARD"
+"07712","+40.250725","-074.048582","ASBURY PARK","NJ","MONMOUTH","STANDARD"
+"07715","+40.302718","-074.249280","BELMAR","NJ","MONMOUTH","UNIQUE"
+"07716","+40.404762","-074.056170","ATLANTIC HIGHLANDS","NJ","MONMOUTH","STANDARD"
+"07717","+40.191913","-074.015931","AVON BY THE SEA","NJ","MONMOUTH","STANDARD"
+"07718","+40.417707","-074.088534","BELFORD","NJ","MONMOUTH","STANDARD"
+"07719","+40.257461","-074.112134","BELMAR","NJ","MONMOUTH","STANDARD"
+"07720","+40.202113","-074.012581","BRADLEY BEACH","NJ","MONMOUTH","STANDARD"
+"07721","+40.386330","-074.115229","CLIFFWOOD","NJ","MONMOUTH","STANDARD"
+"07722","+40.302848","-074.160911","COLTS NECK","NJ","MONMOUTH","STANDARD"
+"07723","+40.250861","-074.004581","DEAL","NJ","MONMOUTH","STANDARD"
+"07724","+40.304660","-074.073433","EATONTOWN","NJ","MONMOUTH","STANDARD"
+"07726","+40.269700","-074.265539","ENGLISHTOWN","NJ","MONMOUTH","STANDARD"
+"07727","+40.285211","-074.161571","FARMINGDALE","NJ","MONMOUTH","STANDARD"
+"07728","+40.236423","-074.306284","FREEHOLD","NJ","MONMOUTH","STANDARD"
+"07730","+40.423057","-074.176036","HAZLET","NJ","MONMOUTH","STANDARD"
+"07731","+40.258361","-074.196780","HOWELL","NJ","MONMOUTH","STANDARD"
+"07732","+40.401078","-074.000582","HIGHLANDS","NJ","MONMOUTH","STANDARD"
+"07733","+40.376408","-074.170037","HOLMDEL","NJ","MONMOUTH","STANDARD"
+"07734","+40.438145","-074.127883","KEANSBURG","NJ","MONMOUTH","STANDARD"
+"07735","+40.438398","-074.188087","KEYPORT","NJ","MONMOUTH","STANDARD"
+"07737","+40.409391","-074.059884","LEONARDO","NJ","MONMOUTH","STANDARD"
+"07738","+40.346629","-074.125401","LINCROFT","NJ","MONMOUTH","STANDARD"
+"07739","+40.382028","-074.168941","LITTLE SILVER","NJ","MONMOUTH","STANDARD"
+"07740","+40.345361","-074.110900","LONG BRANCH","NJ","MONMOUTH","STANDARD"
+"07746","+40.351277","-074.141236","MARLBORO","NJ","MONMOUTH","STANDARD"
+"07747","+40.407507","-074.233788","MATAWAN","NJ","MONMOUTH","STANDARD"
+"07748","+40.400997","-074.144636","MIDDLETOWN","NJ","MONMOUTH","STANDARD"
+"07750","+40.277757","-074.194702","MONMOUTH BEACH","NJ","MONMOUTH","STANDARD"
+"07751","+40.319979","-074.214488","MORGANVILLE","NJ","MONMOUTH","STANDARD"
+"07752","+40.402277","-074.027285","NAVESINK","NJ","MONMOUTH","PO BOX ONLY"
+"07753","+40.209551","-074.071351","NEPTUNE","NJ","MONMOUTH","STANDARD"
+"07754","+40.302718","-074.249280","NEPTUNE","NJ","MONMOUTH","STANDARD"
+"07755","+40.261158","-074.021382","OAKHURST","NJ","MONMOUTH","STANDARD"
+"07756","+40.278922","-074.123285","OCEAN GROVE","NJ","MONMOUTH","STANDARD"
+"07757","+40.314960","-074.019032","OCEANPORT","NJ","MONMOUTH","STANDARD"
+"07758","+40.429731","-074.106535","PORT MONMOUTH","NJ","MONMOUTH","STANDARD"
+"07760","+40.370684","-074.008432","RUMSON","NJ","MONMOUTH","STANDARD"
+"07762","+40.176013","-074.031331","SPRING LAKE","NJ","MONMOUTH","STANDARD"
+"07763","+40.302718","-074.249280","TENNENT","NJ","MONMOUTH","PO BOX ONLY"
+"07764","+40.283511","-074.018282","WEST LONG BRANCH","NJ","MONMOUTH","STANDARD"
+"07765","+40.302718","-074.249280","WICKATUNK","NJ","MONMOUTH","PO BOX ONLY"
+"07777","+40.302718","-074.249280","HOLMDEL","NJ","MONMOUTH","UNIQUE"
+"07799","+40.302718","-074.249280","EATONTOWN","NJ","MONMOUTH","STANDARD"
+"07801","+40.917598","-074.546651","DOVER","NJ","MORRIS","STANDARD"
+"07802","+40.867331","-074.578269","DOVER","NJ","MORRIS","STANDARD"
+"07803","+40.877099","-074.584453","MINE HILL","NJ","MORRIS","STANDARD"
+"07806","+40.867331","-074.578269","PICATINNY ARSENAL","NJ","MORRIS","STANDARD"
+"07820","+40.869648","-074.849661","ALLAMUCHY","NJ","WARREN","PO BOX ONLY"
+"07821","+41.092778","-074.718969","ANDOVER","NJ","SUSSEX","STANDARD"
+"07822","+41.161241","-074.617400","AUGUSTA","NJ","SUSSEX","STANDARD"
+"07823","+40.819772","-075.030961","BELVIDERE","NJ","WARREN","STANDARD"
+"07825","+40.942238","-074.937487","BLAIRSTOWN","NJ","WARREN","STANDARD"
+"07826","+41.188035","-074.824675","BRANCHVILLE","NJ","SUSSEX","STANDARD"
+"07827","+41.255279","-074.644746","MONTAGUE","NJ","SUSSEX","STANDARD"
+"07828","+40.880028","-074.757560","BUDD LAKE","NJ","MORRIS","STANDARD"
+"07829","+40.843350","-074.985914","BUTTZVILLE","NJ","WARREN","PO BOX ONLY"
+"07830","+40.717424","-074.813951","CALIFON","NJ","HUNTERDON","STANDARD"
+"07831","+40.739382","-074.944756","CHANGEWATER","NJ","WARREN","PO BOX ONLY"
+"07832","+40.893979","-075.029163","COLUMBIA","NJ","WARREN","STANDARD"
+"07833","+40.906906","-075.075377","DELAWARE","NJ","WARREN","PO BOX ONLY"
+"07834","+40.881248","-074.489349","DENVILLE","NJ","MORRIS","STANDARD"
+"07836","+40.850884","-074.701558","FLANDERS","NJ","MORRIS","STANDARD"
+"07837","+41.128310","-074.678956","GLASSER","NJ","SUSSEX","PO BOX ONLY"
+"07838","+40.888834","-074.937714","GREAT MEADOWS","NJ","WARREN","STANDARD"
+"07839","+41.128310","-074.678956","GREENDELL","NJ","SUSSEX","PO BOX ONLY"
+"07840","+40.868804","-074.844734","HACKETTSTOWN","NJ","WARREN","STANDARD"
+"07842","+40.867331","-074.578269","HIBERNIA","NJ","MORRIS","PO BOX ONLY"
+"07843","+40.936753","-074.659969","HOPATCONG","NJ","SUSSEX","STANDARD"
+"07844","+40.919658","-074.984628","HOPE","NJ","WARREN","PO BOX ONLY"
+"07845","+40.867331","-074.578269","IRONIA","NJ","MORRIS","PO BOX ONLY"
+"07846","+40.968998","-074.873265","JOHNSONBURG","NJ","WARREN","PO BOX ONLY"
+"07847","+40.876098","-074.695309","KENVIL","NJ","MORRIS","STANDARD"
+"07848","+41.128183","-074.731759","LAFAYETTE","NJ","SUSSEX","STANDARD"
+"07849","+40.950597","-074.612904","LAKE HOPATCONG","NJ","MORRIS","STANDARD"
+"07850","+40.906298","-074.664605","LANDING","NJ","MORRIS","STANDARD"
+"07851","+41.178266","-074.893060","LAYTON","NJ","SUSSEX","STANDARD"
+"07852","+40.863318","-074.721224","LEDGEWOOD","NJ","MORRIS","STANDARD"
+"07853","+40.806849","-074.794595","LONG VALLEY","NJ","MORRIS","STANDARD"
+"07855","+41.128310","-074.678956","MIDDLEVILLE","NJ","SUSSEX","PO BOX ONLY"
+"07856","+40.874049","-074.734330","MOUNT ARLINGTON","NJ","MORRIS","STANDARD"
+"07857","+40.897808","-074.700159","NETCONG","NJ","MORRIS","STANDARD"
+"07860","+41.069522","-074.806938","NEWTON","NJ","SUSSEX","STANDARD"
+"07863","+40.820044","-074.941392","OXFORD","NJ","WARREN","STANDARD"
+"07865","+40.810748","-074.874270","PORT MURRAY","NJ","WARREN","STANDARD"
+"07866","+40.960111","-074.501551","ROCKAWAY","NJ","MORRIS","STANDARD"
+"07869","+40.837399","-074.586052","RANDOLPH","NJ","MORRIS","STANDARD"
+"07870","+40.810362","-074.819318","SCHOOLEYS MOUNTAIN","NJ","MORRIS","PO BOX ONLY"
+"07871","+41.040597","-074.718191","SPARTA","NJ","SUSSEX","STANDARD"
+"07874","+40.930937","-074.713557","STANHOPE","NJ","SUSSEX","STANDARD"
+"07875","+41.043858","-074.871981","STILLWATER","NJ","SUSSEX","PO BOX ONLY"
+"07876","+40.855286","-074.655255","SUCCASUNNA","NJ","MORRIS","STANDARD"
+"07877","+41.102890","-074.850759","SWARTSWOOD","NJ","SUSSEX","PO BOX ONLY"
+"07878","+40.871099","-074.477699","MOUNT TABOR","NJ","MORRIS","PO BOX ONLY"
+"07879","+40.955934","-074.788108","TRANQUILITY","NJ","SUSSEX","PO BOX ONLY"
+"07880","+40.864844","-074.897002","VIENNA","NJ","WARREN","PO BOX ONLY"
+"07881","+41.125646","-074.917711","WALLPACK CENTER","NJ","SUSSEX","STANDARD"
+"07882","+40.747698","-075.008713","WASHINGTON","NJ","WARREN","STANDARD"
+"07885","+40.935349","-074.577102","WHARTON","NJ","MORRIS","STANDARD"
+"07890","+41.128310","-074.678956","BRANCHVILLE","NJ","SUSSEX","UNIQUE"
+"07901","+40.712750","-074.361594","SUMMIT","NJ","UNION","STANDARD"
+"07902","+40.665651","-074.299692","SUMMIT","NJ","UNION","STANDARD"
+"07920","+40.682651","-074.573001","BASKING RIDGE","NJ","SOMERSET","STANDARD"
+"07921","+40.659151","-074.676788","BEDMINSTER","NJ","SOMERSET","STANDARD"
+"07922","+40.675451","-074.422196","BERKELEY HEIGHTS","NJ","UNION","STANDARD"
+"07924","+40.725750","-074.593552","BERNARDSVILLE","NJ","SOMERSET","STANDARD"
+"07926","+40.800353","-074.571785","BROOKSIDE","NJ","MORRIS","PO BOX ONLY"
+"07927","+40.820799","-074.456198","CEDAR KNOLLS","NJ","MORRIS","STANDARD"
+"07928","+40.759477","-074.496806","CHATHAM","NJ","MORRIS","STANDARD"
+"07930","+40.782111","-074.683861","CHESTER","NJ","MORRIS","STANDARD"
+"07931","+40.699572","-074.653603","FAR HILLS","NJ","SOMERSET","STANDARD"
+"07932","+40.773500","-074.397996","FLORHAM PARK","NJ","MORRIS","STANDARD"
+"07933","+40.689339","-074.472198","GILLETTE","NJ","MORRIS","STANDARD"
+"07934","+40.715359","-074.682767","GLADSTONE","NJ","SOMERSET","STANDARD"
+"07935","+40.739782","-074.448747","GREEN VILLAGE","NJ","MORRIS","STANDARD"
+"07936","+40.816349","-074.367747","EAST HANOVER","NJ","MORRIS","STANDARD"
+"07938","+40.655399","-074.586151","LIBERTY CORNER","NJ","SOMERSET","PO BOX ONLY"
+"07939","+40.566553","-074.599801","LYONS","NJ","SOMERSET","STANDARD"
+"07940","+40.758200","-074.423019","MADISON","NJ","MORRIS","STANDARD"
+"07945","+40.786699","-074.593800","MENDHAM","NJ","MORRIS","STANDARD"
+"07946","+40.678701","-074.505399","MILLINGTON","NJ","MORRIS","STANDARD"
+"07950","+40.843399","-074.540341","MORRIS PLAINS","NJ","MORRIS","STANDARD"
+"07960","+40.771650","-074.506256","MORRISTOWN","NJ","MORRIS","STANDARD"
+"07961","+40.779750","-074.442797","MORRISTOWN","NJ","MORRIS","STANDARD"
+"07962","+40.867331","-074.578269","MORRISTOWN","NJ","MORRIS","STANDARD"
+"07963","+40.867331","-074.578269","MORRISTOWN","NJ","MORRIS","STANDARD"
+"07970","+40.805549","-074.573832","MOUNT FREEDOM","NJ","MORRIS","PO BOX ONLY"
+"07974","+40.697851","-074.405595","NEW PROVIDENCE","NJ","UNION","STANDARD"
+"07976","+40.739599","-074.483413","NEW VERNON","NJ","MORRIS","STANDARD"
+"07977","+40.707876","-074.654131","PEAPACK","NJ","SOMERSET","PO BOX ONLY"
+"07978","+40.642491","-074.639597","PLUCKEMIN","NJ","SOMERSET","PO BOX ONLY"
+"07979","+40.708241","-074.748389","POTTERSVILLE","NJ","HUNTERDON","PO BOX ONLY"
+"07980","+40.698350","-074.450197","STIRLING","NJ","MORRIS","STANDARD"
+"07981","+40.823899","-074.419097","WHIPPANY","NJ","MORRIS","STANDARD"
+"07983","+40.867331","-074.578269","WHIPPANY","NJ","MORRIS","UNIQUE"
+"07999","+40.867331","-074.578269","WHIPPANY","NJ","MORRIS","STANDARD"
+"08001","+39.559077","-075.350573","ALLOWAY","NJ","SALEM","PO BOX ONLY"
+"08002","+39.908663","-075.010307","CHERRY HILL","NJ","CAMDEN","STANDARD"
+"08003","+39.889763","-074.972761","CHERRY HILL","NJ","CAMDEN","STANDARD"
+"08004","+39.760048","-074.866534","ATCO","NJ","CAMDEN","STANDARD"
+"08005","+39.753858","-074.293989","BARNEGAT","NJ","OCEAN","STANDARD"
+"08006","+39.751214","-074.114631","BARNEGAT LIGHT","NJ","OCEAN","PO BOX ONLY"
+"08007","+39.863813","-075.053765","BARRINGTON","NJ","CAMDEN","STANDARD"
+"08008","+39.641062","-074.192228","BEACH HAVEN","NJ","OCEAN","STANDARD"
+"08009","+39.761231","-074.927010","BERLIN","NJ","CAMDEN","STANDARD"
+"08010","+40.049948","-074.917061","BEVERLY","NJ","BURLINGTON","STANDARD"
+"08011","+39.976041","-074.711429","BIRMINGHAM","NJ","BURLINGTON","PO BOX ONLY"
+"08012","+39.790131","-075.036652","BLACKWOOD","NJ","CAMDEN","STANDARD"
+"08014","+39.802163","-075.339215","BRIDGEPORT","NJ","GLOUCESTER","STANDARD"
+"08015","+39.924179","-074.670408","BROWNS MILLS","NJ","BURLINGTON","STANDARD"
+"08016","+40.089874","-074.751146","BURLINGTON","NJ","BURLINGTON","STANDARD"
+"08018","+39.802370","-074.938259","CEDAR BROOK","NJ","CAMDEN","PO BOX ONLY"
+"08019","+39.749506","-074.558941","CHATSWORTH","NJ","BURLINGTON","STANDARD"
+"08020","+39.796706","-075.218852","CLARKSBORO","NJ","GLOUCESTER","STANDARD"
+"08021","+39.803640","-075.005762","CLEMENTON","NJ","CAMDEN","STANDARD"
+"08022","+40.049355","-074.702475","COLUMBUS","NJ","BURLINGTON","STANDARD"
+"08023","+39.681545","-075.493433","DEEPWATER","NJ","SALEM","PO BOX ONLY"
+"08025","+39.701526","-075.162903","EWAN","NJ","GLOUCESTER","PO BOX ONLY"
+"08026","+39.833114","-074.967496","GIBBSBORO","NJ","CAMDEN","STANDARD"
+"08027","+39.771133","-075.272137","GIBBSTOWN","NJ","GLOUCESTER","STANDARD"
+"08028","+39.696661","-075.127183","GLASSBORO","NJ","GLOUCESTER","STANDARD"
+"08029","+39.837113","-075.062315","GLENDORA","NJ","CAMDEN","STANDARD"
+"08030","+39.890413","-075.112619","GLOUCESTER CITY","NJ","CAMDEN","STANDARD"
+"08031","+39.805543","-075.067729","BELLMAWR","NJ","CAMDEN","STANDARD"
+"08032","+39.778750","-075.060114","GRENLOCH","NJ","GLOUCESTER","STANDARD"
+"08033","+39.876313","-075.033414","HADDONFIELD","NJ","CAMDEN","STANDARD"
+"08034","+39.899962","-075.035015","CHERRY HILL","NJ","CAMDEN","STANDARD"
+"08035","+39.879163","-075.065666","HADDON HEIGHTS","NJ","CAMDEN","STANDARD"
+"08036","+39.987212","-074.829308","HAINESPORT","NJ","BURLINGTON","PO BOX ONLY"
+"08037","+39.563616","-074.711081","HAMMONTON","NJ","ATLANTIC","STANDARD"
+"08038","+39.569805","-075.312703","HANCOCKS BRIDGE","NJ","SALEM","PO BOX ONLY"
+"08039","+39.693067","-075.271114","HARRISONVILLE","NJ","GLOUCESTER","PO BOX ONLY"
+"08041","+40.044129","-074.679579","JOBSTOWN","NJ","BURLINGTON","STANDARD"
+"08042","+40.012273","-074.664640","JULIUSTOWN","NJ","BURLINGTON","PO BOX ONLY"
+"08043","+39.839156","-074.965057","VOORHEES","NJ","CAMDEN","STANDARD"
+"08045","+39.868113","-075.032114","LAWNSIDE","NJ","CAMDEN","STANDARD"
+"08046","+40.013737","-074.805773","WILLINGBORO","NJ","BURLINGTON","STANDARD"
+"08048","+39.962299","-074.800070","LUMBERTON","NJ","BURLINGTON","STANDARD"
+"08049","+39.854363","-075.036214","MAGNOLIA","NJ","CAMDEN","STANDARD"
+"08050","+39.702978","-074.257677","MANAHAWKIN","NJ","OCEAN","STANDARD"
+"08051","+39.751571","-075.212842","MANTUA","NJ","GLOUCESTER","STANDARD"
+"08052","+39.951212","-074.992163","MAPLE SHADE","NJ","BURLINGTON","STANDARD"
+"08053","+39.892263","-074.940750","MARLTON","NJ","BURLINGTON","STANDARD"
+"08054","+39.955912","-074.917310","MOUNT LAUREL","NJ","BURLINGTON","STANDARD"
+"08055","+39.874549","-074.762083","MEDFORD","NJ","BURLINGTON","STANDARD"
+"08056","+39.787913","-075.246687","MICKLETON","NJ","GLOUCESTER","STANDARD"
+"08057","+40.054255","-074.840115","MOORESTOWN","NJ","BURLINGTON","STANDARD"
+"08059","+39.886463","-075.094068","MOUNT EPHRAIM","NJ","CAMDEN","STANDARD"
+"08060","+40.044956","-074.801869","MOUNT HOLLY","NJ","BURLINGTON","STANDARD"
+"08061","+39.808643","-075.212943","MOUNT ROYAL","NJ","GLOUCESTER","STANDARD"
+"08062","+39.715857","-075.235017","MULLICA HILL","NJ","GLOUCESTER","STANDARD"
+"08063","+39.779654","-075.218413","NATIONAL PARK","NJ","GLOUCESTER","STANDARD"
+"08064","+39.862433","-074.725079","NEW LISBON","NJ","BURLINGTON","PO BOX ONLY"
+"08065","+40.031291","-074.861971","PALMYRA","NJ","BURLINGTON","STANDARD"
+"08066","+39.815690","-075.238849","PAULSBORO","NJ","GLOUCESTER","STANDARD"
+"08067","+39.733769","-075.408412","PEDRICKTOWN","NJ","SALEM","STANDARD"
+"08068","+39.966394","-074.709185","PEMBERTON","NJ","BURLINGTON","STANDARD"
+"08069","+39.619937","-075.288423","PENNS GROVE","NJ","SALEM","STANDARD"
+"08070","+39.637683","-075.512699","PENNSVILLE","NJ","SALEM","STANDARD"
+"08071","+39.734928","-075.136809","PITMAN","NJ","GLOUCESTER","STANDARD"
+"08072","+39.541055","-075.383689","QUINTON","NJ","SALEM","PO BOX ONLY"
+"08073","+39.862433","-074.725079","RANCOCAS","NJ","BURLINGTON","PO BOX ONLY"
+"08074","+39.720622","-075.168141","RICHWOOD","NJ","GLOUCESTER","PO BOX ONLY"
+"08075","+40.063293","-074.853307","RIVERSIDE","NJ","BURLINGTON","STANDARD"
+"08076","+39.862433","-074.725079","RIVERTON","NJ","BURLINGTON","STANDARD"
+"08077","+39.999211","-074.908710","RIVERTON","NJ","BURLINGTON","STANDARD"
+"08078","+39.850163","-075.070672","RUNNEMEDE","NJ","CAMDEN","STANDARD"
+"08079","+39.587729","-075.439362","SALEM","NJ","SALEM","STANDARD"
+"08080","+39.755210","-075.201593","SEWELL","NJ","GLOUCESTER","STANDARD"
+"08081","+39.747558","-074.970462","SICKLERVILLE","NJ","CAMDEN","STANDARD"
+"08083","+39.844063","-075.022163","SOMERDALE","NJ","CAMDEN","STANDARD"
+"08084","+39.829763","-075.012012","STRATFORD","NJ","CAMDEN","STANDARD"
+"08085","+39.752740","-075.318049","SWEDESBORO","NJ","GLOUCESTER","STANDARD"
+"08086","+39.838721","-075.248610","THOROFARE","NJ","GLOUCESTER","STANDARD"
+"08087","+39.671687","-074.288092","TUCKERTON","NJ","OCEAN","STANDARD"
+"08088","+39.860351","-074.669346","VINCENTOWN","NJ","BURLINGTON","STANDARD"
+"08089","+39.723037","-074.836939","WATERFORD WORKS","NJ","CAMDEN","STANDARD"
+"08090","+39.798313","-075.148071","WENONAH","NJ","GLOUCESTER","STANDARD"
+"08091","+39.734923","-074.950993","WEST BERLIN","NJ","CAMDEN","STANDARD"
+"08092","+39.656391","-074.295555","WEST CREEK","NJ","OCEAN","STANDARD"
+"08093","+39.857810","-075.137320","WESTVILLE","NJ","GLOUCESTER","STANDARD"
+"08094","+39.725538","-075.058082","WILLIAMSTOWN","NJ","GLOUCESTER","STANDARD"
+"08095","+39.654885","-074.868531","WINSLOW","NJ","CAMDEN","PO BOX ONLY"
+"08096","+39.822013","-075.129669","WOODBURY","NJ","GLOUCESTER","STANDARD"
+"08097","+39.762971","-075.197870","WOODBURY HEIGHTS","NJ","GLOUCESTER","STANDARD"
+"08098","+39.586000","-075.379897","WOODSTOWN","NJ","SALEM","STANDARD"
+"08099","+39.779179","-074.962071","BELLMAWR","NJ","CAMDEN","STANDARD"
+"08101","+39.802370","-074.938259","CAMDEN","NJ","CAMDEN","STANDARD"
+"08102","+39.950912","-075.118869","CAMDEN","NJ","CAMDEN","STANDARD"
+"08103","+39.933174","-075.108519","CAMDEN","NJ","CAMDEN","STANDARD"
+"08104","+39.916612","-075.109169","CAMDEN","NJ","CAMDEN","STANDARD"
+"08105","+39.920162","-075.084667","CAMDEN","NJ","CAMDEN","STANDARD"
+"08106","+39.828349","-074.994647","AUDUBON","NJ","CAMDEN","STANDARD"
+"08107","+39.872001","-075.053114","OAKLYN","NJ","CAMDEN","STANDARD"
+"08108","+39.834003","-074.991268","COLLINGSWOOD","NJ","CAMDEN","STANDARD"
+"08109","+39.950312","-075.059916","MERCHANTVILLE","NJ","CAMDEN","STANDARD"
+"08110","+39.839405","-074.945624","PENNSAUKEN","NJ","CAMDEN","STANDARD"
+"08201","+39.489090","-074.680323","ABSECON","NJ","ATLANTIC","STANDARD"
+"08202","+39.112027","-074.731427","AVALON","NJ","CAPE MAY","STANDARD"
+"08203","+39.370172","-074.494010","BRIGANTINE","NJ","ATLANTIC","STANDARD"
+"08204","+39.110337","-074.767939","CAPE MAY","NJ","CAPE MAY","STANDARD"
+"08205",,,"ABSECON","NJ","ATLANTIC","STANDARD"
+"08210","+39.137841","-074.780560","CAPE MAY COURT HOUSE","NJ","CAPE MAY","STANDARD"
+"08212","+38.937168","-074.965385","CAPE MAY POINT","NJ","CAPE MAY","PO BOX ONLY"
+"08213","+39.509208","-074.608557","COLOGNE","NJ","ATLANTIC","PO BOX ONLY"
+"08214","+39.056521","-074.816619","DENNISVILLE","NJ","CAPE MAY","PO BOX ONLY"
+"08215","+39.530539","-074.638341","EGG HARBOR CITY","NJ","ATLANTIC","STANDARD"
+"08217","+39.573741","-074.719989","ELWOOD","NJ","ATLANTIC","PO BOX ONLY"
+"08218","+39.056521","-074.816619","GOSHEN","NJ","CAPE MAY","PO BOX ONLY"
+"08219","+39.056521","-074.816619","GREEN CREEK","NJ","CAPE MAY","PO BOX ONLY"
+"08220","+39.509208","-074.608557","LEEDS POINT","NJ","ATLANTIC","PO BOX ONLY"
+"08221","+39.427786","-074.622112","LINWOOD","NJ","ATLANTIC","STANDARD"
+"08223","+39.139520","-074.730380","MARMORA","NJ","CAPE MAY","STANDARD"
+"08224","+39.595197","-074.435683","NEW GRETNA","NJ","BURLINGTON","PO BOX ONLY"
+"08225","+39.421922","-074.572227","NORTHFIELD","NJ","ATLANTIC","STANDARD"
+"08226","+39.248530","-074.604409","OCEAN CITY","NJ","CAPE MAY","STANDARD"
+"08230","+39.205183","-074.778293","OCEAN VIEW","NJ","CAPE MAY","STANDARD"
+"08231","+39.509208","-074.608557","OCEANVILLE","NJ","ATLANTIC","PO BOX ONLY"
+"08232","+39.470869","-074.686004","PLEASANTVILLE","NJ","ATLANTIC","STANDARD"
+"08234","+39.374067","-074.611764","EGG HARBOR TOWNSHIP","NJ","ATLANTIC","STANDARD"
+"08240","+39.487717","-074.554334","POMONA","NJ","ATLANTIC","PO BOX ONLY"
+"08241","+39.521785","-074.694414","PORT REPUBLIC","NJ","ATLANTIC","STANDARD"
+"08242","+39.017283","-074.883671","RIO GRANDE","NJ","CAPE MAY","STANDARD"
+"08243","+39.154028","-074.700502","SEA ISLE CITY","NJ","CAPE MAY","STANDARD"
+"08244","+39.425655","-074.664422","SOMERS POINT","NJ","ATLANTIC","STANDARD"
+"08245","+39.099980","-074.848733","SOUTH DENNIS","NJ","CAPE MAY","PO BOX ONLY"
+"08246","+39.056521","-074.816619","SOUTH SEAVILLE","NJ","CAPE MAY","PO BOX ONLY"
+"08247","+39.047882","-074.775050","STONE HARBOR","NJ","CAPE MAY","STANDARD"
+"08248","+39.192018","-074.661977","STRATHMERE","NJ","CAPE MAY","PO BOX ONLY"
+"08250","+39.056521","-074.816619","TUCKAHOE","NJ","CAPE MAY","PO BOX ONLY"
+"08251","+39.140921","-074.851181","VILLAS","NJ","CAPE MAY","STANDARD"
+"08252","+39.042124","-074.861792","WHITESBORO","NJ","CAPE MAY","PO BOX ONLY"
+"08260","+39.067777","-074.776740","WILDWOOD","NJ","CAPE MAY","STANDARD"
+"08270","+39.158165","-074.786886","WOODBINE","NJ","CAPE MAY","STANDARD"
+"08302","+39.376200","-075.161700","BRIDGETON","NJ","CUMBERLAND","STANDARD"
+"08310","+39.523712","-074.899762","BUENA","NJ","ATLANTIC","STANDARD"
+"08311","+39.330611","-075.117761","CEDARVILLE","NJ","CUMBERLAND","STANDARD"
+"08312","+39.653531","-075.078625","CLAYTON","NJ","GLOUCESTER","STANDARD"
+"08313","+39.529261","-075.224865","DEERFIELD STREET","NJ","CUMBERLAND","PO BOX ONLY"
+"08314","+39.358151","-074.977352","DELMONT","NJ","CUMBERLAND","STANDARD"
+"08315","+39.273214","-075.095025","DIVIDING CREEK","NJ","CUMBERLAND","PO BOX ONLY"
+"08316","+39.267898","-074.979118","DORCHESTER","NJ","CUMBERLAND","PO BOX ONLY"
+"08317","+39.425858","-074.826057","DOROTHY","NJ","ATLANTIC","STANDARD"
+"08318","+39.548074","-075.198368","ELMER","NJ","SALEM","STANDARD"
+"08319","+39.376144","-074.805412","ESTELL MANOR","NJ","ATLANTIC","STANDARD"
+"08320","+39.379906","-075.221681","FAIRTON","NJ","CUMBERLAND","PO BOX ONLY"
+"08321","+39.273034","-075.191370","FORTESCUE","NJ","CUMBERLAND","PO BOX ONLY"
+"08322","+39.598230","-075.035749","FRANKLINVILLE","NJ","GLOUCESTER","STANDARD"
+"08323","+39.405498","-075.320881","GREENWICH","NJ","CUMBERLAND","STANDARD"
+"08324","+39.224047","-074.994184","HEISLERVILLE","NJ","CUMBERLAND","STANDARD"
+"08326","+39.533843","-074.934493","LANDISVILLE","NJ","ATLANTIC","STANDARD"
+"08327","+39.387948","-075.007418","LEESBURG","NJ","CUMBERLAND","STANDARD"
+"08328","+39.581010","-075.055482","MALAGA","NJ","GLOUCESTER","STANDARD"
+"08329","+39.285278","-074.998319","MAURICETOWN","NJ","CUMBERLAND","PO BOX ONLY"
+"08330","+39.472040","-074.715880","MAYS LANDING","NJ","ATLANTIC","STANDARD"
+"08332","+39.370401","-075.042820","MILLVILLE","NJ","CUMBERLAND","STANDARD"
+"08340","+39.447855","-074.869885","MILMAY","NJ","ATLANTIC","STANDARD"
+"08341","+39.530779","-074.940036","MINOTOLA","NJ","ATLANTIC","STANDARD"
+"08342","+39.502080","-074.833469","MIZPAH","NJ","ATLANTIC","PO BOX ONLY"
+"08343","+39.641089","-075.144475","MONROEVILLE","NJ","GLOUCESTER","STANDARD"
+"08344","+39.565465","-075.014084","NEWFIELD","NJ","GLOUCESTER","STANDARD"
+"08345","+39.304244","-075.109132","NEWPORT","NJ","CUMBERLAND","STANDARD"
+"08346","+39.557607","-074.870807","NEWTONVILLE","NJ","ATLANTIC","STANDARD"
+"08347","+39.499765","-075.082022","NORMA","NJ","SALEM","PO BOX ONLY"
+"08348","+39.313114","-074.980668","PORT ELIZABETH","NJ","CUMBERLAND","STANDARD"
+"08349","+39.283259","-075.098448","PORT NORRIS","NJ","CUMBERLAND","STANDARD"
+"08350","+39.491351","-074.875543","RICHLAND","NJ","ATLANTIC","STANDARD"
+"08352","+39.469515","-075.146176","ROSENHAYN","NJ","CUMBERLAND","PO BOX ONLY"
+"08353","+39.421650","-075.207667","SHILOH","NJ","CUMBERLAND","PO BOX ONLY"
+"08360","+39.392671","-075.025676","VINELAND","NJ","CUMBERLAND","STANDARD"
+"08361","+39.465465","-074.965279","VINELAND","NJ","CUMBERLAND","STANDARD"
+"08362","+39.271264","-075.027671","VINELAND","NJ","CUMBERLAND","STANDARD"
+"08401","+39.486848","-074.643014","ATLANTIC CITY","NJ","ATLANTIC","STANDARD"
+"08402","+39.442068","-074.666123","MARGATE CITY","NJ","ATLANTIC","STANDARD"
+"08403","+39.324265","-074.513497","LONGPORT","NJ","ATLANTIC","STANDARD"
+"08404","+39.509208","-074.608557","ATLANTIC CITY","NJ","ATLANTIC","STANDARD"
+"08405","+39.509208","-074.608557","ATLANTIC CITY","NJ","ATLANTIC","UNIQUE"
+"08406","+39.414646","-074.664150","VENTNOR CITY","NJ","ATLANTIC","STANDARD"
+"08501","+40.149712","-074.539598","ALLENTOWN","NJ","MONMOUTH","STANDARD"
+"08502","+40.461504","-074.648302","BELLE MEAD","NJ","SOMERSET","STANDARD"
+"08504","+40.425369","-074.668753","BLAWENBURG","NJ","SOMERSET","PO BOX ONLY"
+"08505","+40.101535","-074.724711","BORDENTOWN","NJ","BURLINGTON","STANDARD"
+"08510","+40.193311","-074.442803","CLARKSBURG","NJ","MONMOUTH","STANDARD"
+"08511","+40.049551","-074.557215","COOKSTOWN","NJ","BURLINGTON","STANDARD"
+"08512","+40.323116","-074.516597","CRANBURY","NJ","MIDDLESEX","STANDARD"
+"08514","+40.139913","-074.465018","CREAM RIDGE","NJ","MONMOUTH","STANDARD"
+"08515","+40.147555","-074.661474","CROSSWICKS","NJ","BURLINGTON","STANDARD"
+"08518","+40.124860","-074.738863","FLORENCE","NJ","BURLINGTON","STANDARD"
+"08520","+40.281558","-074.572449","HIGHTSTOWN","NJ","MERCER","STANDARD"
+"08525","+40.389675","-074.783956","HOPEWELL","NJ","MERCER","STANDARD"
+"08526","+40.162275","-074.475936","IMLAYSTOWN","NJ","MONMOUTH","STANDARD"
+"08527","+40.105164","-074.352814","JACKSON","NJ","OCEAN","STANDARD"
+"08528","+40.382756","-074.609551","KINGSTON","NJ","SOMERSET","STANDARD"
+"08530","+40.379360","-074.901535","LAMBERTVILLE","NJ","HUNTERDON","STANDARD"
+"08533","+40.082940","-074.498741","NEW EGYPT","NJ","OCEAN","STANDARD"
+"08534","+40.328630","-074.813557","PENNINGTON","NJ","MERCER","STANDARD"
+"08535","+40.225860","-074.452293","PERRINEVILLE","NJ","MONMOUTH","STANDARD"
+"08536","+40.342197","-074.582062","PLAINSBORO","NJ","MIDDLESEX","STANDARD"
+"08540","+40.343625","-074.693953","PRINCETON","NJ","MERCER","STANDARD"
+"08541","+40.280531","-074.712018","PRINCETON","NJ","MERCER","UNIQUE"
+"08542","+40.350456","-074.658852","PRINCETON","NJ","MERCER","STANDARD"
+"08543","+40.280531","-074.712018","PRINCETON","NJ","MERCER","STANDARD"
+"08544","+40.349206","-074.652811","PRINCETON","NJ","MERCER","UNIQUE"
+"08550","+40.266858","-074.651101","PRINCETON JUNCTION","NJ","MERCER","STANDARD"
+"08551","+40.445602","-074.840322","RINGOES","NJ","HUNTERDON","STANDARD"
+"08553","+40.412705","-074.632256","ROCKY HILL","NJ","SOMERSET","STANDARD"
+"08554","+40.071829","-074.711814","ROEBLING","NJ","BURLINGTON","STANDARD"
+"08555","+40.221360","-074.474745","ROOSEVELT","NJ","MONMOUTH","PO BOX ONLY"
+"08556","+40.419965","-074.988619","ROSEMONT","NJ","HUNTERDON","STANDARD"
+"08557","+40.563654","-074.949409","SERGEANTSVILLE","NJ","HUNTERDON","PO BOX ONLY"
+"08558","+40.434255","-074.708525","SKILLMAN","NJ","SOMERSET","STANDARD"
+"08559","+40.436413","-074.970597","STOCKTON","NJ","HUNTERDON","STANDARD"
+"08560","+40.311826","-074.863858","TITUSVILLE","NJ","MERCER","STANDARD"
+"08561","+40.242313","-074.578709","WINDSOR","NJ","MERCER","PO BOX ONLY"
+"08562","+40.075100","-074.608402","WRIGHTSTOWN","NJ","BURLINGTON","STANDARD"
+"08570","+40.430006","-074.417344","CRANBURY","NJ","MIDDLESEX","UNIQUE"
+"08601","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08602","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08603","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08604","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08605","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08606","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08607","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08608","+40.220108","-074.764055","TRENTON","NJ","MERCER","STANDARD"
+"08609","+40.224808","-074.741004","TRENTON","NJ","MERCER","STANDARD"
+"08610","+40.201609","-074.704953","TRENTON","NJ","MERCER","STANDARD"
+"08611","+40.196658","-074.741554","TRENTON","NJ","MERCER","STANDARD"
+"08618","+40.223608","-074.732504","TRENTON","NJ","MERCER","STANDARD"
+"08619","+40.241808","-074.696151","TRENTON","NJ","MERCER","STANDARD"
+"08620","+40.194664","-074.639852","TRENTON","NJ","MERCER","STANDARD"
+"08625","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08628","+40.265457","-074.816757","TRENTON","NJ","MERCER","STANDARD"
+"08629","+40.219558","-074.733404","TRENTON","NJ","MERCER","STANDARD"
+"08638","+40.232908","-074.716954","TRENTON","NJ","MERCER","STANDARD"
+"08640","+40.009789","-074.605198","TRENTON","NJ","BURLINGTON","STANDARD"
+"08641","+39.968787","-074.624050","TRENTON","NJ","BURLINGTON","STANDARD"
+"08645","+40.280531","-074.712018","TRENTON","NJ","MERCER","UNIQUE"
+"08646","+40.280531","-074.712018","TRENTON","NJ","MERCER","UNIQUE"
+"08647","+40.280531","-074.712018","TRENTON","NJ","MERCER","UNIQUE"
+"08648","+40.279457","-074.691180","TRENTON","NJ","MERCER","STANDARD"
+"08650","+40.280531","-074.712018","TRENTON","NJ","MERCER","STANDARD"
+"08666","+40.280531","-074.712018","TRENTON","NJ","MERCER","UNIQUE"
+"08677","+40.280531","-074.712018","TRENTON","NJ","MERCER","UNIQUE"
+"08690","+40.233577","-074.657602","TRENTON","NJ","MERCER","STANDARD"
+"08691","+40.219738","-074.593949","TRENTON","NJ","MERCER","STANDARD"
+"08695","+40.280531","-074.712018","TRENTON","NJ","MERCER","UNIQUE"
+"08701","+39.945170","-074.149784","LAKEWOOD","NJ","OCEAN","STANDARD"
+"08720","+40.138878","-074.112210","ALLENWOOD","NJ","MONMOUTH","PO BOX ONLY"
+"08721","+39.966604","-074.300023","BAYVILLE","NJ","OCEAN","STANDARD"
+"08722","+39.927521","-074.198585","BEACHWOOD","NJ","OCEAN","STANDARD"
+"08723","+39.940021","-074.122989","BRICK","NJ","OCEAN","STANDARD"
+"08724","+39.938047","-074.171090","BRICK","NJ","OCEAN","STANDARD"
+"08730","+40.107614","-074.065081","BRIELLE","NJ","MONMOUTH","STANDARD"
+"08731","+39.876031","-074.230522","FORKED RIVER","NJ","OCEAN","STANDARD"
+"08732","+39.983267","-074.128482","ISLAND HEIGHTS","NJ","OCEAN","PO BOX ONLY"
+"08733","+39.992317","-074.282240","LAKEHURST","NJ","OCEAN","STANDARD"
+"08734","+39.863489","-074.168217","LANOKA HARBOR","NJ","OCEAN","STANDARD"
+"08735","+39.980917","-074.072030","LAVALLETTE","NJ","OCEAN","STANDARD"
+"08736","+40.121514","-074.069963","MANASQUAN","NJ","MONMOUTH","STANDARD"
+"08738","+40.029916","-074.056880","MANTOLOKING","NJ","OCEAN","STANDARD"
+"08739","+40.000759","-074.249280","NORMANDY BEACH","NJ","OCEAN","PO BOX ONLY"
+"08740","+39.926628","-074.133332","OCEAN GATE","NJ","OCEAN","PO BOX ONLY"
+"08741","+40.003246","-074.109626","PINE BEACH","NJ","OCEAN","STANDARD"
+"08742","+39.954807","-074.157056","POINT PLEASANT BEACH","NJ","OCEAN","STANDARD"
+"08750","+40.161392","-074.043772","SEA GIRT","NJ","MONMOUTH","STANDARD"
+"08751","+39.945991","-074.181649","SEASIDE HEIGHTS","NJ","OCEAN","STANDARD"
+"08752","+39.805832","-074.145694","SEASIDE PARK","NJ","OCEAN","STANDARD"
+"08753","+39.958851","-074.215336","TOMS RIVER","NJ","OCEAN","STANDARD"
+"08754","+40.000759","-074.249280","TOMS RIVER","NJ","OCEAN","STANDARD"
+"08755","+40.000696","-074.256821","TOMS RIVER","NJ","OCEAN","STANDARD"
+"08756","+39.787966","-074.191058","TOMS RIVER","NJ","OCEAN","STANDARD"
+"08757","+39.943064","-074.264068","TOMS RIVER","NJ","OCEAN","STANDARD"
+"08758","+39.787943","-074.246662","WARETOWN","NJ","OCEAN","STANDARD"
+"08759","+39.945798","-074.297820","MANCHESTER TOWNSHIP","NJ","OCEAN","STANDARD"
+"08801","+40.631008","-074.890685","ANNANDALE","NJ","HUNTERDON","STANDARD"
+"08802","+40.695034","-075.028089","ASBURY","NJ","WARREN","STANDARD"
+"08803","+40.563654","-074.949409","BAPTISTOWN","NJ","HUNTERDON","PO BOX ONLY"
+"08804","+40.646294","-075.092934","BLOOMSBURY","NJ","HUNTERDON","STANDARD"
+"08805","+40.575402","-074.538249","BOUND BROOK","NJ","SOMERSET","STANDARD"
+"08807","+40.598702","-074.607518","BRIDGEWATER","NJ","SOMERSET","STANDARD"
+"08808","+40.737213","-075.046926","BROADWAY","NJ","WARREN","PO BOX ONLY"
+"08809","+40.530500","-074.845574","CLINTON","NJ","HUNTERDON","STANDARD"
+"08810","+40.372306","-074.494889","DAYTON","NJ","MIDDLESEX","STANDARD"
+"08812","+40.589702","-074.463947","DUNELLEN","NJ","MIDDLESEX","STANDARD"
+"08816","+40.427697","-074.421695","EAST BRUNSWICK","NJ","MIDDLESEX","STANDARD"
+"08817","+40.519753","-074.393444","EDISON","NJ","MIDDLESEX","STANDARD"
+"08818","+40.430006","-074.417344","EDISON","NJ","MIDDLESEX","STANDARD"
+"08820","+40.576611","-074.362616","EDISON","NJ","MIDDLESEX","STANDARD"
+"08821","+40.566553","-074.599801","FLAGTOWN","NJ","SOMERSET","PO BOX ONLY"
+"08822","+40.507860","-074.863283","FLEMINGTON","NJ","HUNTERDON","STANDARD"
+"08823","+40.440604","-074.560249","FRANKLIN PARK","NJ","SOMERSET","STANDARD"
+"08824","+40.422955","-074.549761","KENDALL PARK","NJ","MIDDLESEX","STANDARD"
+"08825","+40.581190","-075.012655","FRENCHTOWN","NJ","HUNTERDON","STANDARD"
+"08826","+40.578191","-074.904575","GLEN GARDNER","NJ","HUNTERDON","STANDARD"
+"08827","+40.666700","-074.964692","HAMPTON","NJ","HUNTERDON","STANDARD"
+"08828","+40.375540","-074.421644","HELMETTA","NJ","MIDDLESEX","STANDARD"
+"08829","+40.668163","-074.889823","HIGH BRIDGE","NJ","HUNTERDON","STANDARD"
+"08830","+40.569211","-074.315042","ISELIN","NJ","MIDDLESEX","STANDARD"
+"08831","+40.343757","-074.428870","MONROE TOWNSHIP","NJ","MIDDLESEX","STANDARD"
+"08832","+40.517559","-074.306961","KEASBEY","NJ","MIDDLESEX","STANDARD"
+"08833","+40.635369","-074.829976","LEBANON","NJ","HUNTERDON","STANDARD"
+"08834","+40.563654","-074.949409","LITTLE YORK","NJ","HUNTERDON","PO BOX ONLY"
+"08835","+40.541053","-074.589225","MANVILLE","NJ","SOMERSET","STANDARD"
+"08836","+40.604352","-074.553800","MARTINSVILLE","NJ","SOMERSET","STANDARD"
+"08837","+40.527054","-074.350393","EDISON","NJ","MIDDLESEX","STANDARD"
+"08840","+40.472224","-074.451940","METUCHEN","NJ","MIDDLESEX","STANDARD"
+"08844",,,"HILLSBOROUGH","NJ","SOMERSET","STANDARD"
+"08846","+40.575202","-074.499398","MIDDLESEX","NJ","MIDDLESEX","STANDARD"
+"08848","+40.664749","-074.970542","MILFORD","NJ","HUNTERDON","STANDARD"
+"08850","+40.448255","-074.444395","MILLTOWN","NJ","MIDDLESEX","STANDARD"
+"08852","+40.386942","-074.555799","MONMOUTH JUNCTION","NJ","MIDDLESEX","STANDARD"
+"08853","+40.492604","-074.726555","NESHANIC STATION","NJ","SOMERSET","STANDARD"
+"08854","+40.552925","-074.457746","PISCATAWAY","NJ","MIDDLESEX","STANDARD"
+"08855","+40.430006","-074.417344","PISCATAWAY","NJ","MIDDLESEX","STANDARD"
+"08857","+40.407319","-074.314319","OLD BRIDGE","NJ","MIDDLESEX","STANDARD"
+"08858","+40.691798","-074.752537","OLDWICK","NJ","HUNTERDON","PO BOX ONLY"
+"08859","+40.459205","-074.306956","PARLIN","NJ","MIDDLESEX","STANDARD"
+"08861","+40.520654","-074.279144","PERTH AMBOY","NJ","MIDDLESEX","STANDARD"
+"08862","+40.430006","-074.417344","PERTH AMBOY","NJ","MIDDLESEX","STANDARD"
+"08863","+40.531390","-074.315250","FORDS","NJ","MIDDLESEX","STANDARD"
+"08865","+40.765309","-074.987430","PHILLIPSBURG","NJ","WARREN","STANDARD"
+"08867","+40.585926","-074.976982","PITTSTOWN","NJ","HUNTERDON","STANDARD"
+"08868","+40.565493","-074.938931","QUAKERTOWN","NJ","HUNTERDON","PO BOX ONLY"
+"08869","+40.573802","-074.642649","RARITAN","NJ","SOMERSET","STANDARD"
+"08870","+40.563654","-074.949409","READINGTON","NJ","HUNTERDON","PO BOX ONLY"
+"08871","+40.430006","-074.417344","SAYREVILLE","NJ","MIDDLESEX","STANDARD"
+"08872","+40.453358","-074.334192","SAYREVILLE","NJ","MIDDLESEX","STANDARD"
+"08873","+40.491002","-074.523648","SOMERSET","NJ","SOMERSET","STANDARD"
+"08875","+40.580918","-074.711731","SOMERSET","NJ","SOMERSET","STANDARD"
+"08876","+40.560314","-074.661650","SOMERVILLE","NJ","SOMERSET","STANDARD"
+"08877","+40.430006","-074.417344","SOUTH RIVER","NJ","MIDDLESEX","UNIQUE"
+"08878","+40.436865","-074.250942","SOUTH AMBOY","NJ","MIDDLESEX","UNIQUE"
+"08879","+40.463970","-074.274168","SOUTH AMBOY","NJ","MIDDLESEX","STANDARD"
+"08880","+40.552253","-074.531149","SOUTH BOUND BROOK","NJ","SOMERSET","STANDARD"
+"08882","+40.445905","-074.381768","SOUTH RIVER","NJ","MIDDLESEX","STANDARD"
+"08884","+40.385707","-074.393249","SPOTSWOOD","NJ","MIDDLESEX","STANDARD"
+"08885","+40.576372","-074.831105","STANTON","NJ","HUNTERDON","PO BOX ONLY"
+"08886","+40.717349","-075.072957","STEWARTSVILLE","NJ","WARREN","STANDARD"
+"08887","+40.520570","-074.794632","THREE BRIDGES","NJ","HUNTERDON","STANDARD"
+"08888","+40.619412","-074.740597","WHITEHOUSE","NJ","HUNTERDON","PO BOX ONLY"
+"08889","+40.615577","-074.772376","WHITEHOUSE STATION","NJ","HUNTERDON","STANDARD"
+"08890","+40.536069","-074.578872","ZAREPHATH","NJ","SOMERSET","STANDARD"
+"08896","+40.566553","-074.599801","RARITAN","NJ","SOMERSET","UNIQUE"
+"08899","+40.520254","-074.420545","EDISON","NJ","MIDDLESEX","STANDARD"
+"08901","+40.486754","-074.444395","NEW BRUNSWICK","NJ","MIDDLESEX","STANDARD"
+"08902","+40.437705","-074.488547","NORTH BRUNSWICK","NJ","MIDDLESEX","STANDARD"
+"08903","+40.513854","-074.445098","NEW BRUNSWICK","NJ","MIDDLESEX","STANDARD"
+"08904","+40.499866","-074.428095","HIGHLAND PARK","NJ","MIDDLESEX","STANDARD"
+"08905","+40.430006","-074.417344","NEW BRUNSWICK","NJ","MIDDLESEX","UNIQUE"
+"08906","+40.430006","-074.417344","NEW BRUNSWICK","NJ","MIDDLESEX","STANDARD"
+"08922","+40.430006","-074.417344","NEW BRUNSWICK","NJ","MIDDLESEX","UNIQUE"
+"08933","+40.430006","-074.417344","NEW BRUNSWICK","NJ","MIDDLESEX","UNIQUE"
+"08988","+40.430006","-074.417344","NEW BRUNSWICK","NJ","MIDDLESEX","UNIQUE"
+"08989","+40.430006","-074.417344","NEW BRUNSWICK","NJ","MIDDLESEX","UNIQUE"
+"10001","+40.750422","-073.996328","NEW YORK","NY","NEW YORK","STANDARD"
+"10002","+40.718758","-073.986427","NEW YORK","NY","NEW YORK","STANDARD"
+"10003","+40.730223","-073.988564","NEW YORK","NY","NEW YORK","STANDARD"
+"10004","+40.696355","-074.025276","NEW YORK","NY","NEW YORK","STANDARD"
+"10005","+40.706903","-074.008654","NEW YORK","NY","NEW YORK","STANDARD"
+"10006","+40.708834","-074.013168","NEW YORK","NY","NEW YORK","STANDARD"
+"10007","+40.713941","-074.007401","NEW YORK","NY","NEW YORK","STANDARD"
+"10008","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10009","+40.727750","-073.980396","NEW YORK","NY","NEW YORK","STANDARD"
+"10010","+40.739024","-073.983542","NEW YORK","NY","NEW YORK","STANDARD"
+"10011","+40.740916","-073.999769","NEW YORK","NY","NEW YORK","STANDARD"
+"10012","+40.729124","-073.991582","NEW YORK","NY","NEW YORK","STANDARD"
+"10013","+40.722105","-074.003497","NEW YORK","NY","NEW YORK","STANDARD"
+"10014","+40.738088","-074.005095","NEW YORK","NY","NEW YORK","STANDARD"
+"10015","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10016","+40.745527","-073.978449","NEW YORK","NY","NEW YORK","STANDARD"
+"10017","+40.752955","-073.973196","NEW YORK","NY","NEW YORK","STANDARD"
+"10018","+40.755332","-073.993172","NEW YORK","NY","NEW YORK","STANDARD"
+"10019","+40.765926","-073.985443","NEW YORK","NY","NEW YORK","STANDARD"
+"10020","+40.735449","-073.996788","NEW YORK","NY","NEW YORK","STANDARD"
+"10021","+40.768823","-073.960257","NEW YORK","NY","NEW YORK","STANDARD"
+"10022","+40.758775","-073.967842","NEW YORK","NY","NEW YORK","STANDARD"
+"10023","+40.776765","-073.982213","NEW YORK","NY","NEW YORK","STANDARD"
+"10024","+40.808130","-073.965653","NEW YORK","NY","NEW YORK","STANDARD"
+"10025","+40.798664","-073.967778","NEW YORK","NY","NEW YORK","STANDARD"
+"10026","+40.802918","-073.953107","NEW YORK","NY","NEW YORK","STANDARD"
+"10027","+40.812242","-073.953200","NEW YORK","NY","NEW YORK","STANDARD"
+"10028","+40.776629","-073.953914","NEW YORK","NY","NEW YORK","STANDARD"
+"10029","+40.791884","-073.943517","NEW YORK","NY","NEW YORK","STANDARD"
+"10030","+40.818474","-073.943290","NEW YORK","NY","NEW YORK","STANDARD"
+"10031","+40.823438","-073.949039","NEW YORK","NY","NEW YORK","STANDARD"
+"10032","+40.839137","-073.942181","NEW YORK","NY","NEW YORK","STANDARD"
+"10033","+40.851293","-073.934764","NEW YORK","NY","NEW YORK","STANDARD"
+"10034","+40.863194","-073.926959","NEW YORK","NY","NEW YORK","STANDARD"
+"10035","+40.801913","-073.934700","NEW YORK","NY","NEW YORK","STANDARD"
+"10036","+40.759530","-073.989847","NEW YORK","NY","NEW YORK","STANDARD"
+"10037","+40.813884","-073.938498","NEW YORK","NY","NEW YORK","STANDARD"
+"10038","+40.710223","-074.003368","NEW YORK","NY","NEW YORK","STANDARD"
+"10039","+40.826736","-073.939398","NEW YORK","NY","NEW YORK","STANDARD"
+"10040","+40.858692","-073.930999","NEW YORK","NY","NEW YORK","STANDARD"
+"10041","+40.703801","-074.009814","NEW YORK","NY","NEW YORK","STANDARD"
+"10043","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10044","+40.761812","-073.950521","NEW YORK","NY","NEW YORK","STANDARD"
+"10045","+40.708590","-074.008687","NEW YORK","NY","NEW YORK","STANDARD"
+"10046","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10047","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10048","+40.712540","-074.013289","NEW YORK","NY","NEW YORK","STANDARD"
+"10055","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10060","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10069","+40.777952","-073.988381","NEW YORK","NY","NEW YORK","STANDARD"
+"10072","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10079","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10080","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10081","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10082","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10087","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10090","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10094","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10095","+40.748181","-073.988421","NEW YORK","NY","NEW YORK","STANDARD"
+"10096","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10098","+40.748181","-073.988421","NEW YORK","NY","NEW YORK","STANDARD"
+"10099","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10101","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10102","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10103","+40.760264","-073.976240","NEW YORK","NY","NEW YORK","STANDARD"
+"10104","+40.760943","-073.979908","NEW YORK","NY","NEW YORK","STANDARD"
+"10105","+40.762808","-073.978534","NEW YORK","NY","NEW YORK","STANDARD"
+"10106","+40.765243","-073.980438","NEW YORK","NY","NEW YORK","STANDARD"
+"10107","+40.766429","-073.982728","NEW YORK","NY","NEW YORK","STANDARD"
+"10108","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10109","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10110","+40.753987","-073.980811","NEW YORK","NY","NEW YORK","STANDARD"
+"10111","+40.759224","-073.977762","NEW YORK","NY","NEW YORK","STANDARD"
+"10112","+40.759287","-073.979808","NEW YORK","NY","NEW YORK","STANDARD"
+"10113","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10114","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10115","+40.811115","-073.964230","NEW YORK","NY","NEW YORK","STANDARD"
+"10116","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10117","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10118","+40.748998","-073.986467","NEW YORK","NY","NEW YORK","STANDARD"
+"10119","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10120","+40.750629","-073.989426","NEW YORK","NY","NEW YORK","STANDARD"
+"10121","+40.749640","-073.991889","NEW YORK","NY","NEW YORK","STANDARD"
+"10122","+40.751757","-073.992171","NEW YORK","NY","NEW YORK","STANDARD"
+"10123","+40.751489","-073.990537","NEW YORK","NY","NEW YORK","STANDARD"
+"10124","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10125","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10126","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10128","+40.780989","-073.951580","NEW YORK","NY","NEW YORK","STANDARD"
+"10129","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10130","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10131","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10132","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10133","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10138","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10149","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10150","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10151","+40.763419","-073.973971","NEW YORK","NY","NEW YORK","STANDARD"
+"10152","+40.758937","-073.973020","NEW YORK","NY","NEW YORK","STANDARD"
+"10153","+40.764068","-073.973480","NEW YORK","NY","NEW YORK","STANDARD"
+"10154","+40.758304","-073.973468","NEW YORK","NY","NEW YORK","STANDARD"
+"10155","+40.761104","-073.968036","NEW YORK","NY","NEW YORK","STANDARD"
+"10156","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10157","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10158","+40.749435","-073.975800","NEW YORK","NY","NEW YORK","STANDARD"
+"10159","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10160","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10161","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10162","+40.769945","-073.951117","NEW YORK","NY","NEW YORK","STANDARD"
+"10163","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10164","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10165","+40.752351","-073.979132","NEW YORK","NY","NEW YORK","STANDARD"
+"10166","+40.754591","-073.976238","NEW YORK","NY","NEW YORK","STANDARD"
+"10167","+40.754858","-073.974970","NEW YORK","NY","NEW YORK","STANDARD"
+"10168","+40.751933","-073.976794","NEW YORK","NY","NEW YORK","STANDARD"
+"10169","+40.754740","-073.976595","NEW YORK","NY","NEW YORK","STANDARD"
+"10170","+40.752621","-073.975480","NEW YORK","NY","NEW YORK","STANDARD"
+"10171","+40.756447","-073.974821","NEW YORK","NY","NEW YORK","STANDARD"
+"10172","+40.755839","-073.975279","NEW YORK","NY","NEW YORK","STANDARD"
+"10173","+40.754305","-073.979564","NEW YORK","NY","NEW YORK","STANDARD"
+"10174","+40.751656","-073.975160","NEW YORK","NY","NEW YORK","STANDARD"
+"10175","+40.754305","-073.979782","NEW YORK","NY","NEW YORK","STANDARD"
+"10176","+40.755570","-073.978877","NEW YORK","NY","NEW YORK","STANDARD"
+"10177","+40.755332","-073.976082","NEW YORK","NY","NEW YORK","STANDARD"
+"10178","+40.751378","-073.978507","NEW YORK","NY","NEW YORK","STANDARD"
+"10179","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10184","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10185","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10196","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10197","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10199","+40.750308","-074.000580","NEW YORK","NY","NEW YORK","STANDARD"
+"10203","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10211","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10212","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10213","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10242","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10249","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10256","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10257","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10258","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10259","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10260","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10261","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10265","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10268","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10269","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10270","+40.706925","-074.008154","NEW YORK","NY","NEW YORK","STANDARD"
+"10271","+40.708918","-074.011066","NEW YORK","NY","NEW YORK","STANDARD"
+"10272","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10273","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10274","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10275","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10276","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10277","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10278","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","STANDARD"
+"10279","+40.712697","-074.007812","NEW YORK","NY","NEW YORK","STANDARD"
+"10280","+40.708857","-074.016217","NEW YORK","NY","NEW YORK","STANDARD"
+"10281","+40.714643","-074.014958","NEW YORK","NY","NEW YORK","STANDARD"
+"10282","+40.716597","-074.014590","NEW YORK","NY","NEW YORK","STANDARD"
+"10285","+40.715330","-074.016306","NEW YORK","NY","NEW YORK","UNIQUE"
+"10286","+40.714231","-074.011895","NEW YORK","NY","NEW YORK","UNIQUE"
+"10292","+40.780751","-073.977182","NEW YORK","NY","NEW YORK","UNIQUE"
+"10301","+40.623632","-074.093323","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10302","+40.628923","-074.137947","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10303","+40.631697","-074.165016","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10304","+40.608389","-074.093684","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10305","+40.596828","-074.077837","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10306","+40.559668","-074.122410","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10307","+40.510723","-074.241940","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10308","+40.551191","-074.148893","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10309","+40.531767","-074.218779","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10310","+40.632943","-074.118669","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10311","+40.605245","-074.179485","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10312","+40.545163","-074.174692","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10313","+40.564393","-074.146836","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10314","+40.591006","-074.150741","STATEN ISLAND","NY","RICHMOND","STANDARD"
+"10451","+40.819329","-073.920355","BRONX","NY","BRONX","STANDARD"
+"10452","+40.838729","-073.921605","BRONX","NY","BRONX","STANDARD"
+"10453","+40.852728","-073.912455","BRONX","NY","BRONX","STANDARD"
+"10454","+40.807129","-073.918405","BRONX","NY","BRONX","STANDARD"
+"10455","+40.815029","-073.908355","BRONX","NY","BRONX","STANDARD"
+"10456","+40.830529","-073.908655","BRONX","NY","BRONX","STANDARD"
+"10457","+40.846129","-073.898255","BRONX","NY","BRONX","STANDARD"
+"10458","+40.864728","-073.889855","BRONX","NY","BRONX","STANDARD"
+"10459","+40.825629","-073.893605","BRONX","NY","BRONX","STANDARD"
+"10460","+40.841829","-073.879004","BRONX","NY","BRONX","STANDARD"
+"10461","+40.845279","-073.843103","BRONX","NY","BRONX","STANDARD"
+"10462","+40.842729","-073.854703","BRONX","NY","BRONX","STANDARD"
+"10463","+40.879528","-073.904355","BRONX","NY","BRONX","STANDARD"
+"10464","+40.863028","-073.799802","BRONX","NY","BRONX","STANDARD"
+"10465","+40.826879","-073.825153","BRONX","NY","BRONX","STANDARD"
+"10466","+40.859878","-073.841003","BRONX","NY","BRONX","STANDARD"
+"10467","+40.876328","-073.870404","BRONX","NY","BRONX","STANDARD"
+"10468","+40.870978","-073.900505","BRONX","NY","BRONX","STANDARD"
+"10469","+40.869978","-073.844903","BRONX","NY","BRONX","STANDARD"
+"10470","+40.871430","-073.862303","BRONX","NY","BRONX","STANDARD"
+"10471","+40.899178","-073.898677","BRONX","NY","BRONX","STANDARD"
+"10472","+40.829529","-073.865704","BRONX","NY","BRONX","STANDARD"
+"10473","+40.816229","-073.860304","BRONX","NY","BRONX","STANDARD"
+"10474","+40.813929","-073.884104","BRONX","NY","BRONX","STANDARD"
+"10475","+40.874878","-073.827653","BRONX","NY","BRONX","STANDARD"
+"10499","+40.851549","-073.840908","BRONX","NY","BRONX","UNIQUE"
+"10501","+41.293169","-073.759033","AMAWALK","NY","WESTCHESTER","STANDARD"
+"10502","+41.015096","-073.841478","ARDSLEY","NY","WESTCHESTER","STANDARD"
+"10503","+41.025947","-073.871850","ARDSLEY ON HUDSON","NY","WESTCHESTER","PO BOX ONLY"
+"10504","+41.075185","-073.761247","ARMONK","NY","WESTCHESTER","STANDARD"
+"10505","+41.334310","-073.749244","BALDWIN PLACE","NY","WESTCHESTER","STANDARD"
+"10506","+41.123741","-073.718481","BEDFORD","NY","WESTCHESTER","STANDARD"
+"10507","+41.229037","-073.697998","BEDFORD HILLS","NY","WESTCHESTER","STANDARD"
+"10509","+41.415979","-073.725197","BREWSTER","NY","PUTNAM","STANDARD"
+"10510","+41.059780","-073.829802","BRIARCLIFF MANOR","NY","WESTCHESTER","STANDARD"
+"10511","+41.259961","-073.943495","BUCHANAN","NY","WESTCHESTER","STANDARD"
+"10512","+41.429571","-073.777626","CARMEL","NY","PUTNAM","STANDARD"
+"10514","+41.078957","-073.775547","CHAPPAQUA","NY","WESTCHESTER","STANDARD"
+"10516","+41.455213","-073.812479","COLD SPRING","NY","PUTNAM","STANDARD"
+"10517","+41.300561","-073.861217","CROMPOND","NY","WESTCHESTER","PO BOX ONLY"
+"10518","+41.269896","-073.612074","CROSS RIVER","NY","WESTCHESTER","STANDARD"
+"10519","+41.347727","-073.661014","CROTON FALLS","NY","WESTCHESTER","PO BOX ONLY"
+"10520","+41.122622","-073.867258","CROTON ON HUDSON","NY","WESTCHESTER","STANDARD"
+"10521","+41.234256","-073.926165","CROTON ON HUDSON","NY","WESTCHESTER","STANDARD"
+"10522","+41.011147","-073.865178","DOBBS FERRY","NY","WESTCHESTER","STANDARD"
+"10523","+41.058732","-073.836784","ELMSFORD","NY","WESTCHESTER","STANDARD"
+"10524","+41.375016","-073.931844","GARRISON","NY","PUTNAM","STANDARD"
+"10526","+41.300361","-073.647891","GOLDENS BRIDGE","NY","WESTCHESTER","STANDARD"
+"10527","+41.323246","-073.757911","GRANITE SPRINGS","NY","WESTCHESTER","STANDARD"
+"10528","+40.979118","-073.723036","HARRISON","NY","WESTCHESTER","STANDARD"
+"10530","+41.019105","-073.812077","HARTSDALE","NY","WESTCHESTER","STANDARD"
+"10532","+41.013742","-073.835421","HAWTHORNE","NY","WESTCHESTER","STANDARD"
+"10533","+41.079553","-073.856051","IRVINGTON","NY","WESTCHESTER","STANDARD"
+"10535","+41.338568","-073.735548","JEFFERSON VALLEY","NY","WESTCHESTER","STANDARD"
+"10536","+41.271614","-073.687334","KATONAH","NY","WESTCHESTER","STANDARD"
+"10537","+41.394819","-073.718016","LAKE PEEKSKILL","NY","PUTNAM","STANDARD"
+"10538","+41.090197","-073.755284","LARCHMONT","NY","WESTCHESTER","STANDARD"
+"10540","+41.333398","-073.724257","LINCOLNDALE","NY","WESTCHESTER","PO BOX ONLY"
+"10541","+41.412395","-073.752059","MAHOPAC","NY","PUTNAM","STANDARD"
+"10542","+41.372581","-073.760132","MAHOPAC FALLS","NY","PUTNAM","PO BOX ONLY"
+"10543","+40.949199","-073.738779","MAMARONECK","NY","WESTCHESTER","STANDARD"
+"10545","+41.119008","-073.732996","MARYKNOLL","NY","WESTCHESTER","PO BOX ONLY"
+"10546","+41.201373","-073.796456","MILLWOOD","NY","WESTCHESTER","STANDARD"
+"10547","+41.281975","-073.797555","MOHEGAN LAKE","NY","WESTCHESTER","STANDARD"
+"10548","+41.251260","-073.942877","MONTROSE","NY","WESTCHESTER","STANDARD"
+"10549","+41.197329","-073.722860","MOUNT KISCO","NY","WESTCHESTER","STANDARD"
+"10550","+40.909838","-073.833890","MOUNT VERNON","NY","WESTCHESTER","STANDARD"
+"10551","+41.119008","-073.732996","MOUNT VERNON","NY","WESTCHESTER","STANDARD"
+"10552","+41.011586","-073.798391","MOUNT VERNON","NY","WESTCHESTER","STANDARD"
+"10553","+40.909449","-073.822109","MOUNT VERNON","NY","WESTCHESTER","STANDARD"
+"10557","+41.119008","-073.732996","MOUNT VERNON","NY","WESTCHESTER","UNIQUE"
+"10558","+41.119008","-073.732996","MOUNT VERNON","NY","WESTCHESTER","UNIQUE"
+"10559","+41.119008","-073.732996","MOUNT VERNON","NY","WESTCHESTER","UNIQUE"
+"10560","+41.331814","-073.608451","NORTH SALEM","NY","WESTCHESTER","STANDARD"
+"10562","+41.109701","-073.827995","OSSINING","NY","WESTCHESTER","STANDARD"
+"10566","+41.283830","-073.893116","PEEKSKILL","NY","WESTCHESTER","STANDARD"
+"10567","+41.284044","-073.893116","CORTLANDT MANOR","NY","WESTCHESTER","STANDARD"
+"10570","+41.131069","-073.792214","PLEASANTVILLE","NY","WESTCHESTER","STANDARD"
+"10571","+41.119008","-073.732996","PLEASANTVILLE","NY","WESTCHESTER","UNIQUE"
+"10572","+41.119008","-073.732996","PLEASANTVILLE","NY","WESTCHESTER","UNIQUE"
+"10573","+41.022193","-073.679799","PORT CHESTER","NY","WESTCHESTER","STANDARD"
+"10576","+41.208519","-073.568126","POUND RIDGE","NY","WESTCHESTER","STANDARD"
+"10577","+41.002757","-073.751025","PURCHASE","NY","WESTCHESTER","STANDARD"
+"10578","+41.315779","-073.645145","PURDYS","NY","WESTCHESTER","STANDARD"
+"10579","+41.399262","-073.776871","PUTNAM VALLEY","NY","PUTNAM","STANDARD"
+"10580","+40.955237","-073.744725","RYE","NY","WESTCHESTER","STANDARD"
+"10581","+41.119008","-073.732996","RYE","NY","WESTCHESTER","UNIQUE"
+"10583","+40.992686","-073.799476","SCARSDALE","NY","WESTCHESTER","STANDARD"
+"10587","+41.328737","-073.742268","SHENOROCK","NY","WESTCHESTER","PO BOX ONLY"
+"10588","+41.330892","-073.823549","SHRUB OAK","NY","WESTCHESTER","STANDARD"
+"10589","+41.326544","-073.693685","SOMERS","NY","WESTCHESTER","STANDARD"
+"10590","+41.254331","-073.542714","SOUTH SALEM","NY","WESTCHESTER","STANDARD"
+"10591","+41.089703","-073.844034","TARRYTOWN","NY","WESTCHESTER","STANDARD"
+"10592","+41.119008","-073.732996","TARRYTOWN","NY","WESTCHESTER","UNIQUE"
+"10594","+41.117214","-073.771469","THORNWOOD","NY","WESTCHESTER","STANDARD"
+"10595","+41.090218","-073.784768","VALHALLA","NY","WESTCHESTER","STANDARD"
+"10596","+41.254823","-073.958727","VERPLANCK","NY","WESTCHESTER","PO BOX ONLY"
+"10597","+41.297198","-073.597979","WACCABUC","NY","WESTCHESTER","STANDARD"
+"10598","+41.287329","-073.790284","YORKTOWN HEIGHTS","NY","WESTCHESTER","STANDARD"
+"10601","+41.031397","-073.769626","WHITE PLAINS","NY","WESTCHESTER","STANDARD"
+"10602","+41.119008","-073.732996","WHITE PLAINS","NY","WESTCHESTER","STANDARD"
+"10603","+41.048958","-073.783036","WHITE PLAINS","NY","WESTCHESTER","STANDARD"
+"10604","+41.156215","-073.805176","WEST HARRISON","NY","WESTCHESTER","STANDARD"
+"10605","+41.007597","-073.748575","WHITE PLAINS","NY","WESTCHESTER","STANDARD"
+"10606","+41.021686","-073.766044","WHITE PLAINS","NY","WESTCHESTER","STANDARD"
+"10607","+41.039235","-073.807293","WHITE PLAINS","NY","WESTCHESTER","STANDARD"
+"10610","+41.119008","-073.732996","WHITE PLAINS","NY","WESTCHESTER","STANDARD"
+"10625","+41.119008","-073.732996","WHITE PLAINS","NY","WESTCHESTER","UNIQUE"
+"10629","+41.119008","-073.732996","WHITE PLAINS","NY","WESTCHESTER","UNIQUE"
+"10633","+41.119008","-073.732996","WHITE PLAINS","NY","WESTCHESTER","UNIQUE"
+"10650","+41.013696","-073.705975","WHITE PLAINS","NY","WESTCHESTER","UNIQUE"
+"10701","+40.946107","-073.866926","YONKERS","NY","WESTCHESTER","STANDARD"
+"10702","+41.119008","-073.732996","YONKERS","NY","WESTCHESTER","STANDARD"
+"10703","+40.959347","-073.881329","YONKERS","NY","WESTCHESTER","STANDARD"
+"10704","+40.922938","-073.861941","YONKERS","NY","WESTCHESTER","STANDARD"
+"10705","+40.926538","-073.872529","YONKERS","NY","WESTCHESTER","STANDARD"
+"10706","+40.987797","-073.862969","HASTINGS ON HUDSON","NY","WESTCHESTER","STANDARD"
+"10707","+40.960498","-073.816127","TUCKAHOE","NY","WESTCHESTER","STANDARD"
+"10708","+40.938448","-073.829978","BRONXVILLE","NY","WESTCHESTER","STANDARD"
+"10709","+40.956098","-073.812177","EASTCHESTER","NY","WESTCHESTER","STANDARD"
+"10710","+40.967946","-073.847360","YONKERS","NY","WESTCHESTER","STANDARD"
+"10801","+41.035123","-073.801401","NEW ROCHELLE","NY","WESTCHESTER","STANDARD"
+"10802","+40.948274","-073.795361","NEW ROCHELLE","NY","WESTCHESTER","STANDARD"
+"10803","+40.904538","-073.806277","PELHAM","NY","WESTCHESTER","STANDARD"
+"10804","+40.951498","-073.786526","NEW ROCHELLE","NY","WESTCHESTER","STANDARD"
+"10805","+40.899599","-073.780976","NEW ROCHELLE","NY","WESTCHESTER","STANDARD"
+"10901","+41.137295","-074.105737","SUFFERN","NY","ROCKLAND","STANDARD"
+"10910","+41.386195","-074.125718","ARDEN","NY","ORANGE","PO BOX ONLY"
+"10911","+41.160945","-074.060826","BEAR MOUNTAIN","NY","ROCKLAND","STANDARD"
+"10912","+41.387822","-074.354699","BELLVALE","NY","ORANGE","PO BOX ONLY"
+"10913","+41.068782","-073.957282","BLAUVELT","NY","ROCKLAND","STANDARD"
+"10914","+41.464867","-074.255646","BLOOMING GROVE","NY","ORANGE","PO BOX ONLY"
+"10915","+41.555634","-074.328805","BULLVILLE","NY","ORANGE","PO BOX ONLY"
+"10916","+41.443168","-074.258172","CAMPBELL HALL","NY","ORANGE","STANDARD"
+"10917","+41.329224","-074.121764","CENTRAL VALLEY","NY","ORANGE","STANDARD"
+"10918","+41.414188","-074.348151","CHESTER","NY","ORANGE","STANDARD"
+"10919","+41.531560","-074.370569","CIRCLEVILLE","NY","ORANGE","STANDARD"
+"10920","+41.152545","-073.936305","CONGERS","NY","ROCKLAND","STANDARD"
+"10921","+41.319956","-074.366990","FLORIDA","NY","ORANGE","STANDARD"
+"10922","+41.334557","-073.991750","FORT MONTGOMERY","NY","ORANGE","PO BOX ONLY"
+"10923","+41.203984","-074.003167","GARNERVILLE","NY","ROCKLAND","STANDARD"
+"10924","+41.357428","-074.210608","GOSHEN","NY","ORANGE","STANDARD"
+"10925","+41.297325","-074.264840","GREENWOOD LAKE","NY","ORANGE","STANDARD"
+"10926","+41.300486","-074.124934","HARRIMAN","NY","ORANGE","STANDARD"
+"10927","+41.191694","-073.964933","HAVERSTRAW","NY","ROCKLAND","STANDARD"
+"10928","+41.398883","-074.255846","HIGHLAND FALLS","NY","ORANGE","STANDARD"
+"10930","+41.372924","-074.245108","HIGHLAND MILLS","NY","ORANGE","STANDARD"
+"10931","+41.120195","-074.170639","HILLBURN","NY","ROCKLAND","STANDARD"
+"10932","+41.485227","-074.484249","HOWELLS","NY","ORANGE","PO BOX ONLY"
+"10933","+41.365286","-074.510918","JOHNSON","NY","ORANGE","PO BOX ONLY"
+"10940","+41.390109","-074.340401","MIDDLETOWN","NY","ORANGE","STANDARD"
+"10941","+41.370586","-074.354017","MIDDLETOWN","NY","ORANGE","STANDARD"
+"10943","+41.387822","-074.354699","MIDDLETOWN","NY","ORANGE","UNIQUE"
+"10950","+41.343092","-074.316824","MONROE","NY","ORANGE","STANDARD"
+"10952","+41.118595","-074.084536","MONSEY","NY","ROCKLAND","STANDARD"
+"10953","+41.409284","-074.083045","MOUNTAINVILLE","NY","ORANGE","PO BOX ONLY"
+"10954","+41.097716","-074.010934","NANUET","NY","ROCKLAND","STANDARD"
+"10956","+41.149494","-073.988270","NEW CITY","NY","ROCKLAND","STANDARD"
+"10958","+41.375634","-074.433750","NEW HAMPTON","NY","ORANGE","STANDARD"
+"10959","+41.387822","-074.354699","NEW MILFORD","NY","ORANGE","PO BOX ONLY"
+"10960","+41.080474","-073.930179","NYACK","NY","ROCKLAND","STANDARD"
+"10962","+41.057496","-073.953181","ORANGEBURG","NY","ROCKLAND","STANDARD"
+"10963","+41.401702","-074.536702","OTISVILLE","NY","ORANGE","STANDARD"
+"10964","+41.008947","-073.920930","PALISADES","NY","ROCKLAND","STANDARD"
+"10965","+41.061476","-074.018283","PEARL RIVER","NY","ROCKLAND","STANDARD"
+"10968","+41.040946","-073.918205","PIERMONT","NY","ROCKLAND","STANDARD"
+"10969","+41.325856","-074.488954","PINE ISLAND","NY","ORANGE","STANDARD"
+"10970","+41.184160","-074.045358","POMONA","NY","ROCKLAND","STANDARD"
+"10973","+41.386099","-074.480395","SLATE HILL","NY","ORANGE","STANDARD"
+"10974","+41.157473","-074.200784","SLOATSBURG","NY","ROCKLAND","STANDARD"
+"10975","+41.332379","-074.113857","SOUTHFIELDS","NY","ORANGE","STANDARD"
+"10976","+41.083784","-074.061335","SPARKILL","NY","ROCKLAND","STANDARD"
+"10977","+41.115833","-074.047384","SPRING VALLEY","NY","ROCKLAND","STANDARD"
+"10979","+41.182344","-074.318354","STERLING FOREST","NY","ORANGE","PO BOX ONLY"
+"10980","+41.235675","-074.028095","STONY POINT","NY","ROCKLAND","STANDARD"
+"10981","+41.323172","-074.288565","SUGAR LOAF","NY","ORANGE","PO BOX ONLY"
+"10982","+41.160945","-074.060826","TALLMAN","NY","ROCKLAND","PO BOX ONLY"
+"10983","+41.027646","-073.948404","TAPPAN","NY","ROCKLAND","STANDARD"
+"10984","+41.206898","-074.015411","THIELLS","NY","ROCKLAND","STANDARD"
+"10985","+41.574986","-074.322534","THOMPSON RIDGE","NY","ORANGE","STANDARD"
+"10986","+41.265953","-073.982912","TOMKINS COVE","NY","ROCKLAND","STANDARD"
+"10987","+41.281420","-074.204924","TUXEDO PARK","NY","ORANGE","STANDARD"
+"10988","+41.314931","-074.550346","UNIONVILLE","NY","ORANGE","PO BOX ONLY"
+"10989","+41.122868","-073.934844","VALLEY COTTAGE","NY","ROCKLAND","STANDARD"
+"10990","+41.350681","-074.321160","WARWICK","NY","ORANGE","STANDARD"
+"10992","+41.407974","-074.345433","WASHINGTONVILLE","NY","ORANGE","STANDARD"
+"10993","+41.208044","-073.975833","WEST HAVERSTRAW","NY","ROCKLAND","STANDARD"
+"10994","+41.100622","-073.970482","WEST NYACK","NY","ROCKLAND","STANDARD"
+"10995","+41.160945","-074.060826","WEST NYACK","NY","ROCKLAND","UNIQUE"
+"10996","+41.364710","-073.998375","WEST POINT","NY","ORANGE","STANDARD"
+"10997","+41.387822","-074.354699","WEST POINT","NY","ORANGE","STANDARD"
+"10998","+41.331044","-074.456673","WESTTOWN","NY","ORANGE","STANDARD"
+"11001","+40.720051","-073.706783","FLORAL PARK","NY","NASSAU","STANDARD"
+"11002","+40.754757","-073.601772","FLORAL PARK","NY","NASSAU","STANDARD"
+"11003","+40.697558","-073.704946","ELMONT","NY","NASSAU","STANDARD"
+"11004","+40.745263","-073.711159","GLEN OAKS","NY","QUEENS","STANDARD"
+"11005","+40.757057","-073.718200","FLORAL PARK","NY","QUEENS","STANDARD"
+"11010","+40.700101","-073.674074","FRANKLIN SQUARE","NY","NASSAU","STANDARD"
+"11020","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","STANDARD"
+"11021","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","STANDARD"
+"11022","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","STANDARD"
+"11023","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","STANDARD"
+"11024","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","STANDARD"
+"11025","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","UNIQUE"
+"11026","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","STANDARD"
+"11027","+40.754757","-073.601772","GREAT NECK","NY","NASSAU","STANDARD"
+"11030","+40.754757","-073.601772","MANHASSET","NY","NASSAU","STANDARD"
+"11040","+40.729351","-073.682824","NEW HYDE PARK","NY","NASSAU","STANDARD"
+"11041","+40.754757","-073.601772","NEW HYDE PARK","NY","NASSAU","UNIQUE"
+"11042","+40.754757","-073.601772","NEW HYDE PARK","NY","NASSAU","STANDARD"
+"11043","+40.754757","-073.601772","NEW HYDE PARK","NY","NASSAU","UNIQUE"
+"11044","+40.754757","-073.601772","NEW HYDE PARK","NY","NASSAU","UNIQUE"
+"11050","+40.754757","-073.601772","PORT WASHINGTON","NY","NASSAU","STANDARD"
+"11051","+40.754757","-073.601772","PORT WASHINGTON","NY","NASSAU","UNIQUE"
+"11052","+40.754757","-073.601772","PORT WASHINGTON","NY","NASSAU","UNIQUE"
+"11053","+40.754757","-073.601772","PORT WASHINGTON","NY","NASSAU","UNIQUE"
+"11054","+40.754757","-073.601772","PORT WASHINGTON","NY","NASSAU","UNIQUE"
+"11055","+40.754757","-073.601772","PORT WASHINGTON","NY","NASSAU","UNIQUE"
+"11096","+40.620492","-073.747376","INWOOD","NY","NASSAU","STANDARD"
+"11099","+40.754757","-073.601772","NEW HYDE PARK","NY","NASSAU","UNIQUE"
+"11101","+40.744622","-073.934502","LONG ISLAND CITY","NY","QUEENS","STANDARD"
+"11102","+40.770808","-073.925160","ASTORIA","NY","QUEENS","STANDARD"
+"11103","+40.761884","-073.911642","ASTORIA","NY","QUEENS","STANDARD"
+"11104","+40.742794","-073.918216","SUNNYSIDE","NY","QUEENS","STANDARD"
+"11105","+40.776468","-073.908761","ASTORIA","NY","QUEENS","STANDARD"
+"11106","+40.760601","-073.930984","ASTORIA","NY","QUEENS","STANDARD"
+"11109","+40.651378","-073.870779","LONG ISLAND CITY","NY","QUEENS","STANDARD"
+"11120","+40.651378","-073.870779","LONG ISLAND CITY","NY","QUEENS","UNIQUE"
+"11201","+40.694481","-073.989319","BROOKLYN","NY","KINGS","STANDARD"
+"11202","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11203","+40.663551","-073.949389","BROOKLYN","NY","KINGS","STANDARD"
+"11204","+40.603838","-073.987635","BROOKLYN","NY","KINGS","STANDARD"
+"11205","+40.682507","-073.936274","BROOKLYN","NY","KINGS","STANDARD"
+"11206","+40.700453","-073.949255","BROOKLYN","NY","KINGS","STANDARD"
+"11207","+40.670925","-073.895216","BROOKLYN","NY","KINGS","STANDARD"
+"11208","+40.662195","-073.912945","BROOKLYN","NY","KINGS","STANDARD"
+"11209","+40.622459","-074.028749","BROOKLYN","NY","KINGS","STANDARD"
+"11210","+40.625468","-073.945521","BROOKLYN","NY","KINGS","STANDARD"
+"11211","+40.707789","-073.945344","BROOKLYN","NY","KINGS","STANDARD"
+"11212","+40.663845","-073.916406","BROOKLYN","NY","KINGS","STANDARD"
+"11213","+40.673170","-073.936055","BROOKLYN","NY","KINGS","STANDARD"
+"11214","+40.599523","-073.998594","BROOKLYN","NY","KINGS","STANDARD"
+"11215","+40.664322","-073.984132","BROOKLYN","NY","KINGS","STANDARD"
+"11216","+40.680474","-073.946829","BROOKLYN","NY","KINGS","STANDARD"
+"11217","+40.684948","-073.980613","BROOKLYN","NY","KINGS","STANDARD"
+"11218","+40.644340","-073.978411","BROOKLYN","NY","KINGS","STANDARD"
+"11219","+40.633157","-073.996953","BROOKLYN","NY","KINGS","STANDARD"
+"11220","+40.634873","-074.016905","BROOKLYN","NY","KINGS","STANDARD"
+"11221","+40.700418","-073.936764","BROOKLYN","NY","KINGS","STANDARD"
+"11222","+40.728388","-073.945754","BROOKLYN","NY","KINGS","STANDARD"
+"11223","+40.633801","-073.954405","BROOKLYN","NY","KINGS","STANDARD"
+"11224","+40.635444","-073.968536","BROOKLYN","NY","KINGS","STANDARD"
+"11225","+40.661096","-073.952295","BROOKLYN","NY","KINGS","STANDARD"
+"11226","+40.644962","-073.956304","BROOKLYN","NY","KINGS","STANDARD"
+"11228","+40.624552","-073.989853","BROOKLYN","NY","KINGS","STANDARD"
+"11229","+40.600988","-073.939998","BROOKLYN","NY","KINGS","STANDARD"
+"11230","+40.622510","-073.966109","BROOKLYN","NY","KINGS","STANDARD"
+"11231","+40.676521","-074.003322","BROOKLYN","NY","KINGS","STANDARD"
+"11232","+40.671186","-073.971708","BROOKLYN","NY","KINGS","STANDARD"
+"11233","+40.682088","-073.920638","BROOKLYN","NY","KINGS","STANDARD"
+"11234","+40.610947","-073.913892","BROOKLYN","NY","KINGS","STANDARD"
+"11235","+40.584455","-073.948402","BROOKLYN","NY","KINGS","STANDARD"
+"11236","+40.657010","-073.915810","BROOKLYN","NY","KINGS","STANDARD"
+"11237","+40.702192","-073.918070","BROOKLYN","NY","KINGS","STANDARD"
+"11238","+40.680593","-073.963928","BROOKLYN","NY","KINGS","STANDARD"
+"11239","+40.649207","-073.876754","BROOKLYN","NY","KINGS","STANDARD"
+"11240","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11241","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11242","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11243","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11244","+40.645099","-073.945032","BROOKLYN","NY","KINGS","UNIQUE"
+"11245","+40.645099","-073.945032","BROOKLYN","NY","KINGS","UNIQUE"
+"11247","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11248","+40.645099","-073.945032","BROOKLYN","NY","KINGS","UNIQUE"
+"11249","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11251","+40.645099","-073.945032","BROOKLYN","NY","KINGS","UNIQUE"
+"11252","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11254","+40.645099","-073.945032","BROOKLYN","NY","KINGS","UNIQUE"
+"11255","+40.645099","-073.945032","BROOKLYN","NY","KINGS","UNIQUE"
+"11256","+40.645099","-073.945032","BROOKLYN","NY","KINGS","STANDARD"
+"11351","+40.781703","-073.831698","FLUSHING","NY","QUEENS","STANDARD"
+"11352","+40.651378","-073.870779","FLUSHING","NY","QUEENS","STANDARD"
+"11354","+40.766382","-073.826190","FLUSHING","NY","QUEENS","STANDARD"
+"11355","+40.750317","-073.813903","FLUSHING","NY","QUEENS","STANDARD"
+"11356","+40.784369","-073.843641","COLLEGE POINT","NY","QUEENS","STANDARD"
+"11357","+40.786173","-073.819069","WHITESTONE","NY","QUEENS","STANDARD"
+"11358","+40.760426","-073.795788","FLUSHING","NY","QUEENS","STANDARD"
+"11359","+40.792780","-073.776701","BAYSIDE","NY","QUEENS","STANDARD"
+"11360","+40.756745","-073.803301","BAYSIDE","NY","QUEENS","STANDARD"
+"11361","+40.764438","-073.773026","BAYSIDE","NY","QUEENS","STANDARD"
+"11362","+40.758364","-073.735759","LITTLE NECK","NY","QUEENS","STANDARD"
+"11363","+40.771467","-073.745323","LITTLE NECK","NY","QUEENS","STANDARD"
+"11364","+40.742772","-073.758831","OAKLAND GARDENS","NY","QUEENS","STANDARD"
+"11365","+40.738884","-073.790067","FRESH MEADOWS","NY","QUEENS","STANDARD"
+"11366","+40.727277","-073.790772","FRESH MEADOWS","NY","QUEENS","STANDARD"
+"11367","+40.730164","-073.821997","FLUSHING","NY","QUEENS","STANDARD"
+"11368","+40.748751","-073.854333","CORONA","NY","QUEENS","STANDARD"
+"11369","+40.762741","-073.869969","EAST ELMHURST","NY","QUEENS","STANDARD"
+"11370","+40.763771","-073.891451","EAST ELMHURST","NY","QUEENS","STANDARD"
+"11371","+40.771200","-073.867514","FLUSHING","NY","QUEENS","STANDARD"
+"11372","+40.751146","-073.882508","JACKSON HEIGHTS","NY","QUEENS","STANDARD"
+"11373","+40.735090","-073.877562","ELMHURST","NY","QUEENS","STANDARD"
+"11374","+40.722861","-073.862069","REGO PARK","NY","QUEENS","STANDARD"
+"11375","+40.723041","-073.843688","FOREST HILLS","NY","QUEENS","STANDARD"
+"11377","+40.748372","-073.905445","WOODSIDE","NY","QUEENS","STANDARD"
+"11378","+40.722848","-073.908413","MASPETH","NY","QUEENS","STANDARD"
+"11379","+40.719240","-073.892791","MIDDLE VILLAGE","NY","QUEENS","STANDARD"
+"11380","+40.651378","-073.870779","ELMHURST","NY","QUEENS","STANDARD"
+"11381","+40.651378","-073.870779","FLUSHING","NY","QUEENS","UNIQUE"
+"11385","+40.702404","-073.885979","RIDGEWOOD","NY","QUEENS","STANDARD"
+"11386","+40.651378","-073.870779","RIDGEWOOD","NY","QUEENS","STANDARD"
+"11390","+40.651378","-073.870779","FLUSHING","NY","QUEENS","UNIQUE"
+"11405","+40.651378","-073.870779","JAMAICA","NY","QUEENS","UNIQUE"
+"11411","+40.685535","-073.737064","CAMBRIA HEIGHTS","NY","QUEENS","STANDARD"
+"11412","+40.695829","-073.761747","SAINT ALBANS","NY","QUEENS","STANDARD"
+"11413","+40.664542","-073.755926","SPRINGFIELD GARDENS","NY","QUEENS","STANDARD"
+"11414","+40.658825","-073.843820","HOWARD BEACH","NY","QUEENS","STANDARD"
+"11415","+40.707133","-073.829247","KEW GARDENS","NY","QUEENS","STANDARD"
+"11416","+40.684546","-073.850708","OZONE PARK","NY","QUEENS","STANDARD"
+"11417","+40.675056","-073.844315","OZONE PARK","NY","QUEENS","STANDARD"
+"11418","+40.698566","-073.831270","RICHMOND HILL","NY","QUEENS","STANDARD"
+"11419","+40.686769","-073.822979","SOUTH RICHMOND HILL","NY","QUEENS","STANDARD"
+"11420","+40.674432","-073.819013","SOUTH OZONE PARK","NY","QUEENS","STANDARD"
+"11421","+40.691917","-073.856660","WOODHAVEN","NY","QUEENS","STANDARD"
+"11422","+40.659418","-073.736866","ROSEDALE","NY","QUEENS","STANDARD"
+"11423","+40.716888","-073.766897","HOLLIS","NY","QUEENS","STANDARD"
+"11424","+40.651378","-073.870779","JAMAICA","NY","QUEENS","STANDARD"
+"11425","+40.651378","-073.870779","JAMAICA","NY","QUEENS","UNIQUE"
+"11426","+40.736798","-073.723176","BELLEROSE","NY","QUEENS","STANDARD"
+"11427","+40.729293","-073.749811","QUEENS VILLAGE","NY","QUEENS","STANDARD"
+"11428","+40.720639","-073.742099","QUEENS VILLAGE","NY","QUEENS","STANDARD"
+"11429","+40.710076","-073.740151","QUEENS VILLAGE","NY","QUEENS","STANDARD"
+"11430","+40.655246","-073.797769","JAMAICA","NY","QUEENS","STANDARD"
+"11431","+40.686903","-073.850143","JAMAICA","NY","QUEENS","STANDARD"
+"11432","+40.714531","-073.794435","JAMAICA","NY","QUEENS","STANDARD"
+"11433","+40.696533","-073.786776","JAMAICA","NY","QUEENS","STANDARD"
+"11434","+40.674583","-073.781560","JAMAICA","NY","QUEENS","STANDARD"
+"11435","+40.700229","-073.797278","JAMAICA","NY","QUEENS","STANDARD"
+"11436","+40.675283","-073.800696","JAMAICA","NY","QUEENS","STANDARD"
+"11439","+40.722008","-073.790822","JAMAICA","NY","QUEENS","UNIQUE"
+"11451","+40.651378","-073.870779","JAMAICA","NY","QUEENS","UNIQUE"
+"11484","+40.651378","-073.870779","JAMAICA","NY","QUEENS","UNIQUE"
+"11499","+40.651378","-073.870779","JAMAICA","NY","QUEENS","UNIQUE"
+"11501","+40.735901","-073.638061","MINEOLA","NY","NASSAU","STANDARD"
+"11507","+40.754757","-073.601772","ALBERTSON","NY","NASSAU","STANDARD"
+"11509","+40.588854","-073.727090","ATLANTIC BEACH","NY","NASSAU","STANDARD"
+"11510","+40.654626","-073.608972","BALDWIN","NY","NASSAU","STANDARD"
+"11514","+40.744350","-073.608422","CARLE PLACE","NY","NASSAU","STANDARD"
+"11516","+40.626453","-073.725825","CEDARHURST","NY","NASSAU","STANDARD"
+"11518","+40.640387","-073.668224","EAST ROCKAWAY","NY","NASSAU","STANDARD"
+"11520","+40.651251","-073.585222","FREEPORT","NY","NASSAU","STANDARD"
+"11530","+40.726801","-073.639723","GARDEN CITY","NY","NASSAU","STANDARD"
+"11531","+40.754757","-073.601772","GARDEN CITY","NY","NASSAU","STANDARD"
+"11535","+40.754757","-073.601772","GARDEN CITY","NY","NASSAU","UNIQUE"
+"11536","+40.754757","-073.601772","GARDEN CITY","NY","NASSAU","UNIQUE"
+"11542","+40.754757","-073.601772","GLEN COVE","NY","NASSAU","STANDARD"
+"11545","+40.754757","-073.601772","GLEN HEAD","NY","NASSAU","STANDARD"
+"11547","+40.754757","-073.601772","GLENWOOD LANDING","NY","NASSAU","PO BOX ONLY"
+"11548","+40.754757","-073.601772","GREENVALE","NY","NASSAU","STANDARD"
+"11549","+40.754757","-073.601772","HEMPSTEAD","NY","NASSAU","UNIQUE"
+"11550","+40.700201","-073.620872","HEMPSTEAD","NY","NASSAU","STANDARD"
+"11551","+40.754757","-073.601772","HEMPSTEAD","NY","NASSAU","STANDARD"
+"11552","+40.690251","-073.653023","WEST HEMPSTEAD","NY","NASSAU","STANDARD"
+"11553","+40.705868","-073.591421","UNIONDALE","NY","NASSAU","STANDARD"
+"11554","+40.721350","-073.558770","EAST MEADOW","NY","NASSAU","STANDARD"
+"11555","+40.754757","-073.601772","UNIONDALE","NY","NASSAU","UNIQUE"
+"11556","+40.754757","-073.601772","UNIONDALE","NY","NASSAU","UNIQUE"
+"11557","+40.638803","-073.693274","HEWLETT","NY","NASSAU","STANDARD"
+"11558","+40.606953","-073.654724","ISLAND PARK","NY","NASSAU","STANDARD"
+"11559","+40.615435","-073.726420","LAWRENCE","NY","NASSAU","STANDARD"
+"11560","+40.754757","-073.601772","LOCUST VALLEY","NY","NASSAU","STANDARD"
+"11561","+40.589139","-073.642323","LONG BEACH","NY","NASSAU","STANDARD"
+"11563","+40.657602","-073.672574","LYNBROOK","NY","NASSAU","STANDARD"
+"11564","+40.754757","-073.601772","LYNBROOK","NY","NASSAU","UNIQUE"
+"11565","+40.674652","-073.673324","MALVERNE","NY","NASSAU","STANDARD"
+"11566","+40.668501","-073.553628","MERRICK","NY","NASSAU","STANDARD"
+"11568","+40.754757","-073.601772","OLD WESTBURY","NY","NASSAU","STANDARD"
+"11569","+40.590503","-073.580822","POINT LOOKOUT","NY","NASSAU","PO BOX ONLY"
+"11570","+40.667352","-073.638523","ROCKVILLE CENTRE","NY","NASSAU","STANDARD"
+"11571","+40.754757","-073.601772","ROCKVILLE CENTRE","NY","NASSAU","STANDARD"
+"11572","+40.635252","-073.636923","OCEANSIDE","NY","NASSAU","STANDARD"
+"11575","+40.680451","-073.590071","ROOSEVELT","NY","NASSAU","STANDARD"
+"11576","+40.656802","-073.622523","ROSLYN","NY","NASSAU","STANDARD"
+"11577","+40.754757","-073.601772","ROSLYN HEIGHTS","NY","NASSAU","STANDARD"
+"11579","+40.754757","-073.601772","SEA CLIFF","NY","NASSAU","STANDARD"
+"11580","+40.676052","-073.697828","VALLEY STREAM","NY","NASSAU","STANDARD"
+"11581","+40.652253","-073.711775","VALLEY STREAM","NY","NASSAU","STANDARD"
+"11582","+40.754757","-073.601772","VALLEY STREAM","NY","NASSAU","STANDARD"
+"11583","+40.754757","-073.601772","VALLEY STREAM","NY","NASSAU","UNIQUE"
+"11588","+40.754757","-073.601772","UNIONDALE","NY","NASSAU","UNIQUE"
+"11590","+40.745050","-073.571521","WESTBURY","NY","NASSAU","STANDARD"
+"11592","+40.621753","-073.632673","ROCKVILLE CENTRE","NY","NASSAU","UNIQUE"
+"11593","+40.754757","-073.601772","WESTBURY","NY","NASSAU","UNIQUE"
+"11594","+40.754757","-073.601772","WESTBURY","NY","NASSAU","UNIQUE"
+"11595","+40.754757","-073.601772","WESTBURY","NY","NASSAU","UNIQUE"
+"11596","+40.754757","-073.601772","WILLISTON PARK","NY","NASSAU","STANDARD"
+"11597","+40.754757","-073.601772","WESTBURY","NY","NASSAU","UNIQUE"
+"11598","+40.633103","-073.712025","WOODMERE","NY","NASSAU","STANDARD"
+"11599","+40.607574","-073.742691","GARDEN CITY","NY","NASSAU","STANDARD"
+"11690","+40.651378","-073.870779","FAR ROCKAWAY","NY","QUEENS","STANDARD"
+"11691","+40.601475","-073.761910","FAR ROCKAWAY","NY","QUEENS","STANDARD"
+"11692","+40.592300","-073.793273","ARVERNE","NY","QUEENS","STANDARD"
+"11693","+40.598460","-073.814270","FAR ROCKAWAY","NY","QUEENS","STANDARD"
+"11694","+40.576610","-073.842760","ROCKAWAY PARK","NY","QUEENS","STANDARD"
+"11695","+40.651378","-073.870779","FAR ROCKAWAY","NY","QUEENS","STANDARD"
+"11697","+40.559365","-073.906713","BREEZY POINT","NY","QUEENS","STANDARD"
+"11701","+40.686249","-073.411866","AMITYVILLE","NY","SUFFOLK","STANDARD"
+"11702","+40.664150","-073.340984","BABYLON","NY","SUFFOLK","STANDARD"
+"11703","+40.732348","-073.325363","NORTH BABYLON","NY","SUFFOLK","STANDARD"
+"11704","+40.709098","-073.356164","WEST BABYLON","NY","SUFFOLK","STANDARD"
+"11705","+40.748364","-073.057026","BAYPORT","NY","SUFFOLK","STANDARD"
+"11706","+40.705138","-073.243004","BAY SHORE","NY","SUFFOLK","STANDARD"
+"11707","+40.922326","-072.637078","WEST BABYLON","NY","SUFFOLK","STANDARD"
+"11708","+40.922326","-072.637078","AMITYVILLE","NY","SUFFOLK","STANDARD"
+"11709","+40.754757","-073.601772","BAYVILLE","NY","NASSAU","STANDARD"
+"11710","+40.672900","-073.536520","BELLMORE","NY","NASSAU","STANDARD"
+"11713","+40.922326","-072.637078","BELLPORT","NY","SUFFOLK","STANDARD"
+"11714","+40.728449","-073.495369","BETHPAGE","NY","NASSAU","STANDARD"
+"11715","+40.756730","-073.043481","BLUE POINT","NY","SUFFOLK","STANDARD"
+"11716","+40.769020","-073.113366","BOHEMIA","NY","SUFFOLK","STANDARD"
+"11717","+40.780882","-073.250336","BRENTWOOD","NY","SUFFOLK","STANDARD"
+"11718","+40.715424","-073.260912","BRIGHTWATERS","NY","SUFFOLK","STANDARD"
+"11719","+40.922326","-072.637078","BROOKHAVEN","NY","SUFFOLK","STANDARD"
+"11720","+40.922326","-072.637078","CENTEREACH","NY","SUFFOLK","STANDARD"
+"11721","+40.893197","-073.370462","CENTERPORT","NY","SUFFOLK","STANDARD"
+"11722","+40.781930","-073.196148","CENTRAL ISLIP","NY","SUFFOLK","STANDARD"
+"11724","+40.860098","-073.442315","COLD SPRING HARBOR","NY","SUFFOLK","STANDARD"
+"11725","+40.842247","-073.280935","COMMACK","NY","SUFFOLK","STANDARD"
+"11726","+40.680220","-073.394762","COPIAGUE","NY","SUFFOLK","STANDARD"
+"11727","+40.922326","-072.637078","CORAM","NY","SUFFOLK","STANDARD"
+"11729","+40.762574","-073.323061","DEER PARK","NY","SUFFOLK","STANDARD"
+"11730","+40.724146","-073.175926","EAST ISLIP","NY","SUFFOLK","STANDARD"
+"11731","+40.856997","-073.314561","EAST NORTHPORT","NY","SUFFOLK","STANDARD"
+"11732","+40.754757","-073.601772","EAST NORWICH","NY","NASSAU","STANDARD"
+"11733","+40.922326","-072.637078","EAST SETAUKET","NY","SUFFOLK","STANDARD"
+"11735","+40.754757","-073.601772","FARMINGDALE","NY","NASSAU","STANDARD"
+"11736","+40.754757","-073.601772","FARMINGDALE","NY","NASSAU","UNIQUE"
+"11737","+40.754757","-073.601772","FARMINGDALE","NY","NASSAU","UNIQUE"
+"11738","+40.922326","-072.637078","FARMINGVILLE","NY","SUFFOLK","STANDARD"
+"11739","+40.922326","-072.637078","GREAT RIVER","NY","SUFFOLK","PO BOX ONLY"
+"11740","+40.866948","-073.362512","GREENLAWN","NY","SUFFOLK","STANDARD"
+"11741","+40.787910","-073.066689","HOLBROOK","NY","SUFFOLK","STANDARD"
+"11742","+40.798994","-073.048985","HOLTSVILLE","NY","SUFFOLK","STANDARD"
+"11743","+40.867647","-073.410218","HUNTINGTON","NY","SUFFOLK","STANDARD"
+"11745","+40.922326","-072.637078","SMITHTOWN","NY","SUFFOLK","UNIQUE"
+"11746","+40.814348","-073.363363","HUNTINGTON STATION","NY","SUFFOLK","STANDARD"
+"11747","+40.787248","-073.405573","MELVILLE","NY","SUFFOLK","STANDARD"
+"11749","+40.922326","-072.637078","ISLANDIA","NY","SUFFOLK","STANDARD"
+"11750","+40.922326","-072.637078","HUNTINGTON STATION","NY","SUFFOLK","UNIQUE"
+"11751","+40.728130","-073.217871","ISLIP","NY","SUFFOLK","STANDARD"
+"11752","+40.757226","-073.182854","ISLIP TERRACE","NY","SUFFOLK","STANDARD"
+"11753","+40.754757","-073.601772","JERICHO","NY","NASSAU","STANDARD"
+"11754","+40.803230","-073.304850","KINGS PARK","NY","SUFFOLK","STANDARD"
+"11755","+40.851850","-073.129003","LAKE GROVE","NY","SUFFOLK","STANDARD"
+"11756","+40.722800","-073.515819","LEVITTOWN","NY","NASSAU","STANDARD"
+"11757","+40.688799","-073.376475","LINDENHURST","NY","SUFFOLK","STANDARD"
+"11758","+40.754757","-073.601772","MASSAPEQUA","NY","NASSAU","STANDARD"
+"11760","+40.810246","-073.191789","ISLANDIA","NY","SUFFOLK","STANDARD"
+"11762","+40.754757","-073.601772","MASSAPEQUA PARK","NY","NASSAU","STANDARD"
+"11763","+40.922326","-072.637078","MEDFORD","NY","SUFFOLK","STANDARD"
+"11764","+40.922326","-072.637078","MILLER PLACE","NY","SUFFOLK","STANDARD"
+"11765","+40.754757","-073.601772","MILL NECK","NY","NASSAU","STANDARD"
+"11766","+40.922326","-072.637078","MOUNT SINAI","NY","SUFFOLK","STANDARD"
+"11767","+40.846678","-073.146763","NESCONSET","NY","SUFFOLK","STANDARD"
+"11768","+40.914289","-073.332680","NORTHPORT","NY","SUFFOLK","STANDARD"
+"11769","+40.738322","-073.131797","OAKDALE","NY","SUFFOLK","STANDARD"
+"11770","+40.644344","-073.161286","OCEAN BEACH","NY","SUFFOLK","PO BOX ONLY"
+"11771","+40.754757","-073.601772","OYSTER BAY","NY","NASSAU","STANDARD"
+"11772","+40.922326","-072.637078","PATCHOGUE","NY","SUFFOLK","STANDARD"
+"11773","+40.754757","-073.601772","SYOSSET","NY","NASSAU","UNIQUE"
+"11774","+40.754757","-073.601772","FARMINGDALE","NY","NASSAU","UNIQUE"
+"11775","+40.922326","-072.637078","MELVILLE","NY","SUFFOLK","UNIQUE"
+"11776","+40.922326","-072.637078","PORT JEFFERSON STATION","NY","SUFFOLK","STANDARD"
+"11777","+40.922326","-072.637078","PORT JEFFERSON","NY","SUFFOLK","STANDARD"
+"11778","+40.922326","-072.637078","ROCKY POINT","NY","SUFFOLK","STANDARD"
+"11779","+40.808322","-073.130469","RONKONKOMA","NY","SUFFOLK","STANDARD"
+"11780","+40.889314","-073.174435","SAINT JAMES","NY","SUFFOLK","STANDARD"
+"11782","+40.745866","-073.085858","SAYVILLE","NY","SUFFOLK","STANDARD"
+"11783","+40.683897","-073.496169","SEAFORD","NY","NASSAU","STANDARD"
+"11784","+40.922326","-072.637078","SELDEN","NY","SUFFOLK","STANDARD"
+"11786","+40.922326","-072.637078","SHOREHAM","NY","SUFFOLK","STANDARD"
+"11787","+40.856793","-073.208278","SMITHTOWN","NY","SUFFOLK","STANDARD"
+"11788","+40.819074","-073.212200","HAUPPAUGE","NY","SUFFOLK","STANDARD"
+"11789","+40.922326","-072.637078","SOUND BEACH","NY","SUFFOLK","STANDARD"
+"11790","+40.901290","-073.182803","STONY BROOK","NY","SUFFOLK","STANDARD"
+"11791","+40.754757","-073.601772","SYOSSET","NY","NASSAU","STANDARD"
+"11792","+40.922326","-072.637078","WADING RIVER","NY","SUFFOLK","STANDARD"
+"11793","+40.678150","-073.509519","WANTAGH","NY","NASSAU","STANDARD"
+"11794","+40.922326","-072.637078","STONY BROOK","NY","SUFFOLK","UNIQUE"
+"11795","+40.699825","-073.290905","WEST ISLIP","NY","SUFFOLK","STANDARD"
+"11796","+40.732304","-073.100020","WEST SAYVILLE","NY","SUFFOLK","STANDARD"
+"11797","+40.754757","-073.601772","WOODBURY","NY","NASSAU","STANDARD"
+"11798","+40.734170","-073.351354","WYANDANCH","NY","SUFFOLK","STANDARD"
+"11801","+40.754757","-073.601772","HICKSVILLE","NY","NASSAU","STANDARD"
+"11802","+40.754757","-073.601772","HICKSVILLE","NY","NASSAU","STANDARD"
+"11803","+40.754757","-073.601772","PLAINVIEW","NY","NASSAU","STANDARD"
+"11804","+40.754757","-073.601772","OLD BETHPAGE","NY","NASSAU","STANDARD"
+"11805","+40.922326","-072.637078","MID ISLAND","NY","SUFFOLK","STANDARD"
+"11815","+40.754757","-073.601772","HICKSVILLE","NY","NASSAU","UNIQUE"
+"11819","+40.754757","-073.601772","HICKSVILLE","NY","NASSAU","UNIQUE"
+"11853","+40.754757","-073.601772","JERICHO","NY","NASSAU","UNIQUE"
+"11854","+40.754757","-073.601772","HICKSVILLE","NY","NASSAU","UNIQUE"
+"11855","+40.754757","-073.601772","HICKSVILLE","NY","NASSAU","UNIQUE"
+"11901","+40.922326","-072.637078","RIVERHEAD","NY","SUFFOLK","STANDARD"
+"11930","+40.922326","-072.637078","AMAGANSETT","NY","SUFFOLK","PO BOX ONLY"
+"11931","+40.922326","-072.637078","AQUEBOGUE","NY","SUFFOLK","PO BOX ONLY"
+"11932","+40.922326","-072.637078","BRIDGEHAMPTON","NY","SUFFOLK","PO BOX ONLY"
+"11933","+40.922326","-072.637078","CALVERTON","NY","SUFFOLK","STANDARD"
+"11934","+40.922326","-072.637078","CENTER MORICHES","NY","SUFFOLK","STANDARD"
+"11935","+40.922326","-072.637078","CUTCHOGUE","NY","SUFFOLK","STANDARD"
+"11937","+40.922326","-072.637078","EAST HAMPTON","NY","SUFFOLK","STANDARD"
+"11939","+40.922326","-072.637078","EAST MARION","NY","SUFFOLK","STANDARD"
+"11940","+40.922326","-072.637078","EAST MORICHES","NY","SUFFOLK","STANDARD"
+"11941","+40.922326","-072.637078","EASTPORT","NY","SUFFOLK","STANDARD"
+"11942","+40.922326","-072.637078","EAST QUOGUE","NY","SUFFOLK","STANDARD"
+"11944","+40.922326","-072.637078","GREENPORT","NY","SUFFOLK","STANDARD"
+"11946","+40.922326","-072.637078","HAMPTON BAYS","NY","SUFFOLK","STANDARD"
+"11947","+40.922326","-072.637078","JAMESPORT","NY","SUFFOLK","PO BOX ONLY"
+"11948","+40.922326","-072.637078","LAUREL","NY","SUFFOLK","STANDARD"
+"11949","+40.922326","-072.637078","MANORVILLE","NY","SUFFOLK","STANDARD"
+"11950","+40.922326","-072.637078","MASTIC","NY","SUFFOLK","STANDARD"
+"11951","+40.922326","-072.637078","MASTIC BEACH","NY","SUFFOLK","STANDARD"
+"11952","+40.922326","-072.637078","MATTITUCK","NY","SUFFOLK","STANDARD"
+"11953","+40.922326","-072.637078","MIDDLE ISLAND","NY","SUFFOLK","STANDARD"
+"11954","+40.922326","-072.637078","MONTAUK","NY","SUFFOLK","STANDARD"
+"11955","+40.922326","-072.637078","MORICHES","NY","SUFFOLK","STANDARD"
+"11956","+40.922326","-072.637078","NEW SUFFOLK","NY","SUFFOLK","PO BOX ONLY"
+"11957","+40.922326","-072.637078","ORIENT","NY","SUFFOLK","STANDARD"
+"11958","+40.922326","-072.637078","PECONIC","NY","SUFFOLK","STANDARD"
+"11959","+40.922326","-072.637078","QUOGUE","NY","SUFFOLK","PO BOX ONLY"
+"11960","+40.922326","-072.637078","REMSENBURG","NY","SUFFOLK","PO BOX ONLY"
+"11961","+40.922326","-072.637078","RIDGE","NY","SUFFOLK","STANDARD"
+"11962","+40.922326","-072.637078","SAGAPONACK","NY","SUFFOLK","PO BOX ONLY"
+"11963","+40.922326","-072.637078","SAG HARBOR","NY","SUFFOLK","STANDARD"
+"11964","+40.922326","-072.637078","SHELTER ISLAND","NY","SUFFOLK","PO BOX ONLY"
+"11965","+40.922326","-072.637078","SHELTER ISLAND HEIGHTS","NY","SUFFOLK","PO BOX ONLY"
+"11967","+40.922326","-072.637078","SHIRLEY","NY","SUFFOLK","STANDARD"
+"11968","+40.922326","-072.637078","SOUTHAMPTON","NY","SUFFOLK","STANDARD"
+"11969","+40.922326","-072.637078","SOUTHAMPTON","NY","SUFFOLK","STANDARD"
+"11970","+40.922326","-072.637078","SOUTH JAMESPORT","NY","SUFFOLK","PO BOX ONLY"
+"11971","+40.922326","-072.637078","SOUTHOLD","NY","SUFFOLK","STANDARD"
+"11972","+40.922326","-072.637078","SPEONK","NY","SUFFOLK","PO BOX ONLY"
+"11973","+40.922326","-072.637078","UPTON","NY","SUFFOLK","PO BOX ONLY"
+"11975","+40.922326","-072.637078","WAINSCOTT","NY","SUFFOLK","PO BOX ONLY"
+"11976","+40.922326","-072.637078","WATER MILL","NY","SUFFOLK","STANDARD"
+"11977","+40.922326","-072.637078","WESTHAMPTON","NY","SUFFOLK","STANDARD"
+"11978","+40.922326","-072.637078","WESTHAMPTON BEACH","NY","SUFFOLK","STANDARD"
+"11980","+40.922326","-072.637078","YAPHANK","NY","SUFFOLK","STANDARD"
+"12007","+42.482455","-073.936671","ALCOVE","NY","ALBANY","STANDARD"
+"12008","+42.859176","-073.902117","ALPLAUS","NY","SCHENECTADY","STANDARD"
+"12009","+42.688731","-074.030596","ALTAMONT","NY","ALBANY","STANDARD"
+"12010","+42.906298","-074.229042","AMSTERDAM","NY","MONTGOMERY","STANDARD"
+"12015","+42.280040","-073.837035","ATHENS","NY","GREENE","STANDARD"
+"12016","+42.910206","-074.423606","AURIESVILLE","NY","MONTGOMERY","STANDARD"
+"12017","+42.309805","-073.565617","AUSTERLITZ","NY","COLUMBIA","STANDARD"
+"12018","+42.670645","-073.551420","AVERILL PARK","NY","RENSSELAER","STANDARD"
+"12019","+42.934416","-073.848971","BALLSTON LAKE","NY","SARATOGA","STANDARD"
+"12020","+42.983588","-073.882538","BALLSTON SPA","NY","SARATOGA","STANDARD"
+"12022","+42.670510","-073.357825","BERLIN","NY","RENSSELAER","STANDARD"
+"12023","+42.602236","-074.154615","BERNE","NY","ALBANY","STANDARD"
+"12024","+42.494981","-073.510676","BRAINARD","NY","RENSSELAER","STANDARD"
+"12025","+43.082793","-074.160753","BROADALBIN","NY","FULTON","STANDARD"
+"12027","+42.923676","-073.911768","BURNT HILLS","NY","SARATOGA","STANDARD"
+"12028","+42.851332","-073.454055","BUSKIRK","NY","RENSSELAER","STANDARD"
+"12029","+42.357057","-073.448944","CANAAN","NY","COLUMBIA","STANDARD"
+"12031","+42.592287","-074.438129","CARLISLE","NY","SCHOHARIE","STANDARD"
+"12032","+43.155660","-074.494888","CAROGA LAKE","NY","FULTON","STANDARD"
+"12033","+42.589158","-073.565925","CASTLETON ON HUDSON","NY","RENSSELAER","STANDARD"
+"12035","+42.721081","-074.382064","CENTRAL BRIDGE","NY","SCHOHARIE","STANDARD"
+"12036","+42.541025","-074.655395","CHARLOTTEVILLE","NY","SCHOHARIE","STANDARD"
+"12037","+42.335777","-073.528651","CHATHAM","NY","COLUMBIA","STANDARD"
+"12040","+42.646742","-073.371611","CHERRY PLAIN","NY","RENSSELAER","PO BOX ONLY"
+"12041","+42.561988","-073.957345","CLARKSVILLE","NY","ALBANY","STANDARD"
+"12042","+42.411207","-073.927573","CLIMAX","NY","GREENE","STANDARD"
+"12043","+42.665376","-074.518840","COBLESKILL","NY","SCHOHARIE","STANDARD"
+"12045","+42.475704","-073.797722","COEYMANS","NY","ALBANY","PO BOX ONLY"
+"12046","+42.492791","-073.928403","COEYMANS HOLLOW","NY","ALBANY","STANDARD"
+"12047","+42.647039","-073.739349","COHOES","NY","ALBANY","STANDARD"
+"12050","+42.317154","-073.748555","COLUMBIAVILLE","NY","COLUMBIA","PO BOX ONLY"
+"12051","+42.355924","-073.847967","COXSACKIE","NY","GREENE","STANDARD"
+"12052","+42.670318","-073.549377","CROPSEYVILLE","NY","RENSSELAER","STANDARD"
+"12053","+42.777880","-074.197936","DELANSON","NY","SCHENECTADY","STANDARD"
+"12054","+42.605467","-073.875700","DELMAR","NY","ALBANY","STANDARD"
+"12055","+42.614852","-073.970812","DORMANSVILLE","NY","ALBANY","STANDARD"
+"12056","+42.770065","-074.085963","DUANESBURG","NY","SCHENECTADY","STANDARD"
+"12057","+42.980783","-073.352206","EAGLE BRIDGE","NY","WASHINGTON","STANDARD"
+"12058","+42.352969","-073.905306","EARLTON","NY","GREENE","STANDARD"
+"12059","+42.618248","-074.028108","EAST BERNE","NY","ALBANY","STANDARD"
+"12060","+42.419964","-073.512815","EAST CHATHAM","NY","COLUMBIA","STANDARD"
+"12061","+42.570352","-073.655682","EAST GREENBUSH","NY","RENSSELAER","STANDARD"
+"12062","+42.537218","-073.503877","EAST NASSAU","NY","RENSSELAER","STANDARD"
+"12063","+42.563685","-073.627428","EAST SCHODACK","NY","RENSSELAER","STANDARD"
+"12064","+42.632058","-074.667368","EAST WORCESTER","NY","OTSEGO","STANDARD"
+"12065","+42.850576","-073.792524","CLIFTON PARK","NY","SARATOGA","STANDARD"
+"12066","+42.801547","-074.342884","ESPERANCE","NY","MONTGOMERY","STANDARD"
+"12067","+42.555446","-073.913714","FEURA BUSH","NY","ALBANY","STANDARD"
+"12068","+42.940975","-074.391459","FONDA","NY","MONTGOMERY","STANDARD"
+"12069","+42.945701","-074.263312","FORT HUNTER","NY","MONTGOMERY","PO BOX ONLY"
+"12070","+42.969738","-074.292476","FORT JOHNSON","NY","MONTGOMERY","STANDARD"
+"12071","+42.592287","-074.438129","FULTONHAM","NY","SCHOHARIE","STANDARD"
+"12072","+42.877533","-074.404477","FULTONVILLE","NY","MONTGOMERY","STANDARD"
+"12073","+42.592287","-074.438129","GALLUPVILLE","NY","SCHOHARIE","PO BOX ONLY"
+"12074","+43.082925","-074.043981","GALWAY","NY","SARATOGA","STANDARD"
+"12075","+42.366064","-073.589731","GHENT","NY","COLUMBIA","STANDARD"
+"12076","+42.411096","-074.427506","GILBOA","NY","SCHOHARIE","STANDARD"
+"12077","+42.595704","-073.787766","GLENMONT","NY","ALBANY","STANDARD"
+"12078","+43.114958","-074.344328","GLOVERSVILLE","NY","FULTON","STANDARD"
+"12082","+42.772624","-073.446834","GRAFTON","NY","RENSSELAER","PO BOX ONLY"
+"12083","+42.382594","-073.951259","GREENVILLE","NY","GREENE","STANDARD"
+"12084","+42.703519","-073.960324","GUILDERLAND","NY","ALBANY","STANDARD"
+"12085","+42.694777","-073.905271","GUILDERLAND CENTER","NY","ALBANY","STANDARD"
+"12086","+42.969505","-074.155559","HAGAMAN","NY","MONTGOMERY","STANDARD"
+"12087","+42.411114","-073.881515","HANNACROIX","NY","GREENE","STANDARD"
+"12089","+42.866666","-073.318113","HOOSICK","NY","RENSSELAER","PO BOX ONLY"
+"12090","+42.735310","-073.437943","HOOSICK FALLS","NY","RENSSELAER","STANDARD"
+"12092","+42.712176","-074.349066","HOWES CAVE","NY","SCHOHARIE","STANDARD"
+"12093","+42.458932","-074.580562","JEFFERSON","NY","SCHOHARIE","STANDARD"
+"12094","+42.879946","-073.486840","JOHNSONVILLE","NY","RENSSELAER","STANDARD"
+"12095","+43.090543","-074.355438","JOHNSTOWN","NY","FULTON","STANDARD"
+"12106","+42.385231","-073.704442","KINDERHOOK","NY","COLUMBIA","STANDARD"
+"12107","+42.660046","-074.116812","KNOX","NY","ALBANY","PO BOX ONLY"
+"12108","+43.667618","-074.456913","LAKE PLEASANT","NY","HAMILTON","STANDARD"
+"12110","+42.752928","-073.779714","LATHAM","NY","ALBANY","STANDARD"
+"12111","+42.614852","-073.970812","LATHAM","NY","ALBANY","UNIQUE"
+"12115","+42.473718","-073.567330","MALDEN BRIDGE","NY","COLUMBIA","STANDARD"
+"12116","+42.551473","-074.913829","MARYLAND","NY","OTSEGO","STANDARD"
+"12117","+43.132167","-074.248494","MAYFIELD","NY","FULTON","STANDARD"
+"12118","+43.033189","-073.897322","MECHANICVILLE","NY","SARATOGA","STANDARD"
+"12120","+42.478906","-074.147178","MEDUSA","NY","ALBANY","STANDARD"
+"12121","+42.712948","-073.601722","MELROSE","NY","RENSSELAER","STANDARD"
+"12122","+42.560533","-074.295505","MIDDLEBURGH","NY","SCHOHARIE","STANDARD"
+"12123","+42.565736","-073.629023","NASSAU","NY","RENSSELAER","STANDARD"
+"12124","+42.444198","-073.788241","NEW BALTIMORE","NY","GREENE","PO BOX ONLY"
+"12125","+42.466748","-073.567189","NEW LEBANON","NY","COLUMBIA","STANDARD"
+"12128","+42.724978","-073.764296","NEWTONVILLE","NY","ALBANY","STANDARD"
+"12130","+42.439983","-073.666343","NIVERVILLE","NY","COLUMBIA","STANDARD"
+"12131","+42.592287","-074.438129","NORTH BLENHEIM","NY","SCHOHARIE","STANDARD"
+"12132","+42.466061","-073.629296","NORTH CHATHAM","NY","COLUMBIA","PO BOX ONLY"
+"12133","+42.926121","-073.346409","NORTH HOOSICK","NY","RENSSELAER","PO BOX ONLY"
+"12134","+43.176121","-074.248627","NORTHVILLE","NY","FULTON","STANDARD"
+"12136","+42.434992","-073.561172","OLD CHATHAM","NY","COLUMBIA","STANDARD"
+"12137","+42.838578","-074.131734","PATTERSONVILLE","NY","SCHENECTADY","STANDARD"
+"12138","+42.685947","-073.390627","PETERSBURG","NY","RENSSELAER","STANDARD"
+"12139","+43.428386","-074.526485","PISECO","NY","HAMILTON","STANDARD"
+"12140","+42.686757","-073.527434","POESTENKILL","NY","RENSSELAER","STANDARD"
+"12141","+42.731771","-074.185395","QUAKER STREET","NY","SCHENECTADY","PO BOX ONLY"
+"12143","+42.493642","-073.858352","RAVENA","NY","ALBANY","STANDARD"
+"12144","+42.621627","-073.596089","RENSSELAER","NY","RENSSELAER","STANDARD"
+"12147","+42.500258","-074.160591","RENSSELAERVILLE","NY","ALBANY","STANDARD"
+"12148","+42.841619","-073.847016","REXFORD","NY","SARATOGA","STANDARD"
+"12149","+42.609418","-074.594655","RICHMONDVILLE","NY","SCHOHARIE","STANDARD"
+"12150","+42.869961","-074.050083","ROTTERDAM JUNCTION","NY","SCHENECTADY","STANDARD"
+"12151","+42.924726","-073.785914","ROUND LAKE","NY","SARATOGA","STANDARD"
+"12153","+42.635503","-073.479705","SAND LAKE","NY","RENSSELAER","STANDARD"
+"12154","+42.904445","-073.615618","SCHAGHTICOKE","NY","RENSSELAER","STANDARD"
+"12155","+42.605453","-074.820584","SCHENEVUS","NY","OTSEGO","STANDARD"
+"12156","+42.491469","-073.723935","SCHODACK LANDING","NY","RENSSELAER","STANDARD"
+"12157","+42.655569","-074.337322","SCHOHARIE","NY","SCHOHARIE","STANDARD"
+"12158","+42.529746","-073.840579","SELKIRK","NY","ALBANY","STANDARD"
+"12159","+42.644278","-073.876338","SLINGERLANDS","NY","ALBANY","STANDARD"
+"12160","+42.756876","-074.317361","SLOANSVILLE","NY","SCHOHARIE","STANDARD"
+"12161","+42.521038","-073.851898","SOUTH BETHLEHEM","NY","ALBANY","PO BOX ONLY"
+"12164","+43.667618","-074.456913","SPECULATOR","NY","HAMILTON","STANDARD"
+"12165","+42.331057","-073.529774","SPENCERTOWN","NY","COLUMBIA","STANDARD"
+"12166","+42.842006","-074.446000","SPRAKERS","NY","MONTGOMERY","STANDARD"
+"12167","+42.413508","-074.619390","STAMFORD","NY","DELAWARE","STANDARD"
+"12168","+42.635930","-073.408789","STEPHENTOWN","NY","RENSSELAER","STANDARD"
+"12169","+42.585511","-073.415444","STEPHENTOWN","NY","RENSSELAER","STANDARD"
+"12170","+43.001932","-073.660897","STILLWATER","NY","SARATOGA","STANDARD"
+"12172","+42.285749","-073.733532","STOTTVILLE","NY","COLUMBIA","PO BOX ONLY"
+"12173","+42.399271","-073.622327","STUYVESANT","NY","COLUMBIA","STANDARD"
+"12174","+42.343986","-073.734770","STUYVESANT FALLS","NY","COLUMBIA","PO BOX ONLY"
+"12175","+42.535029","-074.545250","SUMMIT","NY","SCHOHARIE","STANDARD"
+"12176","+42.385117","-073.958671","SURPRISE","NY","GREENE","STANDARD"
+"12177","+42.950020","-074.296985","TRIBES HILL","NY","MONTGOMERY","PO BOX ONLY"
+"12179","+42.711440","-073.525561","TROY","NY","RENSSELAER","UNIQUE"
+"12180","+42.673701","-073.608792","TROY","NY","RENSSELAER","STANDARD"
+"12181","+42.738678","-073.673862","TROY","NY","RENSSELAER","STANDARD"
+"12182","+42.685792","-073.652374","TROY","NY","RENSSELAER","STANDARD"
+"12183","+42.745994","-073.694263","TROY","NY","ALBANY","STANDARD"
+"12184","+42.398503","-073.626548","VALATIE","NY","COLUMBIA","STANDARD"
+"12185","+42.856307","-073.500679","VALLEY FALLS","NY","RENSSELAER","STANDARD"
+"12186","+42.620654","-073.980441","VOORHEESVILLE","NY","ALBANY","STANDARD"
+"12187","+42.592287","-074.438129","WARNERVILLE","NY","SCHOHARIE","STANDARD"
+"12188","+42.845579","-073.702433","WATERFORD","NY","SARATOGA","STANDARD"
+"12189","+42.736277","-073.720318","WATERVLIET","NY","ALBANY","STANDARD"
+"12190","+43.667618","-074.456913","WELLS","NY","HAMILTON","STANDARD"
+"12192","+42.397703","-073.834836","WEST COXSACKIE","NY","GREENE","STANDARD"
+"12193","+42.521722","-074.039610","WESTERLO","NY","ALBANY","STANDARD"
+"12194","+42.572934","-074.514163","WEST FULTON","NY","SCHOHARIE","STANDARD"
+"12195","+42.479384","-073.474809","WEST LEBANON","NY","COLUMBIA","PO BOX ONLY"
+"12196","+42.603715","-073.561566","WEST SAND LAKE","NY","RENSSELAER","STANDARD"
+"12197","+42.606993","-074.732401","WORCESTER","NY","OTSEGO","STANDARD"
+"12198","+42.676167","-073.606194","WYNANTSKILL","NY","RENSSELAER","STANDARD"
+"12201","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12202","+42.636371","-073.763564","ALBANY","NY","ALBANY","STANDARD"
+"12203","+42.700345","-073.857496","ALBANY","NY","ALBANY","STANDARD"
+"12204","+42.682978","-073.770714","ALBANY","NY","ALBANY","STANDARD"
+"12205","+42.719799","-073.820666","ALBANY","NY","ALBANY","STANDARD"
+"12206","+42.675779","-073.793065","ALBANY","NY","ALBANY","STANDARD"
+"12207","+42.656029","-073.750764","ALBANY","NY","ALBANY","STANDARD"
+"12208","+42.654658","-073.805866","ALBANY","NY","ALBANY","STANDARD"
+"12209","+42.677953","-073.910190","ALBANY","NY","ALBANY","STANDARD"
+"12210","+42.683079","-073.758115","ALBANY","NY","ALBANY","STANDARD"
+"12211","+42.712973","-073.773868","ALBANY","NY","ALBANY","STANDARD"
+"12212","+42.716774","-073.810373","ALBANY","NY","ALBANY","STANDARD"
+"12214","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12220","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12222","+42.692909","-073.838035","ALBANY","NY","ALBANY","UNIQUE"
+"12223","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12224","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12225","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12226","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12227","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12228","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12229","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12230","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12231","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12232","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12233","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12234","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12235","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12236","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12237","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12238","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12239","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12240","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12241","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12242","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12243","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12244","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12245","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12246","+42.647079","-073.750314","ALBANY","NY","ALBANY","UNIQUE"
+"12247","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12248","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12249","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12250","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12252","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12255","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12256","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12257","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12260","+42.614852","-073.970812","ALBANY","NY","ALBANY","STANDARD"
+"12261","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12262","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12288","+42.614852","-073.970812","ALBANY","NY","ALBANY","UNIQUE"
+"12301","+42.833261","-074.058015","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12302","+42.880035","-073.991321","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12303","+42.782276","-073.944818","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12304","+42.788176","-073.899917","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12305","+42.812776","-073.943368","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12306","+42.816438","-074.052713","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12307","+42.805376","-073.934868","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12308","+42.835926","-073.920467","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12309","+42.809077","-073.869316","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12325","+42.833261","-074.058015","SCHENECTADY","NY","SCHENECTADY","STANDARD"
+"12345","+42.833261","-074.058015","SCHENECTADY","NY","SCHENECTADY","UNIQUE"
+"12401","+41.969730","-074.066780","KINGSTON","NY","ULSTER","STANDARD"
+"12402","+41.878801","-074.345684","KINGSTON","NY","ULSTER","STANDARD"
+"12404","+41.949147","-074.130688","ACCORD","NY","ULSTER","STANDARD"
+"12405","+42.315975","-074.065515","ACRA","NY","GREENE","STANDARD"
+"12406","+42.141725","-074.572054","ARKVILLE","NY","DELAWARE","STANDARD"
+"12407","+42.332859","-074.367866","ASHLAND","NY","GREENE","STANDARD"
+"12409","+42.054666","-074.192451","BEARSVILLE","NY","ULSTER","STANDARD"
+"12410","+42.073965","-074.453033","BIG INDIAN","NY","ULSTER","STANDARD"
+"12411","+41.875232","-074.043557","BLOOMINGTON","NY","ULSTER","STANDARD"
+"12412","+41.998413","-074.265437","BOICEVILLE","NY","ULSTER","STANDARD"
+"12413","+42.301789","-074.029434","CAIRO","NY","GREENE","STANDARD"
+"12414","+42.258459","-074.021968","CATSKILL","NY","GREENE","STANDARD"
+"12416","+42.095023","-074.271661","CHICHESTER","NY","ULSTER","STANDARD"
+"12417","+41.907604","-073.989254","CONNELLY","NY","ULSTER","PO BOX ONLY"
+"12418","+42.368277","-074.179384","CORNWALLVILLE","NY","GREENE","STANDARD"
+"12419","+41.856903","-074.111235","COTTEKILL","NY","ULSTER","STANDARD"
+"12420","+41.669831","-074.380138","CRAGSMOOR","NY","ULSTER","PO BOX ONLY"
+"12421","+42.235727","-074.569690","DENVER","NY","DELAWARE","STANDARD"
+"12422","+42.307188","-074.200237","DURHAM","NY","GREENE","STANDARD"
+"12423","+42.377483","-074.123477","EAST DURHAM","NY","GREENE","STANDARD"
+"12424","+42.280410","-074.155490","EAST JEWETT","NY","GREENE","STANDARD"
+"12427","+42.169082","-074.129580","ELKA PARK","NY","GREENE","STANDARD"
+"12428","+41.897181","-074.253996","ELLENVILLE","NY","ULSTER","STANDARD"
+"12429","+41.816228","-073.992565","ESOPUS","NY","ULSTER","PO BOX ONLY"
+"12430","+42.177175","-074.547279","FLEISCHMANNS","NY","DELAWARE","STANDARD"
+"12431","+42.336112","-074.024147","FREEHOLD","NY","GREENE","STANDARD"
+"12432","+41.949795","-074.003246","GLASCO","NY","ULSTER","PO BOX ONLY"
+"12433","+42.008413","-074.147995","GLENFORD","NY","ULSTER","STANDARD"
+"12434","+42.320684","-074.459223","GRAND GORGE","NY","DELAWARE","STANDARD"
+"12435","+41.727613","-074.515647","GREENFIELD PARK","NY","ULSTER","STANDARD"
+"12436","+42.195510","-074.102319","HAINES FALLS","NY","GREENE","PO BOX ONLY"
+"12438","+42.183045","-074.925617","HALCOTTSVILLE","NY","DELAWARE","PO BOX ONLY"
+"12439","+42.293905","-074.185279","HENSONVILLE","NY","GREENE","STANDARD"
+"12440","+41.872233","-074.146678","HIGH FALLS","NY","ULSTER","STANDARD"
+"12441","+41.878801","-074.345684","HIGHMOUNT","NY","ULSTER","PO BOX ONLY"
+"12442","+42.233275","-074.241582","HUNTER","NY","GREENE","STANDARD"
+"12443","+41.853723","-074.115476","HURLEY","NY","ULSTER","STANDARD"
+"12444","+42.264524","-074.295888","JEWETT","NY","GREENE","STANDARD"
+"12446","+41.884748","-074.232063","KERHONKSON","NY","ULSTER","STANDARD"
+"12448","+42.083209","-074.191963","LAKE HILL","NY","ULSTER","STANDARD"
+"12449","+41.883711","-074.182479","LAKE KATRINE","NY","ULSTER","STANDARD"
+"12450","+42.208809","-074.163793","LANESVILLE","NY","GREENE","STANDARD"
+"12451","+42.304064","-073.930812","LEEDS","NY","GREENE","STANDARD"
+"12452","+42.223407","-074.386635","LEXINGTON","NY","GREENE","PO BOX ONLY"
+"12453","+42.098698","-073.935418","MALDEN ON HUDSON","NY","ULSTER","PO BOX ONLY"
+"12454","+42.282466","-074.160193","MAPLECREST","NY","GREENE","STANDARD"
+"12455","+42.185189","-074.617819","MARGARETVILLE","NY","DELAWARE","STANDARD"
+"12456","+42.037136","-073.992829","MOUNT MARION","NY","ULSTER","STANDARD"
+"12457","+41.874300","-074.168979","MOUNT TREMPER","NY","ULSTER","STANDARD"
+"12458","+41.801370","-074.420108","NAPANOCH","NY","ULSTER","STANDARD"
+"12459","+42.209430","-074.683726","NEW KINGSTON","NY","DELAWARE","PO BOX ONLY"
+"12460","+42.409721","-074.192105","OAK HILL","NY","GREENE","STANDARD"
+"12461","+41.875001","-074.273362","OLIVEBRIDGE","NY","ULSTER","STANDARD"
+"12463","+42.197886","-074.009950","PALENVILLE","NY","GREENE","STANDARD"
+"12464","+42.019668","-074.228732","PHOENICIA","NY","ULSTER","STANDARD"
+"12465","+42.136293","-074.473639","PINE HILL","NY","ULSTER","STANDARD"
+"12466","+41.894812","-073.976653","PORT EWEN","NY","ULSTER","STANDARD"
+"12468","+42.286917","-074.385762","PRATTSVILLE","NY","GREENE","STANDARD"
+"12469","+42.464687","-074.213992","PRESTON HOLLOW","NY","ALBANY","STANDARD"
+"12470","+42.282915","-074.018409","PURLING","NY","GREENE","STANDARD"
+"12471","+41.840304","-074.030611","RIFTON","NY","ULSTER","PO BOX ONLY"
+"12472","+41.873367","-074.074621","ROSENDALE","NY","ULSTER","STANDARD"
+"12473","+42.276462","-074.044432","ROUND TOP","NY","GREENE","STANDARD"
+"12474","+42.295703","-074.563088","ROXBURY","NY","DELAWARE","STANDARD"
+"12475","+42.017632","-074.007868","RUBY","NY","ULSTER","PO BOX ONLY"
+"12477","+41.996982","-074.202816","SAUGERTIES","NY","ULSTER","STANDARD"
+"12480","+41.911181","-074.407894","SHANDAKEN","NY","ULSTER","STANDARD"
+"12481","+41.970903","-074.218443","SHOKAN","NY","ULSTER","STANDARD"
+"12482","+42.267617","-073.986354","SOUTH CAIRO","NY","GREENE","STANDARD"
+"12483","+41.663895","-074.424533","SPRING GLEN","NY","ULSTER","PO BOX ONLY"
+"12484","+41.846274","-074.207310","STONE RIDGE","NY","ULSTER","STANDARD"
+"12485","+42.195922","-074.137242","TANNERSVILLE","NY","GREENE","STANDARD"
+"12486","+41.837953","-074.232241","TILLSON","NY","ULSTER","STANDARD"
+"12487","+41.857076","-074.017907","ULSTER PARK","NY","ULSTER","STANDARD"
+"12489","+41.760604","-074.353531","WAWARSING","NY","ULSTER","PO BOX ONLY"
+"12490","+42.108689","-073.934577","WEST CAMP","NY","ULSTER","PO BOX ONLY"
+"12491","+41.983752","-074.124371","WEST HURLEY","NY","ULSTER","STANDARD"
+"12492","+42.206787","-074.375508","WEST KILL","NY","GREENE","STANDARD"
+"12493","+41.795276","-073.980908","WEST PARK","NY","ULSTER","PO BOX ONLY"
+"12494","+41.972572","-074.267623","WEST SHOKAN","NY","ULSTER","STANDARD"
+"12495","+42.046885","-074.203575","WILLOW","NY","ULSTER","STANDARD"
+"12496","+42.320273","-074.231589","WINDHAM","NY","GREENE","STANDARD"
+"12498","+41.883076","-074.169764","WOODSTOCK","NY","ULSTER","STANDARD"
+"12501","+41.826491","-073.710901","AMENIA","NY","DUTCHESS","STANDARD"
+"12502","+42.067399","-073.657698","ANCRAM","NY","COLUMBIA","STANDARD"
+"12503","+42.043039","-073.587575","ANCRAMDALE","NY","COLUMBIA","STANDARD"
+"12504","+42.035434","-073.909234","ANNANDALE ON HUDSON","NY","DUTCHESS","STANDARD"
+"12506","+41.759905","-073.743714","BANGALL","NY","DUTCHESS","PO BOX ONLY"
+"12507","+42.000547","-073.919899","BARRYTOWN","NY","DUTCHESS","STANDARD"
+"12508","+41.712677","-073.773082","BEACON","NY","DUTCHESS","STANDARD"
+"12510","+41.759905","-073.743714","BILLINGS","NY","DUTCHESS","PO BOX ONLY"
+"12511","+41.759905","-073.743714","CASTLE POINT","NY","DUTCHESS","PO BOX ONLY"
+"12512","+41.552793","-073.968183","CHELSEA","NY","DUTCHESS","PO BOX ONLY"
+"12513","+42.206862","-073.694642","CLAVERACK","NY","COLUMBIA","STANDARD"
+"12514","+41.867364","-073.777256","CLINTON CORNERS","NY","DUTCHESS","STANDARD"
+"12515","+41.682335","-074.057990","CLINTONDALE","NY","ULSTER","STANDARD"
+"12516","+42.099322","-073.576102","COPAKE","NY","COLUMBIA","STANDARD"
+"12517","+42.130934","-073.548337","COPAKE FALLS","NY","COLUMBIA","STANDARD"
+"12518","+41.348593","-074.135167","CORNWALL","NY","ORANGE","STANDARD"
+"12520","+41.431474","-074.132883","CORNWALL ON HUDSON","NY","ORANGE","STANDARD"
+"12521","+42.190488","-073.644650","CRARYVILLE","NY","COLUMBIA","STANDARD"
+"12522","+41.800316","-073.687324","DOVER PLAINS","NY","DUTCHESS","STANDARD"
+"12523","+42.119528","-073.697297","ELIZAVILLE","NY","COLUMBIA","STANDARD"
+"12524","+41.618980","-073.847308","FISHKILL","NY","DUTCHESS","STANDARD"
+"12525","+41.677151","-074.173870","GARDINER","NY","ULSTER","STANDARD"
+"12526","+42.121298","-073.792924","GERMANTOWN","NY","COLUMBIA","STANDARD"
+"12527","+41.520249","-073.933259","GLENHAM","NY","DUTCHESS","PO BOX ONLY"
+"12528","+41.720945","-074.009481","HIGHLAND","NY","ULSTER","STANDARD"
+"12529","+42.193270","-073.550028","HILLSDALE","NY","COLUMBIA","STANDARD"
+"12530","+42.210991","-073.687001","HOLLOWVILLE","NY","COLUMBIA","PO BOX ONLY"
+"12531","+41.549045","-073.670325","HOLMES","NY","DUTCHESS","STANDARD"
+"12533","+41.748948","-073.766191","HOPEWELL JUNCTION","NY","DUTCHESS","STANDARD"
+"12534","+42.184313","-073.742997","HUDSON","NY","COLUMBIA","STANDARD"
+"12537","+41.582437","-073.936281","HUGHSONVILLE","NY","DUTCHESS","PO BOX ONLY"
+"12538","+41.813468","-073.814913","HYDE PARK","NY","DUTCHESS","STANDARD"
+"12540","+41.633029","-073.743183","LAGRANGEVILLE","NY","DUTCHESS","STANDARD"
+"12541","+42.142068","-073.757399","LIVINGSTON","NY","COLUMBIA","PO BOX ONLY"
+"12542","+41.612647","-074.002802","MARLBORO","NY","ULSTER","STANDARD"
+"12543","+41.357625","-074.230587","MAYBROOK","NY","ORANGE","STANDARD"
+"12544","+42.259623","-073.667962","MELLENVILLE","NY","COLUMBIA","PO BOX ONLY"
+"12545","+41.832012","-073.637175","MILLBROOK","NY","DUTCHESS","STANDARD"
+"12546","+41.938460","-073.546336","MILLERTON","NY","DUTCHESS","STANDARD"
+"12547","+41.644832","-074.068056","MILTON","NY","ULSTER","STANDARD"
+"12548","+41.672278","-074.103276","MODENA","NY","ULSTER","STANDARD"
+"12549","+41.405901","-074.255717","MONTGOMERY","NY","ORANGE","STANDARD"
+"12550","+41.385370","-074.185363","NEWBURGH","NY","ORANGE","STANDARD"
+"12551","+41.387822","-074.354699","NEWBURGH","NY","ORANGE","STANDARD"
+"12552","+41.387822","-074.354699","NEWBURGH","NY","ORANGE","STANDARD"
+"12553","+41.413667","-074.311974","NEW WINDSOR","NY","ORANGE","STANDARD"
+"12555","+41.387822","-074.354699","MID HUDSON","NY","ORANGE","PO BOX ONLY"
+"12561","+41.746380","-074.109241","NEW PALTZ","NY","ULSTER","STANDARD"
+"12563","+41.485285","-073.595066","PATTERSON","NY","PUTNAM","STANDARD"
+"12564","+41.663759","-073.590491","PAWLING","NY","DUTCHESS","STANDARD"
+"12565","+42.250141","-073.659054","PHILMONT","NY","COLUMBIA","PO BOX ONLY"
+"12566","+41.405485","-074.219343","PINE BUSH","NY","ORANGE","STANDARD"
+"12567","+41.952681","-073.636330","PINE PLAINS","NY","DUTCHESS","STANDARD"
+"12568","+41.641207","-074.078050","PLATTEKILL","NY","ULSTER","PO BOX ONLY"
+"12569","+41.825708","-073.783655","PLEASANT VALLEY","NY","DUTCHESS","STANDARD"
+"12570","+41.646389","-073.650107","POUGHQUAG","NY","DUTCHESS","STANDARD"
+"12571","+41.808427","-073.786847","RED HOOK","NY","DUTCHESS","STANDARD"
+"12572","+41.836548","-073.760423","RHINEBECK","NY","DUTCHESS","STANDARD"
+"12574","+41.915068","-073.951730","RHINECLIFF","NY","DUTCHESS","PO BOX ONLY"
+"12575","+41.507550","-074.156394","ROCK TAVERN","NY","ORANGE","STANDARD"
+"12577","+41.437176","-074.121804","SALISBURY MILLS","NY","ORANGE","STANDARD"
+"12578","+41.812460","-073.786647","SALT POINT","NY","DUTCHESS","STANDARD"
+"12580","+41.881636","-073.724550","STAATSBURG","NY","DUTCHESS","STANDARD"
+"12581","+41.913511","-073.695442","STANFORDVILLE","NY","DUTCHESS","STANDARD"
+"12582","+41.554509","-073.726670","STORMVILLE","NY","DUTCHESS","STANDARD"
+"12583","+41.909683","-073.749214","TIVOLI","NY","DUTCHESS","STANDARD"
+"12584","+41.464073","-074.059104","VAILS GATE","NY","ORANGE","PO BOX ONLY"
+"12585","+41.716145","-073.690109","VERBANK","NY","DUTCHESS","STANDARD"
+"12586","+41.406785","-074.267310","WALDEN","NY","ORANGE","STANDARD"
+"12588","+41.878801","-074.345684","WALKER VALLEY","NY","ULSTER","PO BOX ONLY"
+"12589","+41.631653","-074.154472","WALLKILL","NY","ULSTER","STANDARD"
+"12590","+41.736948","-073.741141","WAPPINGERS FALLS","NY","DUTCHESS","STANDARD"
+"12592","+41.802285","-073.560425","WASSAIC","NY","DUTCHESS","STANDARD"
+"12593","+42.243991","-073.641076","WEST COPAKE","NY","COLUMBIA","STANDARD"
+"12594","+41.672789","-073.584346","WINGDALE","NY","DUTCHESS","STANDARD"
+"12601","+41.695839","-073.896164","POUGHKEEPSIE","NY","DUTCHESS","STANDARD"
+"12602","+41.759905","-073.743714","POUGHKEEPSIE","NY","DUTCHESS","STANDARD"
+"12603","+41.690707","-073.862074","POUGHKEEPSIE","NY","DUTCHESS","STANDARD"
+"12604","+41.759905","-073.743714","POUGHKEEPSIE","NY","DUTCHESS","UNIQUE"
+"12701","+41.686944","-074.677156","MONTICELLO","NY","SULLIVAN","STANDARD"
+"12719","+41.486186","-074.915176","BARRYVILLE","NY","SULLIVAN","STANDARD"
+"12720","+41.661466","-074.911474","BETHEL","NY","SULLIVAN","STANDARD"
+"12721","+41.638680","-074.721754","BLOOMINGBURG","NY","SULLIVAN","STANDARD"
+"12722","+41.719016","-074.755373","BURLINGHAM","NY","SULLIVAN","PO BOX ONLY"
+"12723","+41.775202","-075.018070","CALLICOON","NY","SULLIVAN","STANDARD"
+"12724","+41.719016","-074.755373","CALLICOON CENTER","NY","SULLIVAN","PO BOX ONLY"
+"12725","+41.899285","-074.588020","CLARYVILLE","NY","SULLIVAN","STANDARD"
+"12726","+41.691959","-074.974074","COCHECTON","NY","SULLIVAN","STANDARD"
+"12727","+41.719016","-074.755373","COCHECTON CENTER","NY","SULLIVAN","PO BOX ONLY"
+"12729","+41.403723","-074.425265","CUDDEBACKVILLE","NY","ORANGE","STANDARD"
+"12732","+41.517426","-074.845788","ELDRED","NY","SULLIVAN","STANDARD"
+"12733","+41.647052","-074.537252","FALLSBURG","NY","SULLIVAN","STANDARD"
+"12734","+41.734858","-074.734508","FERNDALE","NY","SULLIVAN","STANDARD"
+"12736","+41.878194","-075.034258","FREMONT CENTER","NY","SULLIVAN","STANDARD"
+"12737","+41.547309","-074.820881","GLEN SPEY","NY","SULLIVAN","STANDARD"
+"12738","+41.656753","-074.568565","GLEN WILD","NY","SULLIVAN","STANDARD"
+"12739","+41.450914","-074.601097","GODEFFROY","NY","ORANGE","STANDARD"
+"12740","+41.818383","-074.748053","GRAHAMSVILLE","NY","SULLIVAN","STANDARD"
+"12741","+41.839135","-075.053420","HANKINS","NY","SULLIVAN","STANDARD"
+"12742","+41.710156","-074.715360","HARRIS","NY","SULLIVAN","STANDARD"
+"12743","+41.531346","-074.849136","HIGHLAND LAKE","NY","SULLIVAN","STANDARD"
+"12745","+41.762944","-075.030592","HORTONVILLE","NY","SULLIVAN","STANDARD"
+"12746","+41.437689","-074.640019","HUGUENOT","NY","ORANGE","STANDARD"
+"12747","+41.770283","-074.726066","HURLEYVILLE","NY","SULLIVAN","STANDARD"
+"12748","+41.782874","-074.905417","JEFFERSONVILLE","NY","SULLIVAN","STANDARD"
+"12749","+41.687384","-074.835807","KAUNEONGA LAKE","NY","SULLIVAN","PO BOX ONLY"
+"12750","+41.729581","-074.961146","KENOZA LAKE","NY","SULLIVAN","STANDARD"
+"12751","+41.694655","-074.682731","KIAMESHA LAKE","NY","SULLIVAN","STANDARD"
+"12752","+41.758563","-074.946306","LAKE HUNTINGTON","NY","SULLIVAN","STANDARD"
+"12754","+41.719940","-074.669340","LIBERTY","NY","SULLIVAN","STANDARD"
+"12758","+41.818205","-074.802549","LIVINGSTON MANOR","NY","SULLIVAN","STANDARD"
+"12759","+41.786516","-074.658843","LOCH SHELDRAKE","NY","SULLIVAN","STANDARD"
+"12760","+41.871276","-075.076328","LONG EDDY","NY","SULLIVAN","STANDARD"
+"12762","+41.686123","-074.783554","MONGAUP VALLEY","NY","SULLIVAN","STANDARD"
+"12763","+41.804690","-074.696318","MOUNTAIN DALE","NY","SULLIVAN","STANDARD"
+"12764","+41.595908","-074.962330","NARROWSBURG","NY","SULLIVAN","STANDARD"
+"12765","+41.865656","-074.609020","NEVERSINK","NY","SULLIVAN","STANDARD"
+"12766","+41.820897","-074.995771","NORTH BRANCH","NY","SULLIVAN","STANDARD"
+"12767","+41.719016","-074.755373","OBERNBURG","NY","SULLIVAN","PO BOX ONLY"
+"12768","+41.841414","-074.857261","PARKSVILLE","NY","SULLIVAN","STANDARD"
+"12769","+41.651453","-074.436159","PHILLIPSPORT","NY","SULLIVAN","PO BOX ONLY"
+"12770","+41.446322","-074.856932","POND EDDY","NY","SULLIVAN","STANDARD"
+"12771","+41.357119","-074.498396","PORT JERVIS","NY","ORANGE","STANDARD"
+"12775","+41.619506","-074.575902","ROCK HILL","NY","SULLIVAN","STANDARD"
+"12776","+41.819249","-074.951782","ROSCOE","NY","SULLIVAN","STANDARD"
+"12777","+41.552911","-074.603366","FORESTBURGH","NY","SULLIVAN","STANDARD"
+"12778","+41.661538","-074.817751","SMALLWOOD","NY","SULLIVAN","PO BOX ONLY"
+"12779","+41.770195","-074.716843","SOUTH FALLSBURG","NY","SULLIVAN","STANDARD"
+"12780","+41.376892","-074.459687","SPARROW BUSH","NY","ORANGE","STANDARD"
+"12781","+41.719016","-074.755373","SUMMITVILLE","NY","SULLIVAN","PO BOX ONLY"
+"12782","+41.881485","-074.430063","SUNDOWN","NY","ULSTER","STANDARD"
+"12783","+41.657319","-074.840778","SWAN LAKE","NY","SULLIVAN","STANDARD"
+"12784","+41.714311","-074.584061","THOMPSONVILLE","NY","SULLIVAN","PO BOX ONLY"
+"12785","+41.719016","-074.755373","WESTBROOKVILLE","NY","SULLIVAN","STANDARD"
+"12786","+41.647880","-074.811773","WHITE LAKE","NY","SULLIVAN","STANDARD"
+"12787","+41.800193","-074.828611","WHITE SULPHUR SPRINGS","NY","SULLIVAN","STANDARD"
+"12788","+41.810974","-074.729403","WOODBOURNE","NY","SULLIVAN","STANDARD"
+"12789","+41.797345","-074.671013","WOODRIDGE","NY","SULLIVAN","STANDARD"
+"12790","+41.592331","-074.552644","WURTSBORO","NY","SULLIVAN","STANDARD"
+"12791","+41.695449","-074.746874","YOUNGSVILLE","NY","SULLIVAN","STANDARD"
+"12792","+41.591075","-074.749722","YULAN","NY","SULLIVAN","STANDARD"
+"12801","+43.318880","-073.669061","GLENS FALLS","NY","WARREN","STANDARD"
+"12803","+43.283561","-073.629401","SOUTH GLENS FALLS","NY","SARATOGA","STANDARD"
+"12804","+43.489472","-073.789563","QUEENSBURY","NY","WARREN","STANDARD"
+"12808","+43.708338","-073.794147","ADIRONDACK","NY","WARREN","STANDARD"
+"12809","+43.280711","-073.484828","ARGYLE","NY","WASHINGTON","STANDARD"
+"12810","+43.598860","-073.943693","ATHOL","NY","WARREN","STANDARD"
+"12811","+43.624220","-074.061201","BAKERS MILLS","NY","WARREN","PO BOX ONLY"
+"12812","+43.667618","-074.456913","BLUE MOUNTAIN LAKE","NY","HAMILTON","STANDARD"
+"12814","+43.574329","-073.677564","BOLTON LANDING","NY","WARREN","STANDARD"
+"12815","+43.677503","-073.773434","BRANT LAKE","NY","WARREN","STANDARD"
+"12816","+43.068526","-073.392229","CAMBRIDGE","NY","WASHINGTON","STANDARD"
+"12817","+43.522364","-073.794491","CHESTERTOWN","NY","WARREN","STANDARD"
+"12819","+43.614194","-073.503056","CLEMONS","NY","WASHINGTON","STANDARD"
+"12820","+43.471810","-073.639291","CLEVERDALE","NY","WARREN","PO BOX ONLY"
+"12821","+43.461440","-073.403287","COMSTOCK","NY","WASHINGTON","STANDARD"
+"12822","+43.241967","-073.890739","CORINTH","NY","SARATOGA","STANDARD"
+"12823","+43.154262","-073.458063","COSSAYUNA","NY","WASHINGTON","STANDARD"
+"12824","+43.560729","-073.755545","DIAMOND POINT","NY","WARREN","STANDARD"
+"12827","+43.443936","-073.489198","FORT ANN","NY","WASHINGTON","STANDARD"
+"12828","+43.371195","-073.434566","FORT EDWARD","NY","WASHINGTON","STANDARD"
+"12831","+43.204261","-073.707415","GANSEVOORT","NY","SARATOGA","STANDARD"
+"12832","+43.369373","-073.331692","GRANVILLE","NY","WASHINGTON","STANDARD"
+"12833","+43.181214","-073.906293","GREENFIELD CENTER","NY","SARATOGA","STANDARD"
+"12834","+43.212754","-073.434261","GREENWICH","NY","WASHINGTON","STANDARD"
+"12835","+43.287589","-073.976958","HADLEY","NY","SARATOGA","STANDARD"
+"12836","+43.730225","-073.543498","HAGUE","NY","WARREN","STANDARD"
+"12837","+43.492705","-073.278904","HAMPTON","NY","WASHINGTON","STANDARD"
+"12838","+43.354304","-073.404906","HARTFORD","NY","WASHINGTON","STANDARD"
+"12839","+43.203596","-073.468589","HUDSON FALLS","NY","WASHINGTON","STANDARD"
+"12841","+43.646953","-073.508308","HULETTS LANDING","NY","WASHINGTON","PO BOX ONLY"
+"12842","+43.749928","-074.327593","INDIAN LAKE","NY","HAMILTON","STANDARD"
+"12843","+43.585960","-073.916498","JOHNSBURG","NY","WARREN","STANDARD"
+"12844","+43.475353","-073.627156","KATTSKILL BAY","NY","WARREN","STANDARD"
+"12845","+43.518611","-073.875462","LAKE GEORGE","NY","WARREN","STANDARD"
+"12846","+43.455598","-073.771547","LAKE LUZERNE","NY","WARREN","STANDARD"
+"12847","+43.953253","-074.440029","LONG LAKE","NY","HAMILTON","STANDARD"
+"12848","+43.100123","-073.524554","MIDDLE FALLS","NY","WASHINGTON","PO BOX ONLY"
+"12849","+43.442087","-073.290902","MIDDLE GRANVILLE","NY","WASHINGTON","STANDARD"
+"12850","+43.185956","-073.983737","MIDDLE GROVE","NY","SARATOGA","STANDARD"
+"12851","+44.214452","-073.787317","MINERVA","NY","ESSEX","STANDARD"
+"12852","+44.145678","-073.815204","NEWCOMB","NY","ESSEX","STANDARD"
+"12853","+43.622181","-073.922201","NORTH CREEK","NY","WARREN","STANDARD"
+"12854","+43.452517","-073.340950","NORTH GRANVILLE","NY","WASHINGTON","STANDARD"
+"12855","+43.970736","-073.721139","NORTH HUDSON","NY","ESSEX","STANDARD"
+"12856","+43.723665","-074.087329","NORTH RIVER","NY","WARREN","PO BOX ONLY"
+"12857","+44.145678","-073.815204","OLMSTEDVILLE","NY","ESSEX","STANDARD"
+"12858","+43.879451","-073.400254","PARADOX","NY","ESSEX","STANDARD"
+"12859","+43.201380","-073.891854","PORTER CORNERS","NY","SARATOGA","STANDARD"
+"12860","+43.592829","-073.784407","POTTERSVILLE","NY","WARREN","STANDARD"
+"12861","+43.743816","-073.422181","PUTNAM STATION","NY","WASHINGTON","STANDARD"
+"12862","+43.675377","-073.932509","RIPARIUS","NY","WARREN","PO BOX ONLY"
+"12863","+43.061305","-073.923080","ROCK CITY FALLS","NY","SARATOGA","STANDARD"
+"12864","+43.667618","-074.456913","SABAEL","NY","HAMILTON","PO BOX ONLY"
+"12865","+43.225966","-073.348736","SALEM","NY","WASHINGTON","STANDARD"
+"12866","+43.101145","-073.850623","SARATOGA SPRINGS","NY","SARATOGA","STANDARD"
+"12870","+43.841273","-073.759213","SCHROON LAKE","NY","ESSEX","STANDARD"
+"12871","+43.130211","-073.643205","SCHUYLERVILLE","NY","SARATOGA","STANDARD"
+"12872","+44.145678","-073.815204","SEVERANCE","NY","ESSEX","PO BOX ONLY"
+"12873","+43.104587","-073.314179","SHUSHAN","NY","WASHINGTON","STANDARD"
+"12874","+43.693173","-073.505019","SILVER BAY","NY","WARREN","STANDARD"
+"12878","+43.464398","-073.876364","STONY CREEK","NY","WARREN","STANDARD"
+"12879","+44.145678","-073.815204","NEWCOMB","NY","ESSEX","STANDARD"
+"12883","+43.852071","-073.478024","TICONDEROGA","NY","ESSEX","STANDARD"
+"12884","+43.088397","-073.591652","VICTORY MILLS","NY","SARATOGA","PO BOX ONLY"
+"12885","+43.570457","-073.859928","WARRENSBURG","NY","WARREN","STANDARD"
+"12886","+43.631297","-073.936399","WEVERTOWN","NY","WARREN","STANDARD"
+"12887","+43.492815","-073.421536","WHITEHALL","NY","WASHINGTON","STANDARD"
+"12901","+44.711870","-073.637104","PLATTSBURGH","NY","CLINTON","STANDARD"
+"12903","+44.685411","-073.447398","PLATTSBURGH","NY","CLINTON","STANDARD"
+"12910","+44.865209","-073.577683","ALTONA","NY","CLINTON","STANDARD"
+"12911","+44.528081","-073.471946","KEESEVILLE","NY","CLINTON","STANDARD"
+"12912","+44.711326","-073.648386","AU SABLE FORKS","NY","CLINTON","STANDARD"
+"12913","+44.401213","-074.070277","BLOOMINGDALE","NY","ESSEX","STANDARD"
+"12914","+44.674942","-074.444789","BOMBAY","NY","FRANKLIN","STANDARD"
+"12915","+44.552725","-074.317958","BRAINARDSVILLE","NY","FRANKLIN","PO BOX ONLY"
+"12916","+44.877630","-074.489379","BRUSHTON","NY","FRANKLIN","STANDARD"
+"12917","+44.932057","-074.200948","BURKE","NY","FRANKLIN","STANDARD"
+"12918","+44.686162","-073.670249","CADYVILLE","NY","CLINTON","STANDARD"
+"12919","+44.726056","-073.578285","CHAMPLAIN","NY","CLINTON","STANDARD"
+"12920","+44.932727","-074.068371","CHATEAUGAY","NY","FRANKLIN","STANDARD"
+"12921","+44.879906","-073.452578","CHAZY","NY","CLINTON","STANDARD"
+"12922","+44.287829","-074.702338","CHILDWOLD","NY","SAINT LAWRENCE","STANDARD"
+"12923","+44.916842","-073.932053","CHURUBUSCO","NY","CLINTON","STANDARD"
+"12924","+44.706561","-073.744555","KEESEVILLE","NY","CLINTON","STANDARD"
+"12926","+44.944145","-074.327316","CONSTABLE","NY","FRANKLIN","STANDARD"
+"12927","+44.228969","-074.858103","CRANBERRY LAKE","NY","SAINT LAWRENCE","PO BOX ONLY"
+"12928","+43.930616","-073.588540","CROWN POINT","NY","ESSEX","STANDARD"
+"12929","+44.847709","-073.582317","DANNEMORA","NY","CLINTON","PO BOX ONLY"
+"12930","+44.552725","-074.317958","DICKINSON CENTER","NY","FRANKLIN","STANDARD"
+"12932","+44.145678","-073.815204","ELIZABETHTOWN","NY","ESSEX","STANDARD"
+"12933","+44.881962","-073.963279","ELLENBURG","NY","CLINTON","PO BOX ONLY"
+"12934","+44.892243","-073.907936","ELLENBURG CENTER","NY","CLINTON","STANDARD"
+"12935","+44.801467","-073.739157","ELLENBURG DEPOT","NY","CLINTON","STANDARD"
+"12936","+44.273412","-073.377434","ESSEX","NY","ESSEX","STANDARD"
+"12937","+44.955977","-074.486740","FORT COVINGTON","NY","FRANKLIN","STANDARD"
+"12939","+44.552725","-074.317958","GABRIELS","NY","FRANKLIN","PO BOX ONLY"
+"12941","+44.145678","-073.815204","JAY","NY","ESSEX","STANDARD"
+"12942","+44.145678","-073.815204","KEENE","NY","ESSEX","STANDARD"
+"12943","+44.202397","-073.773111","KEENE VALLEY","NY","ESSEX","STANDARD"
+"12944","+44.343063","-073.436913","KEESEVILLE","NY","ESSEX","STANDARD"
+"12945","+44.552725","-074.317958","LAKE CLEAR","NY","FRANKLIN","STANDARD"
+"12946","+44.130663","-073.734652","LAKE PLACID","NY","ESSEX","STANDARD"
+"12949","+44.746861","-074.660413","LAWRENCEVILLE","NY","SAINT LAWRENCE","STANDARD"
+"12950","+44.145678","-073.815204","LEWIS","NY","ESSEX","STANDARD"
+"12952","+44.734587","-073.900452","LYON MOUNTAIN","NY","CLINTON","STANDARD"
+"12953","+44.859117","-074.288237","MALONE","NY","FRANKLIN","STANDARD"
+"12955","+44.804316","-073.972990","LYON MOUNTAIN","NY","CLINTON","STANDARD"
+"12956","+44.124040","-073.491335","MINEVILLE","NY","ESSEX","STANDARD"
+"12957","+44.856880","-074.552321","MOIRA","NY","FRANKLIN","STANDARD"
+"12958","+44.792956","-073.661296","MOOERS","NY","CLINTON","STANDARD"
+"12959","+44.762920","-073.615749","MOOERS FORKS","NY","CLINTON","STANDARD"
+"12960","+44.041863","-073.505265","MORIAH","NY","ESSEX","STANDARD"
+"12961","+44.055155","-073.534677","MORIAH CENTER","NY","ESSEX","STANDARD"
+"12962","+44.617784","-073.605062","MORRISONVILLE","NY","CLINTON","STANDARD"
+"12964","+44.145678","-073.815204","NEW RUSSIA","NY","ESSEX","STANDARD"
+"12965","+44.726424","-074.678121","NICHOLVILLE","NY","SAINT LAWRENCE","STANDARD"
+"12966","+44.853200","-074.419121","NORTH BANGOR","NY","FRANKLIN","STANDARD"
+"12967","+44.761862","-074.680488","NORTH LAWRENCE","NY","SAINT LAWRENCE","STANDARD"
+"12969","+44.552725","-074.317958","OWLS HEAD","NY","FRANKLIN","STANDARD"
+"12970","+44.552725","-074.317958","PAUL SMITHS","NY","FRANKLIN","STANDARD"
+"12972","+44.666070","-073.569167","PERU","NY","CLINTON","STANDARD"
+"12973","+44.234289","-074.555957","PIERCEFIELD","NY","SAINT LAWRENCE","PO BOX ONLY"
+"12974","+44.087072","-073.461308","PORT HENRY","NY","ESSEX","STANDARD"
+"12975","+44.526437","-073.409243","PORT KENT","NY","ESSEX","PO BOX ONLY"
+"12976","+44.552725","-074.317958","RAINBOW LAKE","NY","FRANKLIN","PO BOX ONLY"
+"12977","+44.145678","-073.815204","RAY BROOK","NY","ESSEX","PO BOX ONLY"
+"12978","+44.664956","-073.761204","REDFORD","NY","CLINTON","STANDARD"
+"12979","+44.864633","-073.626615","ROUSES POINT","NY","CLINTON","STANDARD"
+"12980","+44.657819","-074.515511","SAINT REGIS FALLS","NY","FRANKLIN","STANDARD"
+"12981","+44.624413","-073.809266","SARANAC","NY","CLINTON","STANDARD"
+"12983","+44.583429","-074.272104","SARANAC LAKE","NY","FRANKLIN","STANDARD"
+"12985","+44.570072","-073.678749","SCHUYLER FALLS","NY","CLINTON","STANDARD"
+"12986","+44.599971","-074.294012","TUPPER LAKE","NY","FRANKLIN","STANDARD"
+"12987","+44.145678","-073.815204","UPPER JAY","NY","ESSEX","STANDARD"
+"12989","+44.552725","-074.317958","VERMONTVILLE","NY","FRANKLIN","STANDARD"
+"12992","+44.827274","-073.513225","WEST CHAZY","NY","CLINTON","STANDARD"
+"12993","+44.187830","-073.434541","WESTPORT","NY","ESSEX","STANDARD"
+"12995","+44.805681","-074.252254","WHIPPLEVILLE","NY","FRANKLIN","PO BOX ONLY"
+"12996","+44.242261","-073.416202","WILLSBORO","NY","ESSEX","STANDARD"
+"12997","+44.145678","-073.815204","WILMINGTON","NY","ESSEX","STANDARD"
+"12998","+44.082670","-073.530601","WITHERBEE","NY","ESSEX","STANDARD"
+"13020","+42.823968","-076.062425","APULIA STATION","NY","ONONDAGA","PO BOX ONLY"
+"13021","+42.894381","-076.565683","AUBURN","NY","CAYUGA","STANDARD"
+"13022","+43.163364","-076.509567","AUBURN","NY","CAYUGA","STANDARD"
+"13024","+43.163364","-076.509567","AUBURN","NY","CAYUGA","UNIQUE"
+"13026","+42.755979","-076.646007","AURORA","NY","CAYUGA","STANDARD"
+"13027","+43.158531","-076.360147","BALDWINSVILLE","NY","ONONDAGA","STANDARD"
+"13028","+43.310494","-076.135765","BERNHARDS BAY","NY","OSWEGO","STANDARD"
+"13029","+43.227448","-076.140648","BREWERTON","NY","ONONDAGA","STANDARD"
+"13030","+43.165372","-075.993896","BRIDGEPORT","NY","ONONDAGA","STANDARD"
+"13031","+43.049756","-076.348012","CAMILLUS","NY","ONONDAGA","STANDARD"
+"13032","+43.005767","-075.798607","CANASTOTA","NY","MADISON","STANDARD"
+"13033","+43.185529","-076.579082","CATO","NY","CAYUGA","STANDARD"
+"13034","+42.924315","-076.676419","CAYUGA","NY","CAYUGA","STANDARD"
+"13035","+42.939422","-075.775568","CAZENOVIA","NY","MADISON","STANDARD"
+"13036","+43.330332","-076.170850","CENTRAL SQUARE","NY","OSWEGO","STANDARD"
+"13037","+43.009985","-075.806194","CHITTENANGO","NY","MADISON","STANDARD"
+"13039","+43.125491","-076.154128","CICERO","NY","ONONDAGA","STANDARD"
+"13040","+42.565932","-075.955301","CINCINNATUS","NY","CORTLAND","STANDARD"
+"13041","+43.119217","-076.131931","CLAY","NY","ONONDAGA","STANDARD"
+"13042","+43.276370","-076.225752","CLEVELAND","NY","OSWEGO","STANDARD"
+"13043","+43.042044","-075.740848","CLOCKVILLE","NY","MADISON","PO BOX ONLY"
+"13044","+43.301232","-075.982593","CONSTANTIA","NY","OSWEGO","STANDARD"
+"13045","+42.614268","-076.120128","CORTLAND","NY","CORTLAND","STANDARD"
+"13051","+42.870698","-075.911280","DELPHI FALLS","NY","ONONDAGA","PO BOX ONLY"
+"13052","+42.776527","-075.859458","DE RUYTER","NY","MADISON","STANDARD"
+"13053","+42.477712","-076.291224","DRYDEN","NY","TOMPKINS","STANDARD"
+"13054","+43.145480","-075.559605","DURHAMVILLE","NY","ONEIDA","STANDARD"
+"13056","+42.677155","-076.105201","EAST HOMER","NY","CORTLAND","STANDARD"
+"13057","+43.096216","-076.047426","EAST SYRACUSE","NY","ONONDAGA","STANDARD"
+"13060","+43.027813","-076.416612","ELBRIDGE","NY","ONONDAGA","STANDARD"
+"13061","+42.841725","-075.744589","ERIEVILLE","NY","MADISON","STANDARD"
+"13062","+42.484352","-076.389023","ETNA","NY","TOMPKINS","PO BOX ONLY"
+"13063","+42.855631","-075.976158","FABIUS","NY","ONONDAGA","STANDARD"
+"13064","+43.431311","-076.200448","FAIR HAVEN","NY","OSWEGO","PO BOX ONLY"
+"13065","+42.822662","-076.801970","FAYETTE","NY","SENECA","PO BOX ONLY"
+"13066","+42.947789","-075.995518","FAYETTEVILLE","NY","ONONDAGA","STANDARD"
+"13068","+42.496530","-076.372864","FREEVILLE","NY","TOMPKINS","STANDARD"
+"13069","+43.345255","-076.227027","FULTON","NY","OSWEGO","STANDARD"
+"13071","+42.673871","-076.526226","GENOA","NY","CAYUGA","STANDARD"
+"13072","+42.768124","-075.788393","GEORGETOWN","NY","MADISON","STANDARD"
+"13073","+42.579298","-076.392709","GROTON","NY","TOMPKINS","STANDARD"
+"13074","+43.324451","-076.306549","HANNIBAL","NY","OSWEGO","STANDARD"
+"13076","+43.338817","-076.189586","HASTINGS","NY","OSWEGO","STANDARD"
+"13077","+42.678012","-076.175275","HOMER","NY","CORTLAND","STANDARD"
+"13078","+42.966136","-076.057658","JAMESVILLE","NY","ONONDAGA","STANDARD"
+"13080","+43.067413","-076.439657","JORDAN","NY","ONONDAGA","STANDARD"
+"13081","+42.876886","-076.631117","KING FERRY","NY","CAYUGA","STANDARD"
+"13082","+43.103886","-075.961597","KIRKVILLE","NY","ONONDAGA","STANDARD"
+"13083","+43.642147","-076.029304","LACONA","NY","OSWEGO","STANDARD"
+"13084","+42.891099","-076.128862","LA FAYETTE","NY","ONONDAGA","STANDARD"
+"13087","+42.706981","-076.156103","LITTLE YORK","NY","CORTLAND","PO BOX ONLY"
+"13088","+43.124866","-076.207867","LIVERPOOL","NY","ONONDAGA","STANDARD"
+"13089","+43.021430","-076.197701","LIVERPOOL","NY","ONONDAGA","STANDARD"
+"13090","+43.152767","-076.223459","LIVERPOOL","NY","ONONDAGA","STANDARD"
+"13092","+42.659466","-076.410528","LOCKE","NY","CAYUGA","STANDARD"
+"13093","+43.431311","-076.200448","LYCOMING","NY","OSWEGO","PO BOX ONLY"
+"13101","+42.597468","-076.072949","MC GRAW","NY","CORTLAND","STANDARD"
+"13102","+42.554215","-076.292723","MC LEAN","NY","TOMPKINS","PO BOX ONLY"
+"13103","+43.339851","-076.096357","MALLORY","NY","OSWEGO","STANDARD"
+"13104","+42.955618","-075.966540","MANLIUS","NY","ONONDAGA","STANDARD"
+"13107","+43.457798","-076.153442","MAPLE VIEW","NY","OSWEGO","PO BOX ONLY"
+"13108","+42.948057","-076.329799","MARCELLUS","NY","ONONDAGA","STANDARD"
+"13110","+42.880900","-076.291265","MARIETTA","NY","ONONDAGA","STANDARD"
+"13111","+43.258337","-076.629200","MARTVILLE","NY","CAYUGA","STANDARD"
+"13112","+43.098983","-076.413216","MEMPHIS","NY","ONONDAGA","STANDARD"
+"13113","+43.089111","-076.621747","MERIDIAN","NY","CAYUGA","PO BOX ONLY"
+"13114","+43.398473","-076.204997","MEXICO","NY","OSWEGO","STANDARD"
+"13115","+43.397671","-076.482365","MINETTO","NY","OSWEGO","PO BOX ONLY"
+"13116","+43.076828","-076.006001","MINOA","NY","ONONDAGA","STANDARD"
+"13117","+43.002267","-076.704722","MONTEZUMA","NY","CAYUGA","PO BOX ONLY"
+"13118","+42.737724","-076.407811","MORAVIA","NY","CAYUGA","STANDARD"
+"13119","+42.974460","-076.440833","MOTTVILLE","NY","ONONDAGA","PO BOX ONLY"
+"13120","+42.951126","-076.179845","NEDROW","NY","ONONDAGA","STANDARD"
+"13121","+43.483379","-076.315044","NEW HAVEN","NY","OSWEGO","PO BOX ONLY"
+"13122","+42.825164","-075.852660","NEW WOODSTOCK","NY","MADISON","STANDARD"
+"13123","+43.236407","-075.776918","NORTH BAY","NY","ONEIDA","PO BOX ONLY"
+"13124","+42.479801","-075.622857","NORTH PITCHER","NY","CHENANGO","STANDARD"
+"13126","+43.465388","-076.342172","OSWEGO","NY","OSWEGO","STANDARD"
+"13129","+42.712735","-075.731391","GEORGETOWN","NY","CHENANGO","STANDARD"
+"13131","+43.433970","-076.120904","PARISH","NY","OSWEGO","STANDARD"
+"13132","+43.296808","-076.229091","PENNELLVILLE","NY","OSWEGO","STANDARD"
+"13134","+42.968619","-075.679351","PETERBORO","NY","MADISON","PO BOX ONLY"
+"13135","+43.330210","-076.260803","PHOENIX","NY","OSWEGO","STANDARD"
+"13136","+42.619466","-075.845544","PITCHER","NY","CHENANGO","STANDARD"
+"13137","+43.157653","-076.446980","PLAINVILLE","NY","ONONDAGA","PO BOX ONLY"
+"13138","+42.892740","-076.026459","POMPEY","NY","ONONDAGA","PO BOX ONLY"
+"13139","+42.742057","-076.628454","POPLAR RIDGE","NY","CAYUGA","PO BOX ONLY"
+"13140","+42.886349","-076.541321","PORT BYRON","NY","CAYUGA","STANDARD"
+"13141","+42.739682","-076.157108","PREBLE","NY","CORTLAND","STANDARD"
+"13142","+43.560497","-076.155320","PULASKI","NY","OSWEGO","STANDARD"
+"13143","+43.238248","-076.752077","RED CREEK","NY","WAYNE","STANDARD"
+"13144","+43.571095","-075.972208","RICHLAND","NY","OSWEGO","STANDARD"
+"13145","+43.621562","-076.110290","SANDY CREEK","NY","OSWEGO","STANDARD"
+"13146","+43.099386","-076.762705","SAVANNAH","NY","WAYNE","STANDARD"
+"13147","+42.770829","-076.586213","SCIPIO CENTER","NY","CAYUGA","STANDARD"
+"13148","+42.905264","-076.794921","SENECA FALLS","NY","SENECA","STANDARD"
+"13152","+42.884394","-076.285202","SKANEATELES","NY","ONONDAGA","STANDARD"
+"13153","+42.991112","-076.451147","SKANEATELES FALLS","NY","ONONDAGA","PO BOX ONLY"
+"13154","+43.134425","-076.765591","SOUTH BUTLER","NY","WAYNE","PO BOX ONLY"
+"13155","+42.654768","-075.769855","SOUTH OTSELIC","NY","CHENANGO","STANDARD"
+"13156","+43.341948","-076.665228","STERLING","NY","CAYUGA","STANDARD"
+"13157","+43.209147","-075.723070","SYLVAN BEACH","NY","ONEIDA","PO BOX ONLY"
+"13158","+42.696543","-075.984090","TRUXTON","NY","CORTLAND","STANDARD"
+"13159","+42.830037","-076.124357","TULLY","NY","ONONDAGA","STANDARD"
+"13160","+42.847447","-076.649164","UNION SPRINGS","NY","CAYUGA","STANDARD"
+"13162","+43.188520","-075.712551","VERONA BEACH","NY","ONEIDA","PO BOX ONLY"
+"13163","+43.078461","-075.701639","WAMPSVILLE","NY","MADISON","PO BOX ONLY"
+"13164","+43.100588","-076.321678","WARNERS","NY","ONONDAGA","STANDARD"
+"13165","+42.892556","-076.882263","WATERLOO","NY","SENECA","STANDARD"
+"13166","+43.046493","-076.555316","WEEDSPORT","NY","CAYUGA","STANDARD"
+"13167","+43.346453","-076.229719","WEST MONROE","NY","OSWEGO","STANDARD"
+"13201","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13202","+43.043116","-076.150796","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13203","+43.062016","-076.134145","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13204","+43.055766","-076.177597","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13205","+43.006816","-076.142495","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13206","+43.076416","-076.109995","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13207","+43.012216","-076.170596","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13208","+43.074466","-076.145796","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13209","+43.084666","-076.240549","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13210","+43.031416","-076.110995","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13211","+43.091916","-076.124645","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13212","+43.122566","-076.128382","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13214","+43.039666","-076.072153","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13215","+42.972161","-076.227599","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13217","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13218","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13219","+43.041703","-076.222898","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13220","+43.123415","-076.128230","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13221","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13224","+43.038366","-076.099394","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13225","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","UNIQUE"
+"13235",,,"SYRACUSE","NY","ONONDAGA","STANDARD"
+"13244","+43.037716","-076.139646","SYRACUSE","NY","ONONDAGA","UNIQUE"
+"13250","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","UNIQUE"
+"13251","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","UNIQUE"
+"13252","+43.050966","-076.156696","SYRACUSE","NY","ONONDAGA","UNIQUE"
+"13260","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","UNIQUE"
+"13261","+43.021430","-076.197701","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13290","+43.067576","-076.171351","SYRACUSE","NY","ONONDAGA","STANDARD"
+"13301","+43.419596","-075.224784","ALDER CREEK","NY","ONEIDA","STANDARD"
+"13302","+43.497512","-075.988154","ALTMAR","NY","OSWEGO","STANDARD"
+"13303","+43.364242","-075.468514","AVA","NY","ONEIDA","STANDARD"
+"13304","+43.244356","-075.166319","BARNEVELD","NY","ONEIDA","STANDARD"
+"13305","+43.818705","-075.480342","BEAVER FALLS","NY","LEWIS","PO BOX ONLY"
+"13308","+43.137703","-075.523266","BLOSSVALE","NY","ONEIDA","STANDARD"
+"13309","+43.233310","-075.294896","BOONVILLE","NY","ONEIDA","STANDARD"
+"13310","+42.930711","-075.560937","BOUCKVILLE","NY","MADISON","STANDARD"
+"13312","+43.818705","-075.480342","BRANTINGHAM","NY","LEWIS","STANDARD"
+"13313","+42.879227","-075.267172","BRIDGEWATER","NY","ONEIDA","PO BOX ONLY"
+"13314","+42.954541","-075.616793","BROOKFIELD","NY","MADISON","STANDARD"
+"13315","+42.734593","-075.133065","BURLINGTON FLATS","NY","OTSEGO","STANDARD"
+"13316","+43.285739","-075.626755","CAMDEN","NY","ONEIDA","STANDARD"
+"13317","+42.867146","-074.595636","CANAJOHARIE","NY","MONTGOMERY","STANDARD"
+"13318","+42.921786","-075.255163","CASSVILLE","NY","ONEIDA","STANDARD"
+"13319","+43.028469","-075.264008","CHADWICKS","NY","ONEIDA","STANDARD"
+"13320","+42.768195","-074.759734","CHERRY VALLEY","NY","OTSEGO","STANDARD"
+"13321","+43.090027","-075.387088","CLARK MILLS","NY","ONEIDA","PO BOX ONLY"
+"13322","+42.961973","-075.233003","CLAYVILLE","NY","ONEIDA","STANDARD"
+"13323","+43.036697","-075.382414","CLINTON","NY","ONEIDA","STANDARD"
+"13324","+43.271433","-075.047740","COLD BROOK","NY","HERKIMER","STANDARD"
+"13325","+43.566470","-075.425289","CONSTABLEVILLE","NY","LEWIS","STANDARD"
+"13326","+42.714065","-074.890929","COOPERSTOWN","NY","OTSEGO","STANDARD"
+"13327","+43.909848","-075.365264","CROGHAN","NY","LEWIS","STANDARD"
+"13328","+42.983981","-075.422034","DEANSBORO","NY","ONEIDA","STANDARD"
+"13329","+43.184860","-074.941747","DOLGEVILLE","NY","HERKIMER","STANDARD"
+"13331","+43.816675","-074.886163","EAGLE BAY","NY","HERKIMER","STANDARD"
+"13332","+42.719674","-075.558861","EARLVILLE","NY","CHENANGO","STANDARD"
+"13333","+42.793309","-074.837198","EAST SPRINGFIELD","NY","OTSEGO","STANDARD"
+"13334","+42.829820","-075.653640","EATON","NY","MADISON","STANDARD"
+"13335","+42.711712","-075.246539","EDMESTON","NY","OTSEGO","STANDARD"
+"13337","+42.755679","-074.876761","FLY CREEK","NY","OTSEGO","STANDARD"
+"13338","+43.500975","-075.153257","FORESTPORT","NY","ONEIDA","STANDARD"
+"13339","+42.924806","-074.616883","FORT PLAIN","NY","MONTGOMERY","STANDARD"
+"13340","+43.039203","-075.118168","FRANKFORT","NY","HERKIMER","STANDARD"
+"13341","+43.036069","-075.396214","FRANKLIN SPRINGS","NY","ONEIDA","PO BOX ONLY"
+"13342","+42.631530","-075.186593","GARRATTSVILLE","NY","OTSEGO","STANDARD"
+"13343","+43.818705","-075.480342","GLENFIELD","NY","LEWIS","STANDARD"
+"13345","+43.818705","-075.480342","GREIG","NY","LEWIS","STANDARD"
+"13346","+42.822667","-075.553153","HAMILTON","NY","MADISON","STANDARD"
+"13348","+42.690531","-075.063513","HARTWICK","NY","OTSEGO","STANDARD"
+"13350","+43.026867","-074.933404","HERKIMER","NY","HERKIMER","STANDARD"
+"13352","+43.328187","-075.117319","HINCKLEY","NY","ONEIDA","PO BOX ONLY"
+"13353","+43.667618","-074.456913","HOFFMEISTER","NY","HAMILTON","PO BOX ONLY"
+"13354","+43.273266","-075.301263","HOLLAND PATENT","NY","ONEIDA","STANDARD"
+"13355","+42.817286","-075.422764","HUBBARDSVILLE","NY","MADISON","STANDARD"
+"13357","+43.013625","-074.958226","ILION","NY","HERKIMER","STANDARD"
+"13360","+43.667618","-074.456913","INLET","NY","HAMILTON","STANDARD"
+"13361","+42.964369","-074.881228","JORDANVILLE","NY","HERKIMER","STANDARD"
+"13362","+42.980334","-075.518569","KNOXBORO","NY","ONEIDA","PO BOX ONLY"
+"13363","+43.328374","-075.520067","LEE CENTER","NY","ONEIDA","STANDARD"
+"13364","+42.954541","-075.616793","LEONARDSVILLE","NY","MADISON","PO BOX ONLY"
+"13365","+43.078904","-074.864422","LITTLE FALLS","NY","HERKIMER","STANDARD"
+"13367","+43.789296","-075.415599","LOWVILLE","NY","LEWIS","STANDARD"
+"13368","+43.621838","-075.365348","LYONS FALLS","NY","LEWIS","STANDARD"
+"13401","+43.267243","-075.688223","MC CONNELLSVILLE","NY","ONEIDA","STANDARD"
+"13402","+42.898322","-075.549372","MADISON","NY","MADISON","STANDARD"
+"13403","+43.172019","-075.273710","MARCY","NY","ONEIDA","STANDARD"
+"13404","+43.818705","-075.480342","MARTINSBURG","NY","LEWIS","PO BOX ONLY"
+"13406","+43.135209","-074.934473","MIDDLEVILLE","NY","HERKIMER","STANDARD"
+"13407","+43.029258","-075.011662","MOHAWK","NY","HERKIMER","STANDARD"
+"13408","+42.924089","-075.651484","MORRISVILLE","NY","MADISON","STANDARD"
+"13409","+42.972773","-075.600722","MUNNSVILLE","NY","MADISON","STANDARD"
+"13410","+42.937863","-074.611711","NELLISTON","NY","MONTGOMERY","PO BOX ONLY"
+"13411","+42.631807","-075.385073","NEW BERLIN","NY","CHENANGO","STANDARD"
+"13413","+43.067369","-075.290911","NEW HARTFORD","NY","ONEIDA","STANDARD"
+"13415","+42.590419","-075.195695","NEW LISBON","NY","OTSEGO","STANDARD"
+"13416","+43.203313","-074.971893","NEWPORT","NY","HERKIMER","STANDARD"
+"13417","+43.100869","-075.294960","NEW YORK MILLS","NY","ONEIDA","STANDARD"
+"13418","+42.954541","-075.616793","NORTH BROOKFIELD","NY","MADISON","STANDARD"
+"13420","+43.752203","-074.873176","OLD FORGE","NY","HERKIMER","STANDARD"
+"13421","+43.047755","-075.640944","ONEIDA","NY","MADISON","STANDARD"
+"13424","+43.056581","-075.382910","ORISKANY","NY","ONEIDA","STANDARD"
+"13425","+42.969650","-075.485421","ORISKANY FALLS","NY","ONEIDA","STANDARD"
+"13426","+43.562757","-075.996773","ORWELL","NY","OSWEGO","PO BOX ONLY"
+"13428","+42.926617","-074.544720","PALATINE BRIDGE","NY","MONTGOMERY","STANDARD"
+"13431","+43.232502","-075.072880","POLAND","NY","HERKIMER","STANDARD"
+"13433","+43.576823","-075.315816","PORT LEYDEN","NY","LEWIS","STANDARD"
+"13435","+43.305156","-075.150183","PROSPECT","NY","ONEIDA","PO BOX ONLY"
+"13436","+43.667618","-074.456913","RAQUETTE LAKE","NY","HAMILTON","STANDARD"
+"13437","+43.577131","-075.829419","REDFIELD","NY","OSWEGO","STANDARD"
+"13438","+43.341666","-075.221046","REMSEN","NY","ONEIDA","STANDARD"
+"13439","+42.840180","-074.971590","RICHFIELD SPRINGS","NY","OTSEGO","STANDARD"
+"13440","+43.208860","-075.383365","ROME","NY","ONEIDA","STANDARD"
+"13441","+43.164312","-075.511301","ROME","NY","ONEIDA","STANDARD"
+"13442","+43.239274","-075.477960","ROME","NY","ONEIDA","STANDARD"
+"13449","+43.239274","-075.477960","ROME","NY","ONEIDA","UNIQUE"
+"13450","+42.708040","-074.802488","ROSEBOOM","NY","OTSEGO","STANDARD"
+"13452","+42.975134","-074.657384","SAINT JOHNSVILLE","NY","MONTGOMERY","STANDARD"
+"13454","+43.460951","-074.957099","SALISBURY CENTER","NY","HERKIMER","STANDARD"
+"13455","+42.916235","-075.354480","SANGERFIELD","NY","ONEIDA","PO BOX ONLY"
+"13456","+42.991124","-075.270758","SAUQUOIT","NY","ONEIDA","STANDARD"
+"13457","+42.775805","-075.048502","SCHUYLER LAKE","NY","OTSEGO","PO BOX ONLY"
+"13459","+42.787077","-074.584971","SHARON SPRINGS","NY","SCHOHARIE","STANDARD"
+"13460","+42.648204","-075.455824","SHERBURNE","NY","CHENANGO","STANDARD"
+"13461","+43.074349","-075.580839","SHERRILL","NY","ONEIDA","STANDARD"
+"13464","+42.672573","-075.593362","SMYRNA","NY","CHENANGO","STANDARD"
+"13465","+42.954541","-075.616793","SOLSVILLE","NY","MADISON","PO BOX ONLY"
+"13468","+42.838830","-074.858970","SPRINGFIELD CENTER","NY","OTSEGO","STANDARD"
+"13469","+43.219369","-075.299112","STITTVILLE","NY","ONEIDA","STANDARD"
+"13470","+43.190651","-074.650311","STRATFORD","NY","FULTON","STANDARD"
+"13471","+43.228682","-075.591423","TABERG","NY","ONEIDA","STANDARD"
+"13472","+43.460951","-074.957099","THENDARA","NY","HERKIMER","STANDARD"
+"13473","+43.818705","-075.480342","TURIN","NY","LEWIS","STANDARD"
+"13475","+42.893454","-074.836685","VAN HORNESVILLE","NY","HERKIMER","STANDARD"
+"13476","+43.092924","-075.501610","VERNON","NY","ONEIDA","STANDARD"
+"13477","+43.141536","-075.530826","VERNON CENTER","NY","ONEIDA","STANDARD"
+"13478","+43.146502","-075.586218","VERONA","NY","ONEIDA","STANDARD"
+"13479","+43.053769","-075.271559","WASHINGTON MILLS","NY","ONEIDA","PO BOX ONLY"
+"13480","+42.926167","-075.360922","WATERVILLE","NY","ONEIDA","STANDARD"
+"13482","+42.704333","-075.184913","WEST BURLINGTON","NY","OTSEGO","STANDARD"
+"13483","+43.403751","-075.825528","WESTDALE","NY","ONEIDA","STANDARD"
+"13484","+42.854631","-075.660462","WEST EATON","NY","MADISON","PO BOX ONLY"
+"13485","+42.747058","-075.160928","WEST EDMESTON","NY","OTSEGO","STANDARD"
+"13486","+43.339068","-075.341898","WESTERNVILLE","NY","ONEIDA","STANDARD"
+"13488","+42.680906","-074.765290","WESTFORD","NY","OTSEGO","STANDARD"
+"13489","+43.444480","-075.543231","WEST LEYDEN","NY","LEWIS","STANDARD"
+"13490","+43.124769","-075.432867","WESTMORELAND","NY","ONEIDA","STANDARD"
+"13491","+42.909122","-075.128670","WEST WINFIELD","NY","HERKIMER","STANDARD"
+"13492","+43.197827","-075.287643","WHITESBORO","NY","ONEIDA","STANDARD"
+"13493","+43.427301","-075.880041","WILLIAMSTOWN","NY","OSWEGO","STANDARD"
+"13494","+43.524904","-075.142771","WOODGATE","NY","ONEIDA","STANDARD"
+"13495","+43.102744","-075.321211","YORKVILLE","NY","ONEIDA","STANDARD"
+"13501","+43.077369","-075.233208","UTICA","NY","ONEIDA","STANDARD"
+"13502","+43.150119","-075.192786","UTICA","NY","ONEIDA","STANDARD"
+"13503","+43.101869","-075.231158","UTICA","NY","ONEIDA","STANDARD"
+"13504","+43.136033","-075.432486","UTICA","NY","ONEIDA","STANDARD"
+"13505","+43.087169","-075.260259","UTICA","NY","ONEIDA","STANDARD"
+"13599","+43.239274","-075.477960","UTICA","NY","ONEIDA","UNIQUE"
+"13601","+44.072542","-076.016589","WATERTOWN","NY","JEFFERSON","STANDARD"
+"13602","+44.032457","-075.754468","FORT DRUM","NY","JEFFERSON","STANDARD"
+"13603","+43.908739","-075.896719","WATERTOWN","NY","JEFFERSON","STANDARD"
+"13605","+43.960222","-075.905634","ADAMS","NY","JEFFERSON","STANDARD"
+"13606","+43.831853","-076.007188","ADAMS CENTER","NY","JEFFERSON","STANDARD"
+"13607","+44.074604","-075.840719","ALEXANDRIA BAY","NY","JEFFERSON","STANDARD"
+"13608","+44.148052","-075.759103","ANTWERP","NY","JEFFERSON","STANDARD"
+"13611","+43.778046","-076.125914","BELLEVILLE","NY","JEFFERSON","PO BOX ONLY"
+"13612","+43.988710","-075.766746","BLACK RIVER","NY","JEFFERSON","STANDARD"
+"13613","+44.788969","-074.879786","BRASHER FALLS","NY","SAINT LAWRENCE","STANDARD"
+"13614","+44.538648","-075.686660","BRIER HILL","NY","SAINT LAWRENCE","STANDARD"
+"13615","+44.057685","-076.019634","BROWNVILLE","NY","JEFFERSON","PO BOX ONLY"
+"13616","+43.951428","-075.860442","CALCIUM","NY","JEFFERSON","STANDARD"
+"13617","+44.574484","-075.059713","CANTON","NY","SAINT LAWRENCE","STANDARD"
+"13618","+44.126469","-076.272585","CAPE VINCENT","NY","JEFFERSON","STANDARD"
+"13619","+44.068221","-075.920097","CARTHAGE","NY","JEFFERSON","STANDARD"
+"13620","+43.818705","-075.480342","CASTORLAND","NY","LEWIS","STANDARD"
+"13621","+44.845315","-075.047975","CHASE MILLS","NY","SAINT LAWRENCE","STANDARD"
+"13622","+44.091892","-076.108527","CHAUMONT","NY","JEFFERSON","STANDARD"
+"13623","+44.440171","-075.757938","CHIPPEWA BAY","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13624","+44.144238","-076.062002","CLAYTON","NY","JEFFERSON","STANDARD"
+"13625","+44.421607","-075.105077","COLTON","NY","SAINT LAWRENCE","STANDARD"
+"13626","+43.892324","-075.703596","COPENHAGEN","NY","LEWIS","STANDARD"
+"13627","+43.818705","-075.480342","DEER RIVER","NY","LEWIS","STANDARD"
+"13628","+43.885519","-075.798319","DEFERIET","NY","JEFFERSON","PO BOX ONLY"
+"13630","+44.462555","-075.300670","DE KALB JUNCTION","NY","SAINT LAWRENCE","STANDARD"
+"13631","+43.818705","-075.480342","DENMARK","NY","LEWIS","STANDARD"
+"13632","+44.139501","-076.061552","DEPAUVILLE","NY","JEFFERSON","PO BOX ONLY"
+"13633","+44.498910","-075.477156","DE PEYSTER","NY","SAINT LAWRENCE","STANDARD"
+"13634","+44.014261","-076.080020","DEXTER","NY","JEFFERSON","STANDARD"
+"13635","+44.523528","-075.160038","EDWARDS","NY","SAINT LAWRENCE","STANDARD"
+"13636","+43.759650","-076.152508","ELLISBURG","NY","JEFFERSON","STANDARD"
+"13637","+44.098100","-075.817097","EVANS MILLS","NY","JEFFERSON","STANDARD"
+"13638","+44.017510","-075.755032","FELTS MILLS","NY","JEFFERSON","STANDARD"
+"13639","+44.238960","-075.122756","FINE","NY","SAINT LAWRENCE","STANDARD"
+"13640","+44.321282","-076.017151","WELLESLEY ISLAND","NY","JEFFERSON","STANDARD"
+"13641","+44.207681","-075.914556","FISHERS LANDING","NY","JEFFERSON","PO BOX ONLY"
+"13642","+44.550897","-075.237516","GOUVERNEUR","NY","SAINT LAWRENCE","STANDARD"
+"13643","+44.014698","-075.728357","GREAT BEND","NY","JEFFERSON","PO BOX ONLY"
+"13645","+44.533125","-075.192865","HAILESBORO","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13646","+44.468000","-075.359907","HAMMOND","NY","SAINT LAWRENCE","STANDARD"
+"13647","+44.608735","-074.973218","HANNAWA FALLS","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13648","+43.818705","-075.480342","HARRISVILLE","NY","LEWIS","STANDARD"
+"13649","+44.921678","-074.706763","HELENA","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13650","+43.812653","-076.208109","HENDERSON","NY","JEFFERSON","STANDARD"
+"13651","+43.870842","-076.180886","HENDERSON HARBOR","NY","JEFFERSON","PO BOX ONLY"
+"13652","+44.549025","-075.204351","HERMON","NY","SAINT LAWRENCE","STANDARD"
+"13654","+44.616648","-075.185085","HEUVELTON","NY","SAINT LAWRENCE","STANDARD"
+"13655","+44.980232","-074.647334","HOGANSBURG","NY","FRANKLIN","STANDARD"
+"13656","+44.200392","-075.984109","LA FARGEVILLE","NY","JEFFERSON","STANDARD"
+"13657","+44.035703","-076.090424","LIMERICK","NY","JEFFERSON","STANDARD"
+"13658","+44.516168","-075.216420","LISBON","NY","SAINT LAWRENCE","STANDARD"
+"13659","+43.750370","-075.899974","LORRAINE","NY","JEFFERSON","STANDARD"
+"13660","+44.770682","-075.019312","MADRID","NY","SAINT LAWRENCE","STANDARD"
+"13661","+43.727352","-076.090851","MANNSVILLE","NY","JEFFERSON","STANDARD"
+"13662","+44.570260","-075.152249","MASSENA","NY","SAINT LAWRENCE","STANDARD"
+"13664","+44.555889","-075.655877","MORRISTOWN","NY","SAINT LAWRENCE","STANDARD"
+"13665","+44.054012","-075.514487","NATURAL BRIDGE","NY","JEFFERSON","STANDARD"
+"13666","+44.533125","-075.192865","NEWTON FALLS","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13667","+44.855075","-074.942946","NORFOLK","NY","SAINT LAWRENCE","STANDARD"
+"13668","+44.535170","-075.099289","NORWOOD","NY","SAINT LAWRENCE","STANDARD"
+"13669","+44.509143","-075.249795","OGDENSBURG","NY","SAINT LAWRENCE","STANDARD"
+"13670","+44.216681","-075.084323","OSWEGATCHIE","NY","SAINT LAWRENCE","STANDARD"
+"13671","+44.308475","-075.668790","OXBOW","NY","JEFFERSON","STANDARD"
+"13672","+44.544283","-074.780387","PARISHVILLE","NY","SAINT LAWRENCE","STANDARD"
+"13673","+44.116323","-075.719346","PHILADELPHIA","NY","JEFFERSON","STANDARD"
+"13674","+43.733450","-076.054313","PIERREPONT MANOR","NY","JEFFERSON","PO BOX ONLY"
+"13675","+44.283403","-075.857026","PLESSIS","NY","JEFFERSON","STANDARD"
+"13676","+44.539717","-075.142415","POTSDAM","NY","SAINT LAWRENCE","STANDARD"
+"13677","+44.673438","-075.082041","PYRITES","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13678","+44.828685","-074.979811","RAYMONDVILLE","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13679","+44.327083","-075.803540","REDWOOD","NY","JEFFERSON","STANDARD"
+"13680","+44.452668","-075.342977","RENSSELAER FALLS","NY","SAINT LAWRENCE","STANDARD"
+"13681","+44.439964","-075.377707","RICHVILLE","NY","SAINT LAWRENCE","STANDARD"
+"13682","+43.856677","-075.907485","RODMAN","NY","JEFFERSON","STANDARD"
+"13683","+44.533125","-075.192865","ROOSEVELTOWN","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13684","+44.382351","-075.104276","RUSSELL","NY","SAINT LAWRENCE","STANDARD"
+"13685","+43.872933","-076.092563","SACKETS HARBOR","NY","JEFFERSON","STANDARD"
+"13687","+44.644720","-074.879155","SOUTH COLTON","NY","SAINT LAWRENCE","STANDARD"
+"13688","+43.951666","-075.767772","SOUTH RUTLAND","NY","JEFFERSON","PO BOX ONLY"
+"13690","+44.174001","-074.991929","STAR LAKE","NY","SAINT LAWRENCE","STANDARD"
+"13691","+44.220448","-075.767059","THERESA","NY","JEFFERSON","STANDARD"
+"13692","+44.289833","-076.026210","THOUSAND ISLAND PARK","NY","JEFFERSON","STANDARD"
+"13693","+44.029787","-076.222374","THREE MILE BAY","NY","JEFFERSON","STANDARD"
+"13694","+44.550617","-075.194099","WADDINGTON","NY","SAINT LAWRENCE","STANDARD"
+"13695","+44.140791","-074.912493","WANAKENA","NY","SAINT LAWRENCE","PO BOX ONLY"
+"13696","+44.695630","-074.899980","WEST STOCKHOLM","NY","SAINT LAWRENCE","STANDARD"
+"13697","+44.642889","-074.840761","WINTHROP","NY","SAINT LAWRENCE","STANDARD"
+"13699","+44.496564","-075.072951","POTSDAM","NY","SAINT LAWRENCE","UNIQUE"
+"13730","+42.255147","-075.533335","AFTON","NY","CHENANGO","STANDARD"
+"13731","+42.129230","-074.843187","ANDES","NY","DELAWARE","STANDARD"
+"13732","+42.049798","-076.181009","APALACHIN","NY","TIOGA","STANDARD"
+"13733","+42.295949","-075.507589","BAINBRIDGE","NY","CHENANGO","STANDARD"
+"13734","+42.125180","-076.405626","BARTON","NY","TIOGA","STANDARD"
+"13736","+42.294616","-076.198223","BERKSHIRE","NY","TIOGA","STANDARD"
+"13737","+42.080494","-076.097288","BIBLE SCHOOL PARK","NY","BROOME","PO BOX ONLY"
+"13738","+42.567313","-076.123795","BLODGETT MILLS","NY","CORTLAND","PO BOX ONLY"
+"13739","+42.340298","-074.874437","BLOOMVILLE","NY","DELAWARE","STANDARD"
+"13740","+42.183045","-074.925617","BOVINA CENTER","NY","DELAWARE","STANDARD"
+"13743","+42.226448","-076.309863","CANDOR","NY","TIOGA","STANDARD"
+"13744","+42.243783","-075.906890","CASTLE CREEK","NY","BROOME","STANDARD"
+"13745","+42.173775","-075.872839","CHENANGO BRIDGE","NY","BROOME","PO BOX ONLY"
+"13746","+42.277777","-075.846246","CHENANGO FORKS","NY","BROOME","STANDARD"
+"13747","+42.505122","-074.982056","COLLIERSVILLE","NY","OTSEGO","PO BOX ONLY"
+"13748","+42.108659","-075.809834","CONKLIN","NY","BROOME","STANDARD"
+"13749","+42.206745","-075.744880","CORBETTSVILLE","NY","BROOME","PO BOX ONLY"
+"13750","+42.444889","-074.840217","DAVENPORT","NY","DELAWARE","STANDARD"
+"13751","+42.424859","-074.900195","DAVENPORT CENTER","NY","DELAWARE","STANDARD"
+"13752","+42.220641","-074.916308","DE LANCEY","NY","DELAWARE","STANDARD"
+"13753","+42.293718","-074.920671","DELHI","NY","DELAWARE","STANDARD"
+"13754","+42.097004","-075.713691","DEPOSIT","NY","BROOME","STANDARD"
+"13755","+42.035768","-074.900852","DOWNSVILLE","NY","DELAWARE","STANDARD"
+"13756","+42.003935","-075.122615","EAST BRANCH","NY","DELAWARE","STANDARD"
+"13757","+42.350091","-074.977712","EAST MEREDITH","NY","DELAWARE","STANDARD"
+"13758","+42.583518","-075.721931","EAST PHARSALIA","NY","CHENANGO","PO BOX ONLY"
+"13760","+42.150588","-076.055064","ENDICOTT","NY","BROOME","STANDARD"
+"13761","+42.206745","-075.744880","ENDICOTT","NY","BROOME","STANDARD"
+"13762","+42.206745","-075.744880","ENDWELL","NY","BROOME","STANDARD"
+"13763","+42.206745","-075.744880","ENDICOTT","NY","BROOME","STANDARD"
+"13774","+42.183045","-074.925617","FISHS EDDY","NY","DELAWARE","PO BOX ONLY"
+"13775","+42.328870","-075.136628","FRANKLIN","NY","DELAWARE","STANDARD"
+"13776","+42.458584","-075.311836","GILBERTSVILLE","NY","OTSEGO","STANDARD"
+"13777","+42.244157","-075.989275","GLEN AUBREY","NY","BROOME","STANDARD"
+"13778","+42.340130","-075.734191","GREENE","NY","CHENANGO","STANDARD"
+"13780","+42.365134","-075.611685","GUILFORD","NY","CHENANGO","STANDARD"
+"13782","+42.192781","-075.012689","HAMDEN","NY","DELAWARE","STANDARD"
+"13783","+42.115853","-075.028814","HANCOCK","NY","DELAWARE","STANDARD"
+"13784","+42.431068","-076.159312","HARFORD","NY","CORTLAND","PO BOX ONLY"
+"13786","+42.183045","-074.925617","HARPERSFIELD","NY","DELAWARE","STANDARD"
+"13787","+42.186306","-075.676180","HARPURSVILLE","NY","BROOME","STANDARD"
+"13788","+42.380427","-074.711604","HOBART","NY","DELAWARE","STANDARD"
+"13790","+42.159206","-075.930931","JOHNSON CITY","NY","BROOME","STANDARD"
+"13794","+42.402816","-076.036582","KILLAWOG","NY","BROOME","PO BOX ONLY"
+"13795","+42.056172","-075.788126","KIRKWOOD","NY","BROOME","STANDARD"
+"13796","+42.555454","-075.135511","LAURENS","NY","OTSEGO","STANDARD"
+"13797","+42.339355","-076.045026","LISLE","NY","BROOME","STANDARD"
+"13801","+42.497120","-075.731309","MC DONOUGH","NY","CHENANGO","STANDARD"
+"13802","+42.253754","-076.046399","MAINE","NY","BROOME","STANDARD"
+"13803","+42.497925","-076.047429","MARATHON","NY","CORTLAND","STANDARD"
+"13804","+42.183045","-074.925617","MASONVILLE","NY","DELAWARE","STANDARD"
+"13806","+42.183045","-074.925617","MERIDALE","NY","DELAWARE","STANDARD"
+"13807","+42.601799","-074.975717","MILFORD","NY","OTSEGO","STANDARD"
+"13808","+42.531661","-075.131023","MORRIS","NY","OTSEGO","STANDARD"
+"13809","+42.400281","-075.451576","MOUNT UPTON","NY","CHENANGO","STANDARD"
+"13810","+42.610748","-075.102602","MOUNT VISION","NY","OTSEGO","STANDARD"
+"13811","+42.170428","-076.213825","NEWARK VALLEY","NY","TIOGA","STANDARD"
+"13812","+42.039954","-076.370793","NICHOLS","NY","TIOGA","STANDARD"
+"13813","+42.147454","-075.556560","NINEVEH","NY","BROOME","STANDARD"
+"13814","+42.603574","-075.528221","NORTH NORWICH","NY","CHENANGO","PO BOX ONLY"
+"13815","+42.536226","-075.601779","NORWICH","NY","CHENANGO","STANDARD"
+"13820","+42.461688","-075.096727","ONEONTA","NY","OTSEGO","STANDARD"
+"13825","+42.441165","-075.148268","OTEGO","NY","OTSEGO","STANDARD"
+"13826","+42.112127","-075.639586","OUAQUAGA","NY","BROOME","STANDARD"
+"13827","+42.176816","-076.256800","OWEGO","NY","TIOGA","STANDARD"
+"13830","+42.437881","-075.567327","OXFORD","NY","CHENANGO","STANDARD"
+"13832","+42.568979","-075.654133","PLYMOUTH","NY","CHENANGO","STANDARD"
+"13833","+42.195785","-075.759054","PORT CRANE","NY","BROOME","STANDARD"
+"13834","+42.539439","-074.966985","PORTLANDVILLE","NY","OTSEGO","STANDARD"
+"13835","+42.371552","-076.197488","RICHFORD","NY","TIOGA","STANDARD"
+"13837","+42.183045","-074.925617","SHINHOPPLE","NY","DELAWARE","PO BOX ONLY"
+"13838","+42.308884","-075.391644","SIDNEY","NY","DELAWARE","STANDARD"
+"13839","+42.217118","-075.232488","SIDNEY CENTER","NY","DELAWARE","STANDARD"
+"13840","+42.039512","-076.400376","SMITHBORO","NY","TIOGA","PO BOX ONLY"
+"13841","+42.461525","-075.632735","SMITHVILLE FLATS","NY","CHENANGO","STANDARD"
+"13842","+42.183045","-074.925617","SOUTH KORTRIGHT","NY","DELAWARE","STANDARD"
+"13843","+42.542579","-075.412243","SOUTH NEW BERLIN","NY","CHENANGO","STANDARD"
+"13844","+42.624833","-075.652767","SOUTH PLYMOUTH","NY","CHENANGO","STANDARD"
+"13845","+42.065842","-076.381946","TIOGA CENTER","NY","TIOGA","PO BOX ONLY"
+"13846","+42.380509","-075.059702","TREADWELL","NY","DELAWARE","STANDARD"
+"13847","+42.183045","-074.925617","TROUT CREEK","NY","DELAWARE","PO BOX ONLY"
+"13848","+42.214705","-075.727699","TUNNEL","NY","BROOME","PO BOX ONLY"
+"13849","+42.382962","-075.292321","UNADILLA","NY","OTSEGO","STANDARD"
+"13850","+42.055476","-076.027088","VESTAL","NY","BROOME","STANDARD"
+"13851","+42.206745","-075.744880","VESTAL","NY","BROOME","STANDARD"
+"13856","+42.250118","-075.125556","WALTON","NY","DELAWARE","STANDARD"
+"13859","+42.379383","-075.264556","WELLS BRIDGE","NY","OTSEGO","STANDARD"
+"13860","+42.183045","-074.925617","WEST DAVENPORT","NY","DELAWARE","PO BOX ONLY"
+"13861","+42.501093","-075.140874","WEST ONEONTA","NY","OTSEGO","STANDARD"
+"13862","+42.321825","-075.945183","WHITNEY POINT","NY","BROOME","STANDARD"
+"13863","+42.449946","-075.924813","WILLET","NY","CORTLAND","STANDARD"
+"13864","+42.186744","-076.348074","WILLSEYVILLE","NY","TIOGA","STANDARD"
+"13865","+42.069103","-075.644078","WINDSOR","NY","BROOME","STANDARD"
+"13901","+42.165629","-075.890685","BINGHAMTON","NY","BROOME","STANDARD"
+"13902","+42.105375","-075.887600","BINGHAMTON","NY","BROOME","STANDARD"
+"13903","+42.083005","-075.923248","BINGHAMTON","NY","BROOME","STANDARD"
+"13904","+42.131088","-075.787801","BINGHAMTON","NY","BROOME","STANDARD"
+"13905","+42.173709","-075.922159","BINGHAMTON","NY","BROOME","STANDARD"
+"14001","+43.013808","-078.525296","AKRON","NY","ERIE","STANDARD"
+"14003","+42.998052","-078.184813","ALABAMA","NY","GENESEE","PO BOX ONLY"
+"14004","+42.872937","-078.528446","ALDEN","NY","ERIE","STANDARD"
+"14005","+42.917622","-078.264873","ALEXANDER","NY","GENESEE","STANDARD"
+"14006","+42.823386","-078.858355","ANGOLA","NY","ERIE","STANDARD"
+"14008","+43.291696","-078.626944","APPLETON","NY","NIAGARA","STANDARD"
+"14009","+42.597171","-078.374630","ARCADE","NY","WYOMING","STANDARD"
+"14010","+42.768413","-078.887094","ATHOL SPRINGS","NY","ERIE","PO BOX ONLY"
+"14011","+42.699424","-078.287793","ATTICA","NY","WYOMING","STANDARD"
+"14012","+43.327031","-078.534963","BARKER","NY","NIAGARA","STANDARD"
+"14013","+43.077884","-078.394594","BASOM","NY","GENESEE","STANDARD"
+"14020","+42.980544","-078.231764","BATAVIA","NY","GENESEE","STANDARD"
+"14021","+42.998052","-078.184813","BATAVIA","NY","GENESEE","STANDARD"
+"14024","+42.590046","-078.246616","BLISS","NY","WYOMING","STANDARD"
+"14025","+42.625391","-078.726767","BOSTON","NY","ERIE","STANDARD"
+"14026","+42.941008","-078.688009","BOWMANSVILLE","NY","ERIE","STANDARD"
+"14027","+42.570750","-079.030785","BRANT","NY","ERIE","PO BOX ONLY"
+"14028","+43.313814","-078.736907","BURT","NY","NIAGARA","STANDARD"
+"14029","+42.474283","-078.247413","CENTERVILLE","NY","ALLEGANY","PO BOX ONLY"
+"14030","+42.560669","-078.522178","CHAFFEE","NY","ERIE","STANDARD"
+"14031","+42.992968","-078.601269","CLARENCE","NY","ERIE","STANDARD"
+"14032","+42.937314","-078.593381","CLARENCE CENTER","NY","ERIE","STANDARD"
+"14033","+42.646441","-078.666272","COLDEN","NY","ERIE","STANDARD"
+"14034","+42.668773","-078.816333","COLLINS","NY","ERIE","STANDARD"
+"14035","+42.490640","-078.849861","COLLINS CENTER","NY","ERIE","PO BOX ONLY"
+"14036","+42.978522","-078.372338","CORFU","NY","GENESEE","STANDARD"
+"14037","+42.807705","-078.446855","COWLESVILLE","NY","WYOMING","STANDARD"
+"14038","+42.947259","-078.474444","CRITTENDEN","NY","ERIE","PO BOX ONLY"
+"14039","+42.837456","-078.171900","DALE","NY","WYOMING","STANDARD"
+"14040","+42.895989","-078.385667","DARIEN CENTER","NY","GENESEE","STANDARD"
+"14041","+42.408583","-078.984391","DAYTON","NY","CATTARAUGUS","STANDARD"
+"14042","+42.473934","-078.494065","DELEVAN","NY","CATTARAUGUS","STANDARD"
+"14043","+42.898958","-078.707872","DEPEW","NY","ERIE","STANDARD"
+"14047","+42.683522","-078.995736","DERBY","NY","ERIE","STANDARD"
+"14048","+42.487716","-079.328287","DUNKIRK","NY","CHAUTAUQUA","STANDARD"
+"14051","+43.042907","-078.698796","EAST AMHERST","NY","ERIE","STANDARD"
+"14052","+42.768209","-078.577136","EAST AURORA","NY","ERIE","STANDARD"
+"14054","+42.917037","-078.126525","EAST BETHANY","NY","GENESEE","STANDARD"
+"14055","+42.559423","-078.621851","EAST CONCORD","NY","ERIE","STANDARD"
+"14056","+42.991173","-078.312171","EAST PEMBROKE","NY","GENESEE","PO BOX ONLY"
+"14057","+42.641429","-078.875456","EDEN","NY","ERIE","STANDARD"
+"14058","+43.088434","-078.162610","ELBA","NY","GENESEE","STANDARD"
+"14059","+42.828309","-078.628966","ELMA","NY","ERIE","STANDARD"
+"14060","+42.445698","-078.341227","FARMERSVILLE STATION","NY","CATTARAUGUS","STANDARD"
+"14061","+42.594627","-079.084040","FARNHAM","NY","ERIE","PO BOX ONLY"
+"14062","+42.441146","-079.172343","FORESTVILLE","NY","CHAUTAUQUA","STANDARD"
+"14063","+42.412217","-079.319254","FREDONIA","NY","CHAUTAUQUA","STANDARD"
+"14065","+42.475344","-078.370334","FREEDOM","NY","CATTARAUGUS","STANDARD"
+"14066","+42.629014","-078.194480","GAINESVILLE","NY","WYOMING","STANDARD"
+"14067","+43.208166","-078.566230","GASPORT","NY","NIAGARA","STANDARD"
+"14068","+43.026737","-078.762454","GETZVILLE","NY","ERIE","STANDARD"
+"14069","+42.610187","-078.639976","GLENWOOD","NY","ERIE","STANDARD"
+"14070","+42.419940","-078.954628","GOWANDA","NY","CATTARAUGUS","STANDARD"
+"14072","+43.015256","-078.958945","GRAND ISLAND","NY","ERIE","STANDARD"
+"14075","+42.729083","-078.837596","HAMBURG","NY","ERIE","STANDARD"
+"14080","+42.640179","-078.543738","HOLLAND","NY","ERIE","STANDARD"
+"14081","+42.543516","-079.101301","IRVING","NY","CHAUTAUQUA","STANDARD"
+"14082","+42.651610","-078.387099","JAVA CENTER","NY","WYOMING","STANDARD"
+"14083","+42.675193","-078.436442","JAVA VILLAGE","NY","WYOMING","STANDARD"
+"14085","+42.716055","-078.929357","LAKE VIEW","NY","ERIE","STANDARD"
+"14086","+42.907658","-078.632137","LANCASTER","NY","ERIE","STANDARD"
+"14091","+42.543860","-078.944750","LAWTONS","NY","ERIE","STANDARD"
+"14092","+43.170805","-078.989515","LEWISTON","NY","NIAGARA","STANDARD"
+"14094","+43.168463","-078.706886","LOCKPORT","NY","NIAGARA","STANDARD"
+"14095","+43.326840","-078.830681","LOCKPORT","NY","NIAGARA","STANDARD"
+"14098","+43.324031","-078.367151","LYNDONVILLE","NY","ORLEANS","STANDARD"
+"14101","+42.389170","-078.554217","MACHIAS","NY","CATTARAUGUS","STANDARD"
+"14102","+42.851099","-078.547172","MARILLA","NY","ERIE","STANDARD"
+"14103","+43.239442","-078.359871","MEDINA","NY","ORLEANS","STANDARD"
+"14105","+43.196947","-078.502849","MIDDLEPORT","NY","NIAGARA","STANDARD"
+"14107","+43.326840","-078.830681","MODEL CITY","NY","NIAGARA","PO BOX ONLY"
+"14108","+43.271156","-078.724806","NEWFANE","NY","NIAGARA","STANDARD"
+"14109","+43.326840","-078.830681","NIAGARA UNIVERSITY","NY","NIAGARA","PO BOX ONLY"
+"14110","+42.768413","-078.887094","NORTH BOSTON","NY","ERIE","PO BOX ONLY"
+"14111","+42.583165","-078.918880","NORTH COLLINS","NY","ERIE","STANDARD"
+"14112","+42.691742","-078.992658","NORTH EVANS","NY","ERIE","PO BOX ONLY"
+"14113","+42.656199","-078.340092","NORTH JAVA","NY","WYOMING","STANDARD"
+"14120","+43.179206","-078.808908","NORTH TONAWANDA","NY","NIAGARA","STANDARD"
+"14125","+43.087438","-078.269677","OAKFIELD","NY","GENESEE","STANDARD"
+"14126","+43.330443","-078.726661","OLCOTT","NY","NIAGARA","PO BOX ONLY"
+"14127","+42.742541","-078.704437","ORCHARD PARK","NY","ERIE","STANDARD"
+"14129","+42.472671","-079.007621","PERRYSBURG","NY","CATTARAUGUS","STANDARD"
+"14130","+42.543108","-078.153849","PIKE","NY","WYOMING","PO BOX ONLY"
+"14131","+43.233055","-078.906562","RANSOMVILLE","NY","NIAGARA","STANDARD"
+"14132","+43.153105","-078.885611","SANBORN","NY","NIAGARA","STANDARD"
+"14133","+42.489129","-078.366991","SANDUSKY","NY","CATTARAUGUS","STANDARD"
+"14134","+42.532281","-078.517233","SARDINIA","NY","ERIE","STANDARD"
+"14135","+42.488983","-079.238997","SHERIDAN","NY","CHAUTAUQUA","PO BOX ONLY"
+"14136","+42.520038","-079.207843","SILVER CREEK","NY","CHAUTAUQUA","STANDARD"
+"14138","+42.374077","-078.946430","SOUTH DAYTON","NY","CATTARAUGUS","STANDARD"
+"14139","+42.716759","-078.543478","SOUTH WALES","NY","ERIE","STANDARD"
+"14140","+42.807159","-078.667599","SPRING BROOK","NY","ERIE","PO BOX ONLY"
+"14141","+42.538335","-078.685169","SPRINGVILLE","NY","ERIE","STANDARD"
+"14143","+42.975195","-078.069868","STAFFORD","NY","GENESEE","STANDARD"
+"14144","+43.199494","-079.042477","STELLA NIAGARA","NY","NIAGARA","STANDARD"
+"14145","+42.733778","-078.423303","STRYKERSVILLE","NY","WYOMING","STANDARD"
+"14150","+42.997040","-078.878659","TONAWANDA","NY","ERIE","STANDARD"
+"14151","+42.768413","-078.887094","TONAWANDA","NY","ERIE","STANDARD"
+"14166","+42.451100","-079.415421","VAN BUREN POINT","NY","CHAUTAUQUA","STANDARD"
+"14167","+42.738977","-078.312478","VARYSBURG","NY","WYOMING","STANDARD"
+"14168","+42.509271","-078.999471","VERSAILLES","NY","CATTARAUGUS","PO BOX ONLY"
+"14169","+42.767333","-078.585646","WALES CENTER","NY","ERIE","PO BOX ONLY"
+"14170","+42.702797","-078.670098","WEST FALLS","NY","ERIE","STANDARD"
+"14171","+42.406409","-078.639581","WEST VALLEY","NY","CATTARAUGUS","STANDARD"
+"14172","+43.272729","-078.831010","WILSON","NY","NIAGARA","STANDARD"
+"14173","+42.524691","-078.475474","YORKSHIRE","NY","CATTARAUGUS","PO BOX ONLY"
+"14174","+43.244454","-078.988325","YOUNGSTOWN","NY","NIAGARA","STANDARD"
+"14201","+42.929303","-078.832706","BUFFALO","NY","ERIE","STANDARD"
+"14202","+42.889662","-078.884157","BUFFALO","NY","ERIE","STANDARD"
+"14203","+42.868057","-078.867906","BUFFALO","NY","ERIE","STANDARD"
+"14204","+42.882957","-078.864898","BUFFALO","NY","ERIE","STANDARD"
+"14205","+42.768413","-078.887094","BUFFALO","NY","ERIE","STANDARD"
+"14206","+42.881012","-078.814555","BUFFALO","NY","ERIE","STANDARD"
+"14207","+42.949557","-078.897009","BUFFALO","NY","ERIE","STANDARD"
+"14208","+42.916107","-078.858157","BUFFALO","NY","ERIE","STANDARD"
+"14209","+42.918107","-078.865857","BUFFALO","NY","ERIE","STANDARD"
+"14210","+42.863608","-078.825755","BUFFALO","NY","ERIE","STANDARD"
+"14211","+42.912257","-078.819005","BUFFALO","NY","ERIE","STANDARD"
+"14212","+42.894558","-078.818805","BUFFALO","NY","ERIE","STANDARD"
+"14213","+42.918057","-078.891108","BUFFALO","NY","ERIE","STANDARD"
+"14214","+42.940107","-078.835256","BUFFALO","NY","ERIE","STANDARD"
+"14215","+42.932957","-078.812252","BUFFALO","NY","ERIE","STANDARD"
+"14216","+42.946407","-078.860407","BUFFALO","NY","ERIE","STANDARD"
+"14217","+42.900044","-078.808205","BUFFALO","NY","ERIE","STANDARD"
+"14218","+42.814558","-078.807754","BUFFALO","NY","ERIE","STANDARD"
+"14219","+42.786308","-078.826444","BUFFALO","NY","ERIE","STANDARD"
+"14220","+42.845908","-078.823005","BUFFALO","NY","ERIE","STANDARD"
+"14221","+42.968507","-078.749153","BUFFALO","NY","ERIE","STANDARD"
+"14222","+42.918207","-078.875007","BUFFALO","NY","ERIE","STANDARD"
+"14223","+42.974607","-078.850507","BUFFALO","NY","ERIE","STANDARD"
+"14224","+42.837128","-078.748352","BUFFALO","NY","ERIE","STANDARD"
+"14225","+42.925458","-078.748145","BUFFALO","NY","ERIE","STANDARD"
+"14226","+42.974389","-078.794905","BUFFALO","NY","ERIE","STANDARD"
+"14227","+42.885308","-078.746202","BUFFALO","NY","ERIE","STANDARD"
+"14228","+43.026016","-078.766073","BUFFALO","NY","ERIE","STANDARD"
+"14231","+42.768413","-078.887094","BUFFALO","NY","ERIE","STANDARD"
+"14233","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14240","+42.768413","-078.887094","BUFFALO","NY","ERIE","STANDARD"
+"14241","+42.938258","-078.744053","BUFFALO","NY","ERIE","UNIQUE"
+"14260","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14261","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14263","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14264","+42.885568","-078.873479","BUFFALO","NY","ERIE","UNIQUE"
+"14265","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14267","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14269","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14270","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14272","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14273","+42.754950","-078.784908","BUFFALO","NY","ERIE","UNIQUE"
+"14276","+42.768413","-078.887094","BUFFALO","NY","ERIE","UNIQUE"
+"14280","+42.768413","-078.887094","BUFFALO","NY","ERIE","STANDARD"
+"14301","+43.089805","-079.009414","NIAGARA FALLS","NY","NIAGARA","STANDARD"
+"14302","+43.326840","-078.830681","NIAGARA FALLS","NY","NIAGARA","STANDARD"
+"14303","+43.086455","-079.037965","NIAGARA FALLS","NY","NIAGARA","STANDARD"
+"14304","+43.100305","-078.952112","NIAGARA FALLS","NY","NIAGARA","STANDARD"
+"14305","+43.117255","-079.018415","NIAGARA FALLS","NY","NIAGARA","STANDARD"
+"14410","+43.195261","-077.855883","ADAMS BASIN","NY","MONROE","STANDARD"
+"14411","+43.235143","-078.194251","ALBION","NY","ORLEANS","STANDARD"
+"14413","+43.222735","-076.982149","ALTON","NY","WAYNE","PO BOX ONLY"
+"14414","+42.895631","-077.735104","AVON","NY","LIVINGSTON","STANDARD"
+"14415","+42.754115","-077.026379","BELLONA","NY","YATES","STANDARD"
+"14416","+43.073792","-078.019684","BERGEN","NY","GENESEE","STANDARD"
+"14418","+42.622634","-077.227187","BRANCHPORT","NY","YATES","STANDARD"
+"14420","+43.223303","-077.917335","BROCKPORT","NY","MONROE","STANDARD"
+"14422","+43.073142","-078.056938","BYRON","NY","GENESEE","STANDARD"
+"14423","+42.935329","-077.838998","CALEDONIA","NY","LIVINGSTON","STANDARD"
+"14424","+42.813576","-077.289687","CANANDAIGUA","NY","ONTARIO","STANDARD"
+"14425","+42.958041","-077.308256","FARMINGTON","NY","ONTARIO","STANDARD"
+"14427","+42.626740","-078.059147","CASTILE","NY","WYOMING","STANDARD"
+"14428","+43.074911","-077.835003","CHURCHVILLE","NY","MONROE","STANDARD"
+"14429","+43.381027","-078.231338","CLARENDON","NY","ORLEANS","PO BOX ONLY"
+"14430","+43.286024","-077.684264","CLARKSON","NY","MONROE","PO BOX ONLY"
+"14432","+42.962932","-077.150097","CLIFTON SPRINGS","NY","ONTARIO","STANDARD"
+"14433","+43.097869","-076.872736","CLYDE","NY","WAYNE","STANDARD"
+"14435","+42.723231","-077.668291","CONESUS","NY","LIVINGSTON","STANDARD"
+"14437","+42.618370","-077.737515","DANSVILLE","NY","LIVINGSTON","STANDARD"
+"14441","+42.722446","-076.963823","DRESDEN","NY","YATES","STANDARD"
+"14443","+42.900966","-077.423310","EAST BLOOMFIELD","NY","ONTARIO","STANDARD"
+"14445","+43.113563","-077.482538","EAST ROCHESTER","NY","MONROE","STANDARD"
+"14449","+43.235369","-077.137642","EAST WILLIAMSON","NY","WAYNE","PO BOX ONLY"
+"14450","+43.104287","-077.428964","FAIRPORT","NY","MONROE","STANDARD"
+"14452","+43.381027","-078.231338","FANCHER","NY","ORLEANS","PO BOX ONLY"
+"14453","+43.010908","-077.470540","FISHERS","NY","ONTARIO","PO BOX ONLY"
+"14454","+42.783801","-077.777872","GENESEO","NY","LIVINGSTON","STANDARD"
+"14456","+42.857414","-077.034883","GENEVA","NY","ONTARIO","STANDARD"
+"14461","+42.808127","-077.287611","GORHAM","NY","ONTARIO","PO BOX ONLY"
+"14462","+42.694819","-077.754628","GROVELAND","NY","LIVINGSTON","STANDARD"
+"14463","+42.796578","-077.063876","HALL","NY","ONTARIO","PO BOX ONLY"
+"14464","+43.321659","-077.925097","HAMLIN","NY","MONROE","STANDARD"
+"14466","+42.784810","-077.618049","HEMLOCK","NY","LIVINGSTON","STANDARD"
+"14467","+43.058863","-077.558902","HENRIETTA","NY","MONROE","STANDARD"
+"14468","+43.285210","-077.832333","HILTON","NY","MONROE","STANDARD"
+"14469","+42.869556","-077.465843","BLOOMFIELD","NY","ONTARIO","STANDARD"
+"14470","+43.215860","-078.073057","HOLLEY","NY","ORLEANS","STANDARD"
+"14471","+42.755573","-077.491905","HONEOYE","NY","ONTARIO","STANDARD"
+"14472","+42.982513","-077.606771","HONEOYE FALLS","NY","MONROE","STANDARD"
+"14475","+42.935868","-077.498231","IONIA","NY","ONTARIO","STANDARD"
+"14476","+43.324058","-078.049928","KENDALL","NY","ORLEANS","STANDARD"
+"14477","+43.330763","-078.123328","KENT","NY","ORLEANS","STANDARD"
+"14478","+42.570794","-077.122590","KEUKA PARK","NY","YATES","STANDARD"
+"14479","+43.241502","-078.318828","KNOWLESVILLE","NY","ORLEANS","PO BOX ONLY"
+"14480","+42.837288","-077.703091","LAKEVILLE","NY","LIVINGSTON","STANDARD"
+"14481","+42.760644","-077.903550","LEICESTER","NY","LIVINGSTON","STANDARD"
+"14482","+42.956190","-077.989988","LE ROY","NY","GENESEE","STANDARD"
+"14485","+42.889864","-077.608688","LIMA","NY","LIVINGSTON","STANDARD"
+"14486","+42.915297","-077.949818","LINWOOD","NY","GENESEE","STANDARD"
+"14487","+42.809457","-077.650938","LIVONIA","NY","LIVINGSTON","STANDARD"
+"14488","+42.729839","-077.773919","LIVONIA CENTER","NY","LIVINGSTON","PO BOX ONLY"
+"14489","+43.099263","-076.970937","LYONS","NY","WAYNE","STANDARD"
+"14502","+43.110807","-077.313450","MACEDON","NY","WAYNE","STANDARD"
+"14504","+42.968903","-077.233194","MANCHESTER","NY","ONTARIO","STANDARD"
+"14505","+43.155940","-077.172684","MARION","NY","WAYNE","STANDARD"
+"14506","+43.001323","-077.504268","MENDON","NY","MONROE","STANDARD"
+"14507","+42.686845","-077.262987","MIDDLESEX","NY","YATES","STANDARD"
+"14508","+43.381027","-078.231338","MORTON","NY","ORLEANS","PO BOX ONLY"
+"14510","+42.683466","-077.866402","MOUNT MORRIS","NY","LIVINGSTON","STANDARD"
+"14511","+43.002612","-077.864580","MUMFORD","NY","MONROE","PO BOX ONLY"
+"14512","+42.667802","-077.413496","NAPLES","NY","ONTARIO","STANDARD"
+"14513","+43.087067","-077.097867","NEWARK","NY","WAYNE","STANDARD"
+"14514","+43.085778","-077.805628","NORTH CHILI","NY","MONROE","STANDARD"
+"14515","+43.257819","-077.735079","NORTH GREECE","NY","MONROE","STANDARD"
+"14516","+43.195842","-076.908805","NORTH ROSE","NY","WAYNE","STANDARD"
+"14517","+42.591883","-077.894474","NUNDA","NY","LIVINGSTON","STANDARD"
+"14518","+42.931873","-077.011839","OAKS CORNERS","NY","ONTARIO","PO BOX ONLY"
+"14519","+43.221476","-077.308614","ONTARIO","NY","WAYNE","STANDARD"
+"14520","+43.348369","-077.045288","ONTARIO CENTER","NY","WAYNE","PO BOX ONLY"
+"14521","+42.689791","-076.794102","OVID","NY","SENECA","STANDARD"
+"14522","+43.081306","-077.218849","PALMYRA","NY","WAYNE","STANDARD"
+"14525","+42.910203","-078.026899","PAVILION","NY","GENESEE","STANDARD"
+"14526","+43.145813","-077.454446","PENFIELD","NY","MONROE","STANDARD"
+"14527","+42.637423","-077.069925","PENN YAN","NY","YATES","STANDARD"
+"14529","+42.535363","-077.628857","PERKINSVILLE","NY","STEUBEN","PO BOX ONLY"
+"14530","+42.682391","-078.056235","PERRY","NY","WYOMING","STANDARD"
+"14532","+42.963394","-077.043612","PHELPS","NY","ONTARIO","STANDARD"
+"14533","+42.843464","-077.896153","PIFFARD","NY","LIVINGSTON","STANDARD"
+"14534","+43.060229","-077.520692","PITTSFORD","NY","MONROE","STANDARD"
+"14536","+42.555988","-078.098906","PORTAGEVILLE","NY","WYOMING","STANDARD"
+"14537","+43.033002","-077.157465","PORT GIBSON","NY","ONTARIO","PO BOX ONLY"
+"14538","+43.283582","-077.142027","PULTNEYVILLE","NY","WAYNE","PO BOX ONLY"
+"14539","+42.834327","-077.877876","RETSOF","NY","LIVINGSTON","PO BOX ONLY"
+"14541","+42.749713","-076.844921","ROMULUS","NY","SENECA","STANDARD"
+"14542","+43.144795","-076.860779","ROSE","NY","WAYNE","PO BOX ONLY"
+"14543","+42.996613","-077.666524","RUSH","NY","MONROE","STANDARD"
+"14544","+42.734157","-077.242693","RUSHVILLE","NY","YATES","STANDARD"
+"14545","+42.652111","-077.710539","SCOTTSBURG","NY","LIVINGSTON","STANDARD"
+"14546","+43.044710","-077.772652","SCOTTSVILLE","NY","MONROE","STANDARD"
+"14547","+42.808127","-077.287611","SENECA CASTLE","NY","ONTARIO","PO BOX ONLY"
+"14548","+42.978834","-077.252696","SHORTSVILLE","NY","ONTARIO","STANDARD"
+"14549","+42.692874","-078.022364","SILVER LAKE","NY","WYOMING","PO BOX ONLY"
+"14550","+42.674209","-078.084485","SILVER SPRINGS","NY","WYOMING","STANDARD"
+"14551","+43.210384","-077.053517","SODUS","NY","WAYNE","STANDARD"
+"14555","+43.254644","-076.983518","SODUS POINT","NY","WAYNE","STANDARD"
+"14556","+42.729839","-077.773919","SONYEA","NY","LIVINGSTON","PO BOX ONLY"
+"14557","+43.041606","-078.057252","SOUTH BYRON","NY","GENESEE","PO BOX ONLY"
+"14558","+42.855409","-077.687643","SOUTH LIMA","NY","LIVINGSTON","PO BOX ONLY"
+"14559","+43.185709","-077.830577","SPENCERPORT","NY","MONROE","STANDARD"
+"14560","+42.635525","-077.594478","SPRINGWATER","NY","LIVINGSTON","STANDARD"
+"14561","+42.833360","-077.129398","STANLEY","NY","ONTARIO","STANDARD"
+"14563","+43.348369","-077.045288","UNION HILL","NY","WAYNE","PO BOX ONLY"
+"14564","+42.973715","-077.426906","VICTOR","NY","ONTARIO","STANDARD"
+"14568","+43.142795","-077.287414","WALWORTH","NY","WAYNE","STANDARD"
+"14569","+42.740223","-078.164804","WARSAW","NY","WYOMING","STANDARD"
+"14571","+43.328706","-078.238501","WATERPORT","NY","ORLEANS","STANDARD"
+"14572","+42.516793","-077.564247","WAYLAND","NY","STEUBEN","STANDARD"
+"14580","+43.218210","-077.454075","WEBSTER","NY","MONROE","STANDARD"
+"14585","+42.905459","-077.548423","WEST BLOOMFIELD","NY","ONTARIO","STANDARD"
+"14586","+43.041553","-077.683575","WEST HENRIETTA","NY","MONROE","STANDARD"
+"14588","+42.683451","-076.872442","WILLARD","NY","SENECA","PO BOX ONLY"
+"14589","+43.239410","-077.163811","WILLIAMSON","NY","WAYNE","STANDARD"
+"14590","+43.224693","-076.840547","WOLCOTT","NY","WAYNE","STANDARD"
+"14591","+42.818578","-078.102549","WYOMING","NY","WYOMING","STANDARD"
+"14592","+42.875685","-077.883511","YORK","NY","LIVINGSTON","PO BOX ONLY"
+"14601","+43.286024","-077.684264","ROCHESTER","NY","MONROE","STANDARD"
+"14602","+43.286024","-077.684264","ROCHESTER","NY","MONROE","STANDARD"
+"14603","+43.161613","-077.606774","ROCHESTER","NY","MONROE","STANDARD"
+"14604","+43.156612","-077.604023","ROCHESTER","NY","MONROE","STANDARD"
+"14605","+43.166313","-077.602973","ROCHESTER","NY","MONROE","STANDARD"
+"14606","+43.173612","-077.691577","ROCHESTER","NY","MONROE","STANDARD"
+"14607","+43.152013","-077.584888","ROCHESTER","NY","MONROE","STANDARD"
+"14608","+43.154611","-077.624001","ROCHESTER","NY","MONROE","STANDARD"
+"14609","+43.198197","-077.549971","ROCHESTER","NY","MONROE","STANDARD"
+"14610","+43.140163","-077.557871","ROCHESTER","NY","MONROE","STANDARD"
+"14611","+43.140163","-077.650275","ROCHESTER","NY","MONROE","STANDARD"
+"14612","+43.257111","-077.678240","ROCHESTER","NY","MONROE","STANDARD"
+"14613","+43.133780","-077.519325","ROCHESTER","NY","MONROE","STANDARD"
+"14614","+43.104463","-077.512569","ROCHESTER","NY","MONROE","STANDARD"
+"14615","+43.222520","-077.552021","ROCHESTER","NY","MONROE","STANDARD"
+"14616","+43.228955","-077.680927","ROCHESTER","NY","MONROE","STANDARD"
+"14617","+43.207062","-077.609425","ROCHESTER","NY","MONROE","STANDARD"
+"14618","+43.112163","-077.561771","ROCHESTER","NY","MONROE","STANDARD"
+"14619","+43.135688","-077.649126","ROCHESTER","NY","MONROE","STANDARD"
+"14620","+43.129862","-077.618523","ROCHESTER","NY","MONROE","STANDARD"
+"14621","+43.149013","-077.631124","ROCHESTER","NY","MONROE","STANDARD"
+"14622","+43.199613","-077.595823","ROCHESTER","NY","MONROE","STANDARD"
+"14623","+43.082184","-077.649074","ROCHESTER","NY","MONROE","STANDARD"
+"14624","+43.121612","-077.731127","ROCHESTER","NY","MONROE","STANDARD"
+"14625","+43.152213","-077.505705","ROCHESTER","NY","MONROE","STANDARD"
+"14626","+43.190312","-077.720018","ROCHESTER","NY","MONROE","STANDARD"
+"14627","+43.127513","-077.627674","ROCHESTER","NY","MONROE","STANDARD"
+"14638","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14639","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14642","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14643","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14644","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14645","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14646","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14647","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14649","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14650","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14651","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14652","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14653","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14660","+43.286024","-077.684264","ROCHESTER","NY","MONROE","STANDARD"
+"14664","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14673","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14683","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14692","+43.286024","-077.684264","ROCHESTER","NY","MONROE","STANDARD"
+"14694","+43.286024","-077.684264","ROCHESTER","NY","MONROE","UNIQUE"
+"14701","+42.196125","-079.432256","JAMESTOWN","NY","CHAUTAUQUA","STANDARD"
+"14702","+42.081657","-079.294921","JAMESTOWN","NY","CHAUTAUQUA","STANDARD"
+"14703","+42.342529","-079.410910","JAMESTOWN","NY","CHAUTAUQUA","UNIQUE"
+"14704","+42.342529","-079.410910","JAMESTOWN","NY","CHAUTAUQUA","UNIQUE"
+"14706","+42.116168","-078.516218","ALLEGANY","NY","CATTARAUGUS","STANDARD"
+"14707","+42.073739","-078.059374","ALLENTOWN","NY","ALLEGANY","STANDARD"
+"14708","+42.025431","-078.084837","ALMA","NY","ALLEGANY","STANDARD"
+"14709","+42.217609","-078.090559","ANGELICA","NY","ALLEGANY","STANDARD"
+"14710","+42.084481","-079.391738","ASHVILLE","NY","CHAUTAUQUA","STANDARD"
+"14711","+42.320366","-078.129640","BELFAST","NY","ALLEGANY","STANDARD"
+"14712","+42.164572","-079.445292","BEMUS POINT","NY","CHAUTAUQUA","STANDARD"
+"14714","+42.290569","-078.237314","BLACK CREEK","NY","ALLEGANY","STANDARD"
+"14715","+42.154417","-078.139391","BOLIVAR","NY","ALLEGANY","STANDARD"
+"14716","+42.316748","-079.432622","BROCTON","NY","CHAUTAUQUA","STANDARD"
+"14717","+42.257674","-078.174601","CANEADEA","NY","ALLEGANY","STANDARD"
+"14718","+42.250021","-079.296028","CASSADAGA","NY","CHAUTAUQUA","STANDARD"
+"14719","+42.343336","-078.869752","CATTARAUGUS","NY","CATTARAUGUS","STANDARD"
+"14720","+42.105907","-079.279120","CELORON","NY","CHAUTAUQUA","PO BOX ONLY"
+"14721","+42.013691","-078.264775","CERES","NY","ALLEGANY","STANDARD"
+"14722","+42.187468","-079.450523","CHAUTAUQUA","NY","CHAUTAUQUA","PO BOX ONLY"
+"14723","+42.308946","-079.387594","CHERRY CREEK","NY","CHAUTAUQUA","STANDARD"
+"14724","+42.072680","-079.644932","CLYMER","NY","CHAUTAUQUA","STANDARD"
+"14726","+42.252473","-079.008294","CONEWANGO VALLEY","NY","CATTARAUGUS","STANDARD"
+"14727","+42.245997","-078.209403","CUBA","NY","ALLEGANY","STANDARD"
+"14728","+42.282800","-079.366516","DEWITTVILLE","NY","CHAUTAUQUA","STANDARD"
+"14729","+42.405354","-078.735158","EAST OTTO","NY","CATTARAUGUS","STANDARD"
+"14730","+42.174736","-078.947340","EAST RANDOLPH","NY","CATTARAUGUS","PO BOX ONLY"
+"14731","+42.297229","-078.649654","ELLICOTTVILLE","NY","CATTARAUGUS","STANDARD"
+"14732","+42.229098","-079.113470","ELLINGTON","NY","CHAUTAUQUA","PO BOX ONLY"
+"14733","+42.126604","-079.182837","FALCONER","NY","CHAUTAUQUA","STANDARD"
+"14735","+42.450790","-078.104285","FILLMORE","NY","ALLEGANY","STANDARD"
+"14736","+42.133206","-079.737701","FINDLEY LAKE","NY","CHAUTAUQUA","STANDARD"
+"14737","+42.335753","-078.491244","FRANKLINVILLE","NY","CATTARAUGUS","STANDARD"
+"14738","+42.053586","-079.118889","FREWSBURG","NY","CHAUTAUQUA","STANDARD"
+"14739","+42.187901","-078.157246","FRIENDSHIP","NY","ALLEGANY","STANDARD"
+"14740","+42.211290","-079.170519","GERRY","NY","CHAUTAUQUA","STANDARD"
+"14741","+42.217040","-078.584117","GREAT VALLEY","NY","CATTARAUGUS","STANDARD"
+"14742","+42.120512","-079.309580","GREENHURST","NY","CHAUTAUQUA","PO BOX ONLY"
+"14743","+42.197916","-078.415859","HINSDALE","NY","CATTARAUGUS","STANDARD"
+"14744","+42.422827","-078.206289","HOUGHTON","NY","ALLEGANY","STANDARD"
+"14745","+42.477700","-078.140343","HUME","NY","ALLEGANY","PO BOX ONLY"
+"14747","+42.152725","-079.111065","KENNEDY","NY","CHAUTAUQUA","STANDARD"
+"14748","+42.144977","-078.646626","KILL BUCK","NY","CATTARAUGUS","STANDARD"
+"14750","+42.124810","-079.440009","LAKEWOOD","NY","CHAUTAUQUA","STANDARD"
+"14751","+42.298328","-079.006231","LEON","NY","CATTARAUGUS","PO BOX ONLY"
+"14752","+42.352416","-079.323502","LILY DALE","NY","CHAUTAUQUA","PO BOX ONLY"
+"14753","+42.141266","-078.607674","LIMESTONE","NY","CATTARAUGUS","STANDARD"
+"14754","+42.031872","-078.209708","LITTLE GENESEE","NY","ALLEGANY","STANDARD"
+"14755","+42.254567","-078.823628","LITTLE VALLEY","NY","CATTARAUGUS","STANDARD"
+"14756","+42.198150","-079.417353","MAPLE SPRINGS","NY","CHAUTAUQUA","STANDARD"
+"14757","+42.237160","-079.370911","MAYVILLE","NY","CHAUTAUQUA","STANDARD"
+"14758","+42.342529","-079.410910","NIOBE","NY","CHAUTAUQUA","PO BOX ONLY"
+"14760","+42.082142","-078.425973","OLEAN","NY","CATTARAUGUS","STANDARD"
+"14766","+42.357543","-078.807283","OTTO","NY","CATTARAUGUS","PO BOX ONLY"
+"14767","+42.191346","-079.505101","PANAMA","NY","CHAUTAUQUA","STANDARD"
+"14769","+42.371561","-079.468963","PORTLAND","NY","CHAUTAUQUA","STANDARD"
+"14770","+42.092944","-078.342341","PORTVILLE","NY","CATTARAUGUS","STANDARD"
+"14772","+42.156841","-078.844412","RANDOLPH","NY","CATTARAUGUS","STANDARD"
+"14774","+42.114385","-078.168055","RICHBURG","NY","ALLEGANY","PO BOX ONLY"
+"14775","+42.230461","-079.426780","RIPLEY","NY","CHAUTAUQUA","STANDARD"
+"14777","+42.397363","-078.232330","RUSHFORD","NY","ALLEGANY","STANDARD"
+"14778","+42.270112","-078.684684","SAINT BONAVENTURE","NY","CATTARAUGUS","PO BOX ONLY"
+"14779","+42.180526","-078.615625","SALAMANCA","NY","CATTARAUGUS","STANDARD"
+"14781","+42.172076","-079.611348","SHERMAN","NY","CHAUTAUQUA","STANDARD"
+"14782","+42.257762","-079.253829","SINCLAIRVILLE","NY","CHAUTAUQUA","STANDARD"
+"14783","+42.082001","-078.917738","STEAMBURG","NY","CATTARAUGUS","PO BOX ONLY"
+"14784","+42.315140","-079.388330","STOCKTON","NY","CHAUTAUQUA","STANDARD"
+"14785","+42.155693","-079.412233","STOW","NY","CHAUTAUQUA","PO BOX ONLY"
+"14786","+42.122670","-078.221332","WEST CLARKSVILLE","NY","ALLEGANY","PO BOX ONLY"
+"14787","+42.253734","-079.484286","WESTFIELD","NY","CHAUTAUQUA","STANDARD"
+"14788","+42.062125","-078.377974","WESTONS MILLS","NY","CATTARAUGUS","PO BOX ONLY"
+"14801","+42.206391","-077.306185","ADDISON","NY","STEUBEN","STANDARD"
+"14802","+42.240535","-077.783192","ALFRED","NY","ALLEGANY","STANDARD"
+"14803","+42.254097","-077.799317","ALFRED STATION","NY","ALLEGANY","STANDARD"
+"14804","+42.313285","-077.851286","ALMOND","NY","ALLEGANY","STANDARD"
+"14805","+42.375566","-076.732706","ALPINE","NY","SCHUYLER","STANDARD"
+"14806","+42.145794","-077.811901","ANDOVER","NY","ALLEGANY","STANDARD"
+"14807","+42.465145","-077.573870","ARKPORT","NY","STEUBEN","STANDARD"
+"14808","+42.562012","-077.468518","ATLANTA","NY","STEUBEN","STANDARD"
+"14809","+42.367861","-077.464128","AVOCA","NY","STEUBEN","STANDARD"
+"14810","+42.357464","-077.302789","BATH","NY","STEUBEN","STANDARD"
+"14812","+42.322924","-076.977336","BEAVER DAMS","NY","SCHUYLER","STANDARD"
+"14813","+42.242168","-077.963148","BELMONT","NY","ALLEGANY","STANDARD"
+"14814","+42.156516","-076.931640","BIG FLATS","NY","CHEMUNG","STANDARD"
+"14815","+42.369808","-077.235796","BRADFORD","NY","STEUBEN","STANDARD"
+"14816","+42.199631","-076.731200","BREESPORT","NY","CHEMUNG","STANDARD"
+"14817","+42.359694","-076.349154","BROOKTONDALE","NY","TOMPKINS","STANDARD"
+"14818","+42.464152","-076.798018","BURDETT","NY","SCHUYLER","STANDARD"
+"14819","+42.211491","-077.453509","CAMERON","NY","STEUBEN","STANDARD"
+"14820","+42.180046","-077.280502","CAMERON MILLS","NY","STEUBEN","STANDARD"
+"14821","+42.262954","-077.215478","CAMPBELL","NY","STEUBEN","STANDARD"
+"14822","+42.422577","-077.835626","CANASERAGA","NY","ALLEGANY","STANDARD"
+"14823","+42.348146","-077.427130","CANISTEO","NY","STEUBEN","STANDARD"
+"14824","+42.272948","-076.693628","CAYUTA","NY","SCHUYLER","STANDARD"
+"14825","+42.052426","-076.607029","CHEMUNG","NY","CHEMUNG","STANDARD"
+"14826","+42.470356","-077.391286","COHOCTON","NY","STEUBEN","STANDARD"
+"14827","+42.178527","-077.141357","COOPERS PLAINS","NY","STEUBEN","PO BOX ONLY"
+"14830","+42.120541","-077.048462","CORNING","NY","STEUBEN","STANDARD"
+"14831","+42.145265","-077.566830","CORNING","NY","STEUBEN","UNIQUE"
+"14836","+42.546164","-077.900210","DALTON","NY","LIVINGSTON","STANDARD"
+"14837","+42.555387","-077.014409","DUNDEE","NY","YATES","STANDARD"
+"14838","+42.181224","-076.671949","ERIN","NY","CHEMUNG","STANDARD"
+"14839","+42.143242","-077.562991","GREENWOOD","NY","STEUBEN","STANDARD"
+"14840","+42.322455","-077.198396","HAMMONDSPORT","NY","STEUBEN","STANDARD"
+"14841","+42.492291","-076.824556","HECTOR","NY","SCHUYLER","STANDARD"
+"14842","+42.577714","-076.964520","HIMROD","NY","YATES","STANDARD"
+"14843","+42.383978","-077.479051","HORNELL","NY","STEUBEN","STANDARD"
+"14844","+42.160717","-076.878456","HORSEHEADS","NY","CHEMUNG","STANDARD"
+"14845","+42.210030","-076.836629","HORSEHEADS","NY","CHEMUNG","STANDARD"
+"14846","+42.555834","-077.999451","HUNT","NY","LIVINGSTON","STANDARD"
+"14847","+42.608440","-076.735556","INTERLAKEN","NY","SENECA","STANDARD"
+"14850","+42.402794","-076.483999","ITHACA","NY","TOMPKINS","STANDARD"
+"14851","+42.460721","-076.505435","ITHACA","NY","TOMPKINS","STANDARD"
+"14852","+42.445074","-076.467233","ITHACA","NY","TOMPKINS","STANDARD"
+"14853","+42.447373","-076.483703","ITHACA","NY","TOMPKINS","STANDARD"
+"14854","+42.506320","-076.608222","JACKSONVILLE","NY","TOMPKINS","PO BOX ONLY"
+"14855","+42.142197","-077.497908","JASPER","NY","STEUBEN","STANDARD"
+"14856","+42.374218","-077.364812","KANONA","NY","STEUBEN","PO BOX ONLY"
+"14857","+42.512632","-076.927019","LAKEMONT","NY","YATES","PO BOX ONLY"
+"14858","+42.045070","-077.106679","LINDLEY","NY","STEUBEN","STANDARD"
+"14859","+42.115457","-076.507823","LOCKWOOD","NY","TIOGA","STANDARD"
+"14860","+42.586029","-076.801671","LODI","NY","SENECA","STANDARD"
+"14861","+42.087671","-076.684615","LOWMAN","NY","CHEMUNG","STANDARD"
+"14863","+42.451569","-076.706717","MECKLENBURG","NY","SCHUYLER","PO BOX ONLY"
+"14864","+42.259644","-076.842298","MILLPORT","NY","CHEMUNG","STANDARD"
+"14865","+42.358866","-076.841852","MONTOUR FALLS","NY","SCHUYLER","STANDARD"
+"14867","+42.365688","-076.610212","NEWFIELD","NY","TOMPKINS","STANDARD"
+"14869","+42.377454","-076.776210","ODESSA","NY","SCHUYLER","STANDARD"
+"14870","+42.159759","-077.382462","PAINTED POST","NY","STEUBEN","STANDARD"
+"14871","+42.047024","-076.882455","PINE CITY","NY","CHEMUNG","STANDARD"
+"14872","+42.240529","-076.875072","PINE VALLEY","NY","CHEMUNG","STANDARD"
+"14873","+42.380560","-077.354408","PRATTSBURGH","NY","STEUBEN","STANDARD"
+"14874","+42.520261","-077.197141","PULTENEY","NY","STEUBEN","STANDARD"
+"14876","+42.429721","-076.925846","READING CENTER","NY","SCHUYLER","PO BOX ONLY"
+"14877","+42.071887","-077.677653","REXVILLE","NY","STEUBEN","STANDARD"
+"14878","+42.480150","-076.946931","ROCK STREAM","NY","YATES","STANDARD"
+"14879","+42.327262","-077.193204","SAVONA","NY","STEUBEN","STANDARD"
+"14880","+42.166150","-077.965672","SCIO","NY","ALLEGANY","STANDARD"
+"14881","+42.402463","-076.360782","SLATERVILLE SPRINGS","NY","TOMPKINS","STANDARD"
+"14882","+42.573453","-076.552378","LANSING","NY","TOMPKINS","STANDARD"
+"14883","+42.203102","-076.471165","SPENCER","NY","TIOGA","STANDARD"
+"14884","+42.455859","-077.889425","SWAIN","NY","ALLEGANY","STANDARD"
+"14885","+42.060366","-077.562142","TROUPSBURG","NY","STEUBEN","STANDARD"
+"14886","+42.480300","-076.635158","TRUMANSBURG","NY","TOMPKINS","STANDARD"
+"14887","+42.399371","-077.026768","TYRONE","NY","SCHUYLER","PO BOX ONLY"
+"14889","+42.210223","-076.585084","VAN ETTEN","NY","CHEMUNG","STANDARD"
+"14891","+42.372850","-076.927135","WATKINS GLEN","NY","SCHUYLER","STANDARD"
+"14892","+42.107825","-076.502218","WAVERLY","NY","TIOGA","STANDARD"
+"14893","+42.474143","-077.097713","WAYNE","NY","SCHUYLER","PO BOX ONLY"
+"14894","+42.027102","-076.764516","WELLSBURG","NY","CHEMUNG","STANDARD"
+"14895","+42.230956","-077.917245","WELLSVILLE","NY","ALLEGANY","STANDARD"
+"14897","+42.050965","-077.821349","WHITESVILLE","NY","ALLEGANY","STANDARD"
+"14898","+42.069469","-077.438058","WOODHULL","NY","STEUBEN","STANDARD"
+"14901","+42.082585","-076.718570","ELMIRA","NY","CHEMUNG","STANDARD"
+"14902","+42.147285","-076.750888","ELMIRA","NY","CHEMUNG","STANDARD"
+"14903","+42.119824","-076.887659","ELMIRA","NY","CHEMUNG","STANDARD"
+"14904","+42.061824","-076.823678","ELMIRA","NY","CHEMUNG","STANDARD"
+"14905","+42.093574","-076.844329","ELMIRA","NY","CHEMUNG","STANDARD"
+"14925","+42.147285","-076.750888","ELMIRA","NY","CHEMUNG","STANDARD"
+"15001","+40.675225","-080.304178","ALIQUIPPA","PA","BEAVER","STANDARD"
+"15003","+40.600494","-080.210521","AMBRIDGE","PA","BEAVER","STANDARD"
+"15004","+40.341349","-080.382247","ATLASBURG","PA","WASHINGTON","PO BOX ONLY"
+"15005","+40.618418","-080.204103","BADEN","PA","BEAVER","STANDARD"
+"15006","+40.493128","-079.903121","BAIRDFORD","PA","ALLEGHENY","PO BOX ONLY"
+"15007","+40.434436","-080.024817","BAKERSTOWN","PA","ALLEGHENY","STANDARD"
+"15009","+40.729053","-080.385191","BEAVER","PA","BEAVER","STANDARD"
+"15010","+40.665672","-080.352049","BEAVER FALLS","PA","BEAVER","STANDARD"
+"15012","+40.070268","-079.603426","BELLE VERNON","PA","FAYETTE","STANDARD"
+"15014","+40.272101","-079.899562","BRACKENRIDGE","PA","ALLEGHENY","STANDARD"
+"15015","+40.434436","-080.024817","BRADFORDWOODS","PA","ALLEGHENY","STANDARD"
+"15017","+40.354589","-080.091342","BRIDGEVILLE","PA","ALLEGHENY","STANDARD"
+"15018","+40.457657","-080.208374","BUENA VISTA","PA","ALLEGHENY","STANDARD"
+"15019","+40.412663","-080.317007","BULGER","PA","WASHINGTON","STANDARD"
+"15020","+40.434436","-080.024817","BUNOLA","PA","ALLEGHENY","PO BOX ONLY"
+"15021","+40.382141","-080.404366","BURGETTSTOWN","PA","WASHINGTON","STANDARD"
+"15022","+40.135834","-079.932907","CHARLEROI","PA","WASHINGTON","STANDARD"
+"15024","+40.434436","-080.024817","CHESWICK","PA","ALLEGHENY","STANDARD"
+"15025","+40.324279","-079.931735","CLAIRTON","PA","ALLEGHENY","STANDARD"
+"15026","+40.490003","-080.290333","CLINTON","PA","ALLEGHENY","STANDARD"
+"15027","+40.699515","-080.264683","CONWAY","PA","BEAVER","STANDARD"
+"15028","+40.434436","-080.024817","COULTERS","PA","ALLEGHENY","PO BOX ONLY"
+"15030","+40.434436","-080.024817","CREIGHTON","PA","ALLEGHENY","STANDARD"
+"15031","+40.354712","-080.166906","CUDDY","PA","ALLEGHENY","STANDARD"
+"15032","+40.434436","-080.024817","CURTISVILLE","PA","ALLEGHENY","PO BOX ONLY"
+"15033","+40.179896","-079.868392","DONORA","PA","WASHINGTON","STANDARD"
+"15034","+40.315793","-079.892171","DRAVOSBURG","PA","ALLEGHENY","STANDARD"
+"15035","+40.434436","-080.024817","EAST MC KEESPORT","PA","ALLEGHENY","STANDARD"
+"15036","+40.214896","-080.179139","ELDERSVILLE","PA","WASHINGTON","STANDARD"
+"15037","+40.271965","-079.896642","ELIZABETH","PA","ALLEGHENY","STANDARD"
+"15038","+40.252086","-079.925235","ELRAMA","PA","WASHINGTON","PO BOX ONLY"
+"15042","+40.710283","-080.240559","FREEDOM","PA","BEAVER","STANDARD"
+"15043","+40.639461","-080.339953","GEORGETOWN","PA","BEAVER","STANDARD"
+"15044","+40.434436","-080.024817","GIBSONIA","PA","ALLEGHENY","STANDARD"
+"15045","+40.434436","-080.024817","GLASSPORT","PA","ALLEGHENY","STANDARD"
+"15046","+40.468068","-080.123459","CRESCENT","PA","ALLEGHENY","STANDARD"
+"15047","+40.434436","-080.024817","GREENOCK","PA","ALLEGHENY","PO BOX ONLY"
+"15049","+40.434436","-080.024817","HARWICK","PA","ALLEGHENY","STANDARD"
+"15050","+40.554305","-080.428223","HOOKSTOWN","PA","BEAVER","STANDARD"
+"15051","+40.434436","-080.024817","INDIANOLA","PA","ALLEGHENY","STANDARD"
+"15052","+40.702397","-080.388271","INDUSTRY","PA","BEAVER","STANDARD"
+"15053","+40.380036","-080.360544","JOFFRE","PA","WASHINGTON","STANDARD"
+"15054","+40.362515","-080.408551","LANGELOTH","PA","WASHINGTON","PO BOX ONLY"
+"15055","+40.305838","-080.121904","LAWRENCE","PA","WASHINGTON","STANDARD"
+"15056","+40.375069","-080.015425","LEETSDALE","PA","ALLEGHENY","STANDARD"
+"15057","+40.359139","-080.267451","MC DONALD","PA","WASHINGTON","STANDARD"
+"15059","+40.740063","-080.397486","MIDLAND","PA","BEAVER","STANDARD"
+"15060","+40.368121","-080.289382","MIDWAY","PA","WASHINGTON","PO BOX ONLY"
+"15061","+40.656366","-080.327814","MONACA","PA","BEAVER","STANDARD"
+"15062","+40.361852","-079.751280","MONESSEN","PA","WESTMORELAND","STANDARD"
+"15063","+40.260001","-080.124442","MONONGAHELA","PA","WASHINGTON","STANDARD"
+"15064","+40.355865","-080.141550","MORGAN","PA","ALLEGHENY","STANDARD"
+"15065","+40.434436","-080.024817","NATRONA HEIGHTS","PA","ALLEGHENY","STANDARD"
+"15066","+40.712175","-080.321773","NEW BRIGHTON","PA","BEAVER","STANDARD"
+"15067","+40.282786","-080.173907","NEW EAGLE","PA","WASHINGTON","STANDARD"
+"15068","+40.478821","-079.581506","NEW KENSINGTON","PA","WESTMORELAND","STANDARD"
+"15069","+40.360223","-079.439801","NEW KENSINGTON","PA","WESTMORELAND","UNIQUE"
+"15071","+40.403348","-080.184169","OAKDALE","PA","ALLEGHENY","STANDARD"
+"15072","+40.139296","-079.856168","PRICEDALE","PA","WESTMORELAND","PO BOX ONLY"
+"15074","+40.686473","-080.326538","ROCHESTER","PA","BEAVER","STANDARD"
+"15075","+40.434436","-080.024817","RURAL RIDGE","PA","ALLEGHENY","PO BOX ONLY"
+"15076","+40.434436","-080.024817","RUSSELLTON","PA","ALLEGHENY","STANDARD"
+"15077","+40.602535","-080.386344","SHIPPINGPORT","PA","BEAVER","PO BOX ONLY"
+"15078","+40.358435","-080.387917","SLOVAN","PA","WASHINGTON","STANDARD"
+"15081","+40.576267","-080.238332","SOUTH HEIGHTS","PA","BEAVER","PO BOX ONLY"
+"15082","+40.386263","-080.208316","STURGEON","PA","ALLEGHENY","PO BOX ONLY"
+"15083","+40.225590","-079.751605","SUTERSVILLE","PA","WESTMORELAND","STANDARD"
+"15084","+40.434436","-080.024817","TARENTUM","PA","ALLEGHENY","STANDARD"
+"15085","+40.382668","-079.594643","TRAFFORD","PA","WESTMORELAND","STANDARD"
+"15086","+40.434436","-080.024817","WARRENDALE","PA","ALLEGHENY","STANDARD"
+"15087","+40.360223","-079.439801","WEBSTER","PA","WESTMORELAND","PO BOX ONLY"
+"15088","+40.271597","-079.896610","WEST ELIZABETH","PA","ALLEGHENY","PO BOX ONLY"
+"15089","+40.201808","-079.727237","WEST NEWTON","PA","WESTMORELAND","STANDARD"
+"15090","+40.434436","-080.024817","WEXFORD","PA","ALLEGHENY","STANDARD"
+"15091","+40.434436","-080.024817","WILDWOOD","PA","ALLEGHENY","PO BOX ONLY"
+"15095","+40.434436","-080.024817","WARRENDALE","PA","ALLEGHENY","STANDARD"
+"15096","+40.434436","-080.024817","WARRENDALE","PA","ALLEGHENY","UNIQUE"
+"15101","+40.434436","-080.024817","ALLISON PARK","PA","ALLEGHENY","STANDARD"
+"15102","+40.371471","-080.115950","BETHEL PARK","PA","ALLEGHENY","STANDARD"
+"15104","+40.366287","-079.858359","BRADDOCK","PA","ALLEGHENY","STANDARD"
+"15106","+40.449080","-080.103165","CARNEGIE","PA","ALLEGHENY","STANDARD"
+"15108","+40.469268","-080.140228","CORAOPOLIS","PA","ALLEGHENY","STANDARD"
+"15110","+40.372069","-079.853820","DUQUESNE","PA","ALLEGHENY","STANDARD"
+"15112","+40.434436","-080.024817","EAST PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15116","+40.357719","-079.979974","GLENSHAW","PA","ALLEGHENY","STANDARD"
+"15120","+40.392619","-079.905171","HOMESTEAD","PA","ALLEGHENY","STANDARD"
+"15122","+40.360575","-079.908621","WEST MIFFLIN","PA","ALLEGHENY","STANDARD"
+"15123","+40.434436","-080.024817","WEST MIFFLIN","PA","ALLEGHENY","STANDARD"
+"15126","+40.452644","-080.128852","IMPERIAL","PA","ALLEGHENY","STANDARD"
+"15127","+40.434436","-080.024817","INGOMAR","PA","ALLEGHENY","PO BOX ONLY"
+"15129","+40.303119","-079.997567","SOUTH PARK","PA","ALLEGHENY","STANDARD"
+"15130","+40.434436","-080.024817","MC KEESPORT","PA","ALLEGHENY","STANDARD"
+"15131","+40.434436","-080.024817","MC KEESPORT","PA","ALLEGHENY","STANDARD"
+"15132","+40.407269","-080.048026","MC KEESPORT","PA","ALLEGHENY","STANDARD"
+"15133","+40.323419","-079.940172","MC KEESPORT","PA","ALLEGHENY","STANDARD"
+"15134","+40.434436","-080.024817","MC KEESPORT","PA","ALLEGHENY","STANDARD"
+"15135","+40.434436","-080.024817","MC KEESPORT","PA","ALLEGHENY","STANDARD"
+"15136","+40.467006","-080.103669","MC KEES ROCKS","PA","ALLEGHENY","STANDARD"
+"15137","+40.434436","-080.024817","NORTH VERSAILLES","PA","ALLEGHENY","STANDARD"
+"15139","+40.434436","-080.024817","OAKMONT","PA","ALLEGHENY","STANDARD"
+"15140","+40.434436","-080.024817","PITCAIRN","PA","ALLEGHENY","STANDARD"
+"15142","+40.402452","-080.166896","PRESTO","PA","ALLEGHENY","STANDARD"
+"15143","+40.451367","-080.208280","SEWICKLEY","PA","ALLEGHENY","STANDARD"
+"15144","+40.434436","-080.024817","SPRINGDALE","PA","ALLEGHENY","STANDARD"
+"15145","+40.434436","-080.024817","TURTLE CREEK","PA","ALLEGHENY","STANDARD"
+"15146","+40.548117","-080.236882","MONROEVILLE","PA","ALLEGHENY","STANDARD"
+"15147","+40.351469","-080.011574","VERONA","PA","ALLEGHENY","STANDARD"
+"15148","+40.434436","-080.024817","WILMERDING","PA","ALLEGHENY","STANDARD"
+"15189","+40.434436","-080.024817","SEWICKLEY","PA","ALLEGHENY","UNIQUE"
+"15201","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15202","+40.328598","-079.949182","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15203","+40.425369","-079.979914","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15204","+40.455368","-080.064416","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15205","+40.432205","-080.102101","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15206","+40.416419","-080.075427","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15207","+40.356169","-079.982123","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15208","+40.519017","-080.166080","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15209","+40.392719","-080.042375","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15210","+40.419662","-080.027243","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15211","+40.429519","-080.014375","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15212","+40.428169","-080.074977","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15213","+40.423069","-079.980624","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15214","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15215","+40.377569","-079.994074","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15216","+40.400091","-080.046176","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15217","+40.385219","-080.054876","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15218","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15219","+40.375351","-080.017075","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15220","+40.418119","-080.052576","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15221","+40.414611","-080.043342","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15222","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15223","+40.457418","-080.044926","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15224","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15225","+40.505118","-080.115528","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15226","+40.400140","-080.016074","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15227","+40.380519","-079.966723","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15228","+40.369569","-080.043925","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15229","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15230","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15231","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15232","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15233","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15234","+40.368819","-080.022399","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15235","+40.398608","-080.000854","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15236","+40.335140","-079.983243","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15237","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15238","+40.380019","-080.006474","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15239","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15240","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15241","+40.332266","-080.081026","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15242","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15243","+40.384169","-080.072876","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15244","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15250","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15251","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15252","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15253","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15254","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15255","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15257","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15258","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15259","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15260","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15261","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15262","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15263","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15264","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15265","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15266","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15267","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15268","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15270","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15272","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15274","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15275","+40.449520","-080.179475","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15276","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15277","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15278","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15279","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15281","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15282","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15283","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15285","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15286","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","UNIQUE"
+"15290","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15295","+40.434436","-080.024817","PITTSBURGH","PA","ALLEGHENY","STANDARD"
+"15301","+40.135391","-080.146709","WASHINGTON","PA","WASHINGTON","STANDARD"
+"15310","+39.870635","-080.211335","ALEPPO","PA","GREENE","STANDARD"
+"15311","+40.049765","-080.168133","AMITY","PA","WASHINGTON","STANDARD"
+"15312","+40.200737","-080.267148","AVELLA","PA","WASHINGTON","STANDARD"
+"15313","+40.065496","-080.022102","BEALLSVILLE","PA","WASHINGTON","PO BOX ONLY"
+"15314","+40.153459","-080.083967","BENTLEYVILLE","PA","WASHINGTON","STANDARD"
+"15315","+39.817048","-079.956728","BOBTOWN","PA","GREENE","PO BOX ONLY"
+"15316","+39.870635","-080.211335","BRAVE","PA","GREENE","STANDARD"
+"15317","+40.155704","-080.128420","CANONSBURG","PA","WASHINGTON","STANDARD"
+"15320","+39.918913","-079.985320","CARMICHAELS","PA","GREENE","STANDARD"
+"15321","+40.159268","-080.104193","CECIL","PA","WASHINGTON","STANDARD"
+"15322","+39.966702","-080.045233","CLARKSVILLE","PA","GREENE","STANDARD"
+"15323","+40.110160","-080.251693","CLAYSVILLE","PA","WASHINGTON","STANDARD"
+"15324","+40.050163","-079.983240","COKEBURG","PA","WASHINGTON","PO BOX ONLY"
+"15325","+39.950170","-079.967626","CRUCIBLE","PA","GREENE","PO BOX ONLY"
+"15327","+39.764089","-079.937419","DILLINER","PA","GREENE","STANDARD"
+"15329","+40.049949","-080.281210","PROSPERITY","PA","WASHINGTON","STANDARD"
+"15330","+40.175570","-080.099336","EIGHTY FOUR","PA","WASHINGTON","STANDARD"
+"15331","+40.106824","-080.021614","ELLSWORTH","PA","WASHINGTON","PO BOX ONLY"
+"15332","+40.198970","-080.059974","FINLEYVILLE","PA","WASHINGTON","STANDARD"
+"15333","+40.025105","-080.011741","FREDERICKTOWN","PA","WASHINGTON","STANDARD"
+"15334","+39.870635","-080.211335","GARARDS FORT","PA","GREENE","STANDARD"
+"15336","+40.260141","-079.992678","GASTONVILLE","PA","WASHINGTON","PO BOX ONLY"
+"15337","+39.937962","-080.001496","GRAYSVILLE","PA","GREENE","STANDARD"
+"15338","+39.820941","-079.974551","GREENSBORO","PA","GREENE","STANDARD"
+"15339","+40.301838","-080.154310","HENDERSONVILLE","PA","WASHINGTON","PO BOX ONLY"
+"15340","+40.226863","-080.169026","HICKORY","PA","WASHINGTON","STANDARD"
+"15341","+39.870635","-080.211335","HOLBROOK","PA","GREENE","STANDARD"
+"15342","+40.133091","-080.133451","HOUSTON","PA","WASHINGTON","STANDARD"
+"15344","+39.870635","-080.211335","JEFFERSON","PA","GREENE","STANDARD"
+"15345","+40.028432","-080.104213","MARIANNA","PA","WASHINGTON","STANDARD"
+"15346","+39.934662","-080.070275","MATHER","PA","GREENE","PO BOX ONLY"
+"15347","+40.217358","-080.226885","MEADOW LANDS","PA","WASHINGTON","PO BOX ONLY"
+"15348","+39.987651","-080.003686","MILLSBORO","PA","WASHINGTON","PO BOX ONLY"
+"15349","+39.774031","-080.024576","MOUNT MORRIS","PA","GREENE","STANDARD"
+"15350","+40.293731","-080.200484","MUSE","PA","WASHINGTON","PO BOX ONLY"
+"15351","+39.877901","-079.925807","NEMACOLIN","PA","GREENE","PO BOX ONLY"
+"15352","+39.870635","-080.211335","NEW FREEPORT","PA","GREENE","STANDARD"
+"15353","+39.870635","-080.211335","NINEVEH","PA","GREENE","PO BOX ONLY"
+"15354","+39.870635","-080.211335","PINE BANK","PA","GREENE","STANDARD"
+"15357","+39.954370","-079.990431","RICES LANDING","PA","GREENE","STANDARD"
+"15358","+40.056347","-079.992554","RICHEYVILLE","PA","WASHINGTON","PO BOX ONLY"
+"15359","+39.870635","-080.211335","ROGERSVILLE","PA","GREENE","STANDARD"
+"15360","+40.092344","-080.099457","SCENERY HILL","PA","WASHINGTON","STANDARD"
+"15361","+40.328190","-080.256291","SOUTHVIEW","PA","WASHINGTON","PO BOX ONLY"
+"15362","+39.744657","-080.214471","SPRAGGS","PA","GREENE","STANDARD"
+"15363","+40.250454","-080.198354","STRABANE","PA","WASHINGTON","STANDARD"
+"15364","+39.870635","-080.211335","SYCAMORE","PA","GREENE","STANDARD"
+"15365","+40.161130","-080.378093","TAYLORSTOWN","PA","WASHINGTON","PO BOX ONLY"
+"15366","+40.110068","-080.031787","VAN VOORHIS","PA","WASHINGTON","PO BOX ONLY"
+"15367","+40.244339","-080.247797","VENETIA","PA","WASHINGTON","STANDARD"
+"15368","+40.023775","-080.007731","VESTABURG","PA","WASHINGTON","PO BOX ONLY"
+"15370","+39.874770","-080.080570","WAYNESBURG","PA","GREENE","STANDARD"
+"15376","+40.128081","-080.270231","WEST ALEXANDER","PA","WASHINGTON","STANDARD"
+"15377","+40.024677","-080.429726","WEST FINLEY","PA","WASHINGTON","STANDARD"
+"15378","+40.277534","-080.273130","WESTLAND","PA","WASHINGTON","PO BOX ONLY"
+"15379","+40.241731","-080.424154","WEST MIDDLETOWN","PA","WASHINGTON","PO BOX ONLY"
+"15380","+39.909365","-080.430040","WIND RIDGE","PA","GREENE","STANDARD"
+"15401","+39.944884","-079.770063","UNIONTOWN","PA","FAYETTE","STANDARD"
+"15410","+39.912105","-079.896360","ADAH","PA","FAYETTE","STANDARD"
+"15411","+39.752401","-079.330768","ADDISON","PA","SOMERSET","STANDARD"
+"15412","+40.095888","-079.849887","ALLENPORT","PA","WASHINGTON","PO BOX ONLY"
+"15413","+39.986828","-079.863732","ALLISON","PA","FAYETTE","STANDARD"
+"15415","+39.980787","-079.850366","BRIER HILL","PA","FAYETTE","PO BOX ONLY"
+"15416","+39.932084","-079.652170","BROWNFIELD","PA","FAYETTE","PO BOX ONLY"
+"15417","+39.921613","-079.690472","BROWNSVILLE","PA","FAYETTE","STANDARD"
+"15419","+40.068921","-079.873163","CALIFORNIA","PA","WASHINGTON","STANDARD"
+"15420","+39.932084","-079.652170","CARDALE","PA","FAYETTE","PO BOX ONLY"
+"15421","+39.845088","-079.599126","CHALK HILL","PA","FAYETTE","PO BOX ONLY"
+"15422","+39.992254","-079.817083","CHESTNUT RIDGE","PA","FAYETTE","PO BOX ONLY"
+"15423","+40.082192","-079.930266","COAL CENTER","PA","WASHINGTON","STANDARD"
+"15424","+39.824325","-079.306409","CONFLUENCE","PA","SOMERSET","STANDARD"
+"15425","+40.007430","-079.700949","CONNELLSVILLE","PA","FAYETTE","STANDARD"
+"15427","+40.065064","-079.973302","DAISYTOWN","PA","WASHINGTON","STANDARD"
+"15428","+39.983001","-079.725516","DAWSON","PA","FAYETTE","STANDARD"
+"15429","+40.008082","-079.939234","DENBO","PA","WASHINGTON","PO BOX ONLY"
+"15430","+40.041785","-079.659978","DICKERSON RUN","PA","FAYETTE","PO BOX ONLY"
+"15431","+39.949088","-079.723151","DUNBAR","PA","FAYETTE","STANDARD"
+"15432","+40.099693","-079.859680","DUNLEVY","PA","WASHINGTON","PO BOX ONLY"
+"15433","+39.973512","-079.704535","EAST MILLSBORO","PA","FAYETTE","STANDARD"
+"15434","+40.080438","-079.875826","ELCO","PA","WASHINGTON","PO BOX ONLY"
+"15435","+39.950123","-079.858471","FAIRBANK","PA","FAYETTE","PO BOX ONLY"
+"15436","+39.954424","-079.808073","FAIRCHANCE","PA","FAYETTE","STANDARD"
+"15437","+39.797410","-079.596769","FARMINGTON","PA","FAYETTE","STANDARD"
+"15438","+40.066729","-079.844514","FAYETTE CITY","PA","FAYETTE","STANDARD"
diff --git a/utils/data-generators/bookmarks.in b/utils/data-generators/bookmarks.in
new file mode 100644
index 0000000..75d2534
--- /dev/null
+++ b/utils/data-generators/bookmarks.in
@@ -0,0 +1,11 @@
+http://simplejson.googlecode.com/svn/tags/simplejson-2.0.8/docs/index.html|JSON API|software, API, doc
+http://gmail.google.com|Gmail, correo electronico de Google|email
+http://www.nokia.com|Nokia on the web|phones, company, homepage
+http://www.gnome.org|GNOME: The Free Software Desktop Project|software, gnome, desktop
+http://www.maemo.org|maemo.org: Maemo is the development platform for Internet Tablets|software
+http://www.bookdepository.co.uk|The book depository|books, bookstore
+http://projects.gnome.org/tracker/|The final metadata solution|software, tracker, homepage
+http://svn.gnome.org/svn/rygel/trunk/|Rygel the GNOME GuPnp media server|software, repository, gnome
+http://bugzilla.gnome.org/buglist.cgi?query=product%3Atracker&remaction=&&ctype=atom|Tracker in gnome bugzilla|software,bugzilla, tracker
+http://live.gnome.org/GitForGnomeDevelopers|Git for GNOME developers - Gnome Live!|tutorial, git
+http://code.google.com/apis/ajax/playground/|AJAX APIs playground|tutorial, ajax, javascript
diff --git a/utils/data-generators/gen_bookmarks.py b/utils/data-generators/gen_bookmarks.py
new file mode 100644
index 0000000..0ceac82
--- /dev/null
+++ b/utils/data-generators/gen_bookmarks.py
@@ -0,0 +1,30 @@
+#!/usr/bin/env python2.5
+import random, sys
+from internals.tools import print_namespaces, print_property, getPseudoRandomDate
+
+def gen_bookmark_uuid ():
+    return "urn:uuid:" + str(random.randint(0, sys.maxint))
+
+
+
+def gen_bookmarks_ttl (filename):
+
+    print_namespaces ()
+
+    for line in open (filename, 'r'):
+        if (line.startswith ("#")):
+            continue
+
+        url, title, tags = line.split('|')
+        print "<%s> a nfo:Bookmark;" % (gen_bookmark_uuid ())
+        print_property ("nie:title", title)
+        print_property ("nie:contentCreated", getPseudoRandomDate ())
+        for tag in tags.strip().split(','):
+            print '\tnao:hasTag [a nao:Tag; nao:prefLabel "%s"];' % (tag.strip())
+        
+        print_property ("nfo:bookmarks", url, "uri", True)
+        
+
+if __name__ == "__main__":
+    gen_bookmarks_ttl ("./bookmarks.in")
+
diff --git a/utils/data-generators/gen_contacts_messages.py b/utils/data-generators/gen_contacts_messages.py
new file mode 100755
index 0000000..291b6c7
--- /dev/null
+++ b/utils/data-generators/gen_contacts_messages.py
@@ -0,0 +1,283 @@
+#! /usr/bin/python
+
+import sys, random, datetime
+import barnum.gen_data as gen_data
+import string
+
+from internals.tools import getPseudoRandomDate
+
+tags = ["cool", "interesting", "favourite", "boring"]
+
+def getRandomTag ():
+    return "\"" + tags [random.randint(0, len(tags) - 1)] + "\""
+
+
+
+def generateCalendarEntry(gen_data, str, random):
+    organizerId = random.randint(0, len(previousContacts) - 1)
+    #TODO set eventstart to 00 minutes 00 seconds
+    eventStart = datetime.datetime.now() + datetime.timedelta(days=random.randint(0, 30), hours=random.randint(-4, 4))
+    eventEnd = eventStart + datetime.timedelta(minutes=(random.randint(1, 4) * 30))
+    f.write('<urn:uuid:' + calendarEntryID + '> a nie:DataObject, ncal:Event, ncal:CalendarDataObject ;\n')
+    f.write('\tncal:attendee [ncal:involvedContact <urn:uuid:1>] ;\n')
+    f.write('\tncal:attendee [ncal:involvedContact <urn:uuid:'+previousContacts[organizerId]+'>] ;\n')
+    f.write('\tncal:transp ncal:transparentTransparency;\n')
+    #f.write('\tnie:dataSource <http://nepomuk.semanticdesktop.org/datawrapper/aperture/rootUri/calendar> ;\n')
+    f.write('\tncal:class ncal:publicClassification ;\n')
+    f.write('\tncal:summary "' + str.replace(gen_data.create_paragraphs(1, 2, 2), "\n", "") + '" ;\n')
+    f.write('\tncal:dtstart [ncal:dateTime "' + eventStart.isoformat().split('.')[0] + '"];\n')
+    f.write('\tncal:dtend [ncal:dateTime "' + eventEnd.isoformat().split('.')[0] + '"];\n')
+    #TODO Add variance to location
+    f.write('\tncal:location "Helsinki, Finland" ;\n')
+    f.write('\tncal:sequence 0 ;\n')
+    f.write('\tncal:url <http://TODO-fillmehere.com> ;\n')
+    f.write('\tncal:organizer [ncal:involvedContact <urn:uuid:'+previousContacts[organizerId]+'>] ;\n')
+    f.write('\tncal:priority 5 ;\n')
+    if (random.randint(0, 4) > 3):
+        f.write ('\tnao:hasTag [a nao:Tag ; nao:prefLabel ' +  getRandomTag () +'];\n')
+    #Wow - hard to create uid?
+    f.write('\tncal:uid "040000008200E00074C5B7101A82E00800000000B020A967E159C8010000000000000000100000001F009082EE836A4D9E9F85D0FD610DDC" ;\n')
+    f.write('\tncal:dtstamp "' + datetime.datetime.now().isoformat().split('.')[0] + '" .\n')
+    f.write('\n')
+
+def generateIMAccount(gen_data, str):
+    f.write('<xmpp:' + xmppAddress + '> a nco:IMAccount; \n')
+    f.write('\tnco:imAccountType "jabber" ;\n')
+    f.write('\tnco:imNickname "' + firstName + ' ' + lastName + '" ;\n')
+    f.write('\tnco:imStatus "online" ;\n')
+    f.write('\tnco:imStatusMessage "' + str.replace(gen_data.create_paragraphs(1, 2, 2), "\n", "") + '" ;\n')
+    f.write('\tnco:imID "' + xmppAddress + '".\n')
+    f.write('\n')
+    previousIMAccounts.append ('xmpp:' + xmppAddress)
+
+
+def generatePhoneNumber():
+    f.write('<' + phoneUri + '> a nco:PhoneNumber; \n')
+    f.write('\tnco:phoneNumber "' + phoneNumber + '".\n')
+    f.write('\n')
+
+## def generateImplicitContact (telephoneNumber):
+##     objUID = str(random.randint(0, sys.maxint))
+##     f.write('<urn:uuid:' + objUID +'> a nco:Contact; \n')
+##     f.write('\tnco:hasPhoneNumber <' + telephoneNumber + '> .\n')
+##     f.write('\n')
+##     return objUID
+
+
+def generatePhoneCalls (many):
+
+    for i in range (0, many):
+
+        callUID = str(random.randint(0, sys.maxint))
+    
+        duration = random.randint (0, 50)
+        relationType = random.randint (0,100) % 2
+        if (relationType == 0):
+            contactProperty = "nmo:from"
+            timeProperty = "nmo:receivedDate"
+        else:
+            contactProperty = "nmo:to"
+            timeProperty = "nmo:sentDate"
+
+        f.write ('<urn:uuid:' + callUID + '> a nmo:TelephoneCall; \n')
+        f.write ('\t'+ contactProperty
+                 +' [a nco:Contact; '
+                 +'nco:hasPhoneNumber ' + '<' + phoneUri + '>]; \n')
+        f.write ('\tnmo:duration ' + str(duration) + '; \n')
+        f.write ('\t'+ timeProperty +' "' + getPseudoRandomDate () + '". \n')
+        f.write ('\n')
+        #taggableUris.append ("urn:uuid:" + callUID)
+
+def generateSMS (many):
+
+    for i in range (0, many):
+
+        smsUID = str(random.randint (0, sys.maxint))
+
+        f.write ('<urn:uuid:' + smsUID + '> a nmo:SMSMessage ;\n')
+        if (random.randint (0,100) % 2 == 0):
+            #Sent SMS
+            f.write('\tnmo:to [a nco:Contact; nco:hasPhoneNumber <' + phoneUri + '>];\n')
+            f.write('\tnmo:from [a nco:Contact; nco:hasPhoneNumber <' + myOwnPhoneNumberURI + '>];\n')
+        else:
+            #Received SMS
+            f.write('\tnmo:from [a nco:Contact; nco:hasPhoneNumber <' + phoneUri + '>];\n')
+            f.write('\tnmo:to [a nco:Contact; nco:hasPhoneNumber <' + myOwnPhoneNumberURI + '>];\n')
+            
+        f.write('\tnmo:sentDate "' + getPseudoRandomDate () + '";\n')
+        f.write('\tnmo:receivedDate "' + getPseudoRandomDate () + '";\n') 
+        if (random.randint(0, 4) > 3):
+            f.write ('\tnao:hasTag [a nao:Tag ; nao:prefLabel ' +  getRandomTag () +'];\n')
+        f.write('\tnmo:plainTextMessageContent "' + str.replace(gen_data.create_paragraphs(1, 5, 8), "\n", "") + '".\n')
+        f.write('\n')
+
+
+def generateEmailAddress():
+    f.write('<mailto:' + emailAddress + '> a nco:EmailAddress; \n')
+    f.write('\tnco:emailAddress "' + emailAddress + '".\n')
+    f.write('\n')
+
+def generatePostalAddress():
+    f.write('<urn:uuid:' + postalAddressID + '> a nco:PostalAddress; \n')
+    f.write('\tnco:country "US" ;\n')
+    f.write('\tnco:region "' + state + '" ;\n')
+    f.write('\tnco:postalcode "' + zip + '" ;\n')
+    f.write('\tnco:locality "' + city + '" ;\n')
+    f.write('\tnco:streetAddress "' + streetAddress + '" .\n')
+    f.write('\n')
+
+def generateEmail(sys, gen_data, str, random):
+    emailUID = str(random.randint(0, sys.maxint))
+    sentMoment = datetime.datetime.now() - datetime.timedelta(days=random.randint(0, 400), minutes=random.randint(0, 59), seconds=random.randint(0, 59))
+    receivedMoment = sentMoment + datetime.timedelta(seconds=random.randint(0, 59))
+    f.write('<urn:uuid:' + emailUID + '> a nmo:Email; \n')
+    f.write('\tnmo:to <urn:uuid:1>;\n')
+    f.write('\tnmo:from <urn:uuid:' + UID + '>;\n')
+    f.write('\tnmo:sentDate "' + sentMoment.isoformat().split('.')[0] + '";\n')
+    f.write('\tnmo:receivedDate "' + receivedMoment.isoformat().split('.')[0] + '";\n')
+    f.write('\tnmo:contentMimeType "text/plain";\n')
+    #if random.randint(0, 11)>9 and len(previousContacts)>1: f.write('\tnmo:isRead true;\n')
+    #else: f.write('\tnmo:isRead false;\n')
+    f.write('\tnmo:messageHeader [a nmo:MessageHeader; nmo:headerName "User-Agent"; nmo:headerValue "tin/unoff-1.3-BETA-970813 (UNIX) (Linux/2.0.30 (i486)) "];\n')
+    f.write('\tnmo:messageHeader [a nmo:MessageHeader; nmo:headerName "from"; nmo:headerValue "' + emailAddress + '"];\n')
+    f.write('\tnmo:messageHeader [a nmo:MessageHeader; nmo:headerName "to"; nmo:headerValue "me me com"];\n')
+    if random.randint(0, 10) > 6 and len(previousContacts) > 1:
+        ccid = random.randint(0, len(previousContacts) - 1)
+        f.write('\tnmo:cc <urn:uuid:' + previousContacts[ccid] + '>;\n')
+        f.write('\tnmo:messageHeader [a nmo:MessageHeader; nmo:headerName "cc"; nmo:headerValue "' + previousEmailAddresses[ccid] + '"];\n')
+    
+        
+    if random.randint(0, 10) > 7 and len(previousContacts) > 1:
+        bccid = random.randint(0, len(previousContacts) - 1)
+        f.write('\tnmo:bcc <urn:uuid:' + previousContacts[bccid] + '>;\n')
+        f.write('\tnmo:messageHeader [a nmo:MessageHeader; nmo:headerName "bcc"; nmo:headerValue "' + previousEmailAddresses[bccid] + '"];\n')
+    #TODO add some sense to the email titles. Some reply chains as well.
+    if (random.randint(0, 4) > 3):
+        f.write ('\tnao:hasTag [a nao:Tag ; nao:prefLabel ' +  getRandomTag () +'];\n')
+    
+    f.write('\tnmo:messageSubject "' + str.replace(gen_data.create_paragraphs(1, 2, 2), "\n", "") + '";\n')
+    f.write('\tnmo:plainTextMessageContent "' + str.replace(gen_data.create_paragraphs(1, 2, 3), "\n", "") + '".\n')
+
+
+
+# BEGIN CREATING.
+if (len(sys.argv) < 2):
+    print "Usage: python get_ttl.py NO_CONTACTS [--with-phone]"
+    sys.exit(0)
+
+try:
+    count = int(sys.argv[1])
+except:
+    print "Usage: python get_ttl.py NO_CONTACTS [--with-phone]"
+    sys.exit(0)
+
+if (len(sys.argv) > 2):
+    if (sys.argv[2] == "--with-phone") :
+        print "Writing %d contacts in 'contacts.ttl' with phone information " %(count)
+        withPhone = True
+    else:
+        print "WTF?!?!? python get_ttl.py NO_CONTACTS [--with-phone]"
+else:
+    print "Writing %d 'contacts.ttl' without phone information" % (count)
+    print "Add --with-phone option to include phone information"
+    withPhone = False
+        
+f=open("./contacts.ttl", 'w' )
+f.write("@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#>.\n")
+f.write("@prefix nrl:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>.\n")
+f.write("@prefix nid3:   <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#>.\n")
+f.write("@prefix nao:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>.\n")
+f.write("@prefix nco:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>.\n")
+f.write("@prefix nmo:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#>.\n")
+f.write("@prefix nfo:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>.\n")    
+f.write("@prefix nie:   <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#>.\n")
+f.write("@prefix ncal:   <http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#>.\n")
+
+f.write("@prefix xsd:   <http://www.w3.org/2001/XMLSchema#>.\n")
+f.write('<mailto:me me com> a nco:EmailAddress; \n')
+f.write('\tnco:emailAddress "me me com".\n')
+f.write('\n')
+f.write('<urn:uuid:1> a nco:PersonContact; \n')    
+f.write('\tnco:fullname "Me Myself";\n')
+f.write('\tnco:nameGiven "Me";\n')
+f.write('\tnco:nameFamily "Myself";\n')
+f.write('\tnco:birthDate "2008-01-01";\n')
+f.write('\tnco:hasEmailAddress <mailto:me me com>;\n')
+f.write('\tnco:hasPhoneNumber <tel:+11111111111>.\n')
+f.write('\n')
+f.write('<tel:+11111111111> a nco:PhoneNumber; \n')
+f.write('\tnco:phoneNumber "(111) 111-1111".\n')
+f.write('\n')
+
+#TODO need to create some email folders
+myOwnPhoneNumberURI="tel:+11111111111"
+previousContacts=[]
+previousEmailAddresses=[]
+previousIMAccounts=[]
+allchars = string.maketrans('','')
+
+for dummy in range (0, count):
+    
+    firstName, lastName = gen_data.create_name()
+    zip, city, state = gen_data.create_city_state_zip()
+    postalAddressID=str(random.randint(0, sys.maxint))
+    
+    UID=str(random.randint(0, sys.maxint))
+    phoneNumber=gen_data.create_phone()
+    phoneUri='tel:+1' + phoneNumber.translate(allchars,' -()')
+    birthDay=gen_data.create_birthday()
+    streetAddress=gen_data.create_street()
+    emailAddress=gen_data.create_email(name=(firstName, lastName))
+    xmppAddress=str(firstName+"."+lastName+"@gmail.com").lower()
+    hasIMAccount=False
+    hasPhoneNumber=False
+    jobTitle=gen_data.create_job_title()
+
+    generatePostalAddress()    
+    generateEmailAddress()    
+        
+    #Only every 3rd have Phone or IM to add variation.
+    if random.randint(0, 3)>2 or count==1: 
+        generateIMAccount(gen_data, str)
+        hasIMAccount=True
+    if random.randint(0, 3)>2 or count==1:
+        generatePhoneNumber()
+        hasPhoneNumber=True
+        if (withPhone): generatePhoneCalls(3)
+        if (withPhone): generateSMS (4)
+        
+    f.write('<urn:uuid:'+UID+'> a nco:PersonContact; \n')    
+    f.write('\tnco:fullname "'+firstName+ ' ' + lastName+'";\n')
+    f.write('\tnco:nameGiven "'+firstName+'";\n')
+    f.write('\tnco:nameFamily "'+lastName+'";\n')
+    f.write('\tnco:birthDate "'+str(birthDay)+'";\n')
+    f.write('\tnco:title "'+jobTitle+'";\n')
+    f.write('\tnco:hasEmailAddress <mailto:'+emailAddress+'>;\n')
+    if hasPhoneNumber: f.write('\tnco:hasPhoneNumber <'+phoneUri+'>;\n')
+    if hasIMAccount: f.write('\tnco:hasIMAccount <xmpp:'+xmppAddress+'>;\n')    	 
+    if (random.randint(0, 4) > 3):
+        f.write ('\tnao:hasTag [a nao:Tag ; nao:prefLabel ' +  getRandomTag () +'];\n')
+    f.write('\tnco:hasPostalAddress <urn:uuid:'+postalAddressID+'>.\n')
+    f.write('\n')
+
+        
+    calendarEntryID=str(random.randint(0, sys.maxint))
+    if random.randint(0, 3)>2 and count>2 and len(previousContacts):
+        generateCalendarEntry(gen_data, str, random)
+    
+    #20% Send emails. Those who do, send 1-30 emails. EMails have CC and BCC people     
+    if random.randint(0, 10)>8 or count==1:
+        emailcount=random.randint(1, 30)        
+        for dummy in range (0, emailcount):
+            generateEmail(sys, gen_data, str, random)
+            f.write('\n')
+    previousContacts.append(UID)
+    previousEmailAddresses.append(emailAddress)
+    
+    #TODO INSERT IM - Use just a nmo:Message for that for now. 
+    
+    #TODO: Insert bookmarks
+    
+    
+f.close()
+
diff --git a/utils/data-generators/gen_gossip.py b/utils/data-generators/gen_gossip.py
new file mode 100755
index 0000000..1e79b12
--- /dev/null
+++ b/utils/data-generators/gen_gossip.py
@@ -0,0 +1,250 @@
+#!/usr/bin/env python2.5
+import random, sys
+import barnum.gen_data as gen_data
+from internals.tools import print_property, get_random_uuid_uri, get_random_in_list
+from internals.tools import print_namespaces, print_instance, print_anon_node
+from internals.tools import getPseudoRandomDate
+
+# (Protocol, Communication channels, uri-prefix, me-address)
+ACCOUNTS = [("Skype", ["voice", "video", "conversation"],
+             "skype:", "skype:me skypemail com"),
+            
+            ("MSN", ["conversation"],
+             "msn:", "msn:me hotmail com"),
+            
+            ("GTalk", ["voice", "video", "conversation"],
+             "gtalk:", "gtalk:me gmail com")
+            ]
+
+MAIL_ADDRESSES = ["me gmail com", "me nokia com", "me hotmail com", "me gmx de"]
+REPLY_TO = "spam triluriluri com"
+
+#
+# Status: 0 - Offline, 1 - Online, 2 - Away, 3 - Peeing, 4 - ...
+#
+NICKNAME_EXTENSIONS = ["the brave", "the coward", "the good", "the bad", "the ugly"]
+ACCOUNT_EXTENSIONS = ["at home", "at office", "mobile"]
+
+def get_nickname (firstname):
+    return str.join (' ', [firstname, get_random_in_list (NICKNAME_EXTENSIONS)])
+
+def get_account_name (protocol):
+    return str.join (' ', [protocol, get_random_in_list (ACCOUNT_EXTENSIONS)])
+
+def get_random_text ():
+    return str.replace(gen_data.create_paragraphs(1, 2, 3), "\n", "").strip()
+
+def get_random_text_short ():
+    return str.replace(gen_data.create_paragraphs(1, 1, 2), "\n", "").strip()
+    
+def get_random_message_id (length=12):
+    CHARS="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
+    return ''.join([CHARS[random.randint (0, len(CHARS)-1)] for i in range(length)])
+
+def gen_account (account_data, user_account, firstname):
+    print_instance (user_account, "nco:IMAccount")
+    print_property ("nco:imStatus", random.randint (0, 5), t="int")
+    print_property ("nco:imAccountType", get_account_name (account_data[0]))
+    print_property ("nco:imProtocol", account_data[2][:-1])
+    print_property ("nco:imNickname", get_nickname (firstname), final=True)
+
+    
+def gen_users_and_accounts (amount):
+
+    known_accounts = []
+    known_emails = []
+    
+    for person in range (0, amount):
+        accounts = []
+        firstName, lastName = gen_data.create_name()
+        zip, city, state = gen_data.create_city_state_zip()
+        postalAddressID = str(random.randint(0, sys.maxint))
+    
+        UID = str (random.randint (0, sys.maxint))
+        birthDay = gen_data.create_birthday ()
+        streetAddress = gen_data.create_street ()
+        emailAddress = gen_data.create_email (name = (firstName, lastName))
+        print_instance (get_random_uuid_uri(), "nco:PersonContact")
+      
+        print_property ("nco:fullname", str.join(' ', [firstName, lastName]))
+        print_property ("nco:nameGiven", firstName)
+        print_property ("nco:nameFamily", lastName)
+        print_property ("nco:birthDate", str(birthDay))
+
+        for j in range (0, random.randint(0, 4)):
+            account_data = get_random_in_list (ACCOUNTS)
+            user_account = str.join ('', [account_data[2], str(j), emailAddress])
+            print_property ("nco:hasIMAccount", user_account, t="uri")
+            accounts.append ((user_account, account_data))
+            known_accounts.insert (0, user_account)
+            known_emails.insert (0, emailAddress)
+
+        print_property ("nco:hasEmailAddress",
+                        str.join ('', ["mailto:";, emailAddress]),
+                        t="uri", final=True)
+
+        for user_account, account_data in accounts:
+            gen_account (account_data, user_account, firstName)
+            del user_account
+            del account_data
+
+        print_instance ("mailto:"; + emailAddress, "nco:EmailAddress")
+        print_property ("nco:emailAddress", emailAddress, final=True)
+            
+    return known_accounts, known_emails
+
+def get_folder_names (address):
+    folders =  ["Inbox", "Outbox", "Sent"]
+    return map (lambda x : "mailfolder://" + address + "/" + x, folders)
+
+def gen_mailfolder (folderuri):
+    # mailfolder://a b com/x/y/x ----> foldername X, displayName x
+    print_instance (folderuri, "nmo:MailFolder")
+    print_property ("nmo:folderName", folderuri.rpartition ('/')[2].upper ())
+    print_property ("nmo:folderDisplayName",  folderuri.rpartition ('/')[2])
+    print_property ("nmo:status", "abudabu", final=True)
+
+def gen_me ():
+    print_instance ("urn:uuid:1", "nco:PersonContact")
+    print_property ("nco:fullname", "Me myself")
+    print_property ("nco:nameGiven", "Me")
+    print_property ("nco:nameFamily", "Myself")
+    print_property ("nco:birthDate", "1980-01-01")
+
+    # Email accounts"
+    for address in MAIL_ADDRESSES:
+        print_property ("nco:hasEmailAddress", "mailto:"; + address, t="uri")
+
+    print_property ("nco:hasIMAccount", "msn:me hotmail com", t="uri")
+    print_property ("nco:hasIMAccount", "gtalk:me gmail com", t="uri")
+    print_property ("nco:hasIMAccount", "skype:me hotmail com", t="uri", final=True)
+
+    for account in ACCOUNTS:
+        gen_account (account, account[3], "Me")
+
+    # Email addresses and accounts
+    # (FIXME: it should be n:m instead of 1:1)
+    i = 0
+    for address in MAIL_ADDRESSES:
+        print_instance ("mailto:"; + address, "nco:EmailAddress")
+        print_property ("nco:emailAddress", address, final=True)
+
+        print_instance (get_random_uuid_uri (), "nmo:Mailbox")
+        print_property ("nmo:accountName",
+                        "Mail " + str(i))
+        print_property ("nmo:accountDisplayName",
+                        "Mail " + get_random_in_list (ACCOUNT_EXTENSIONS))
+        print_property ("nmo:fromAddress",
+                        "mailto:"; + address, t="uri")
+        for folder in get_folder_names (address):
+            print_property ("nie:hasLogicalPart",
+                            folder, t="uri")
+        print_property ("nmo:signature", get_random_text(), final=True)
+
+        for folder in get_folder_names (address):
+            gen_mailfolder (folder)
+        i += 1
+        #print_property ("nmo:folderStatus", "?")
+        #print_property ("nmo:folderParameters", "?")
+
+
+def gen_gossip (amount, friends_list):
+
+    for i in range (0, amount):
+        random_friend = get_random_in_list (friends_list)
+        my_account_prefix = random_friend.split(':')[0] + ":"
+        my_account = filter (lambda x: x[3].startswith (my_account_prefix), ACCOUNTS)[0]
+        addresses = [my_account[3], random_friend]
+
+        for i in range (0, random.randint (0, 10)):
+            if ("voice" in my_account[1]):
+                print_instance (get_random_uuid_uri(), "nmo:VOIPCall")
+                print_property ("nmo:duration", random.randint (10,300),
+                                t="int")
+            else:
+                print_instance (get_random_uuid_uri(), "nmo:IMMessage")
+
+            if (i%2 == 0):
+                print_property ("nmo:sentDate", getPseudoRandomDate ())
+            else:
+                print_property ("nmo:receivedDate", getPseudoRandomDate ())
+            print_anon_node ("nmo:from", "nco:Contact",
+                             "nco:hasIMAccount", addresses [i%2], t="uri")
+            print_anon_node ("nmo:to", "nco:Contact",
+                             "nco:hasIMAccount", addresses [(i+1)%2], t="uri")
+            print_property ("nmo:htmlMessageContent", get_random_text (), final=True)
+
+
+def gen_mail (amount, known_emails):
+
+    for i in range (0, amount):
+        random_address_friend = "mailto:"; + get_random_in_list (known_emails)
+        random_address_me = "mailto:"; + get_random_in_list (MAIL_ADDRESSES)
+
+        print_instance (get_random_uuid_uri (), "nmo:Email")
+        # Half sent, half received
+        if (i%2 == 0):
+            #sent
+            print_anon_node ("nmo:from", "nco:Contact",
+                             "nco:hasEmailAddress", random_address_me, t="uri")
+            print_anon_node ("nmo:to", "nco:Contact",
+                             "nco:hasEmailAddress", random_address_friend, t="uri")
+            print_property ("nmo:sentDate", getPseudoRandomDate ())
+            print_property ("nie:isLogicalPartOf",
+                            "mailfolder://" + random_address_me[7:] + "/Sent", t="uri")
+        else:
+            #received
+            print_anon_node ("nmo:to", "nco:Contact",
+                             "nco:hasEmailAddress", random_address_me, t="uri")
+            print_anon_node ("nmo:from", "nco:Contact",
+                             "nco:hasEmailAddress", random_address_friend, t="uri")
+            print_property ("nmo:receivedDate", getPseudoRandomDate ())
+            print_property ("nie:isLogicalPartOf",
+                            "mailfolder://" + random_address_me[7:] + "/Inbox", t="uri")
+
+        if (random.randint (0, 5) > 3):
+            print_anon_node ("nmo:cc", "nco:Contact",
+                             "nco:hasEmailAddress",
+                             "mailto:"; + get_random_in_list (known_emails))
+
+        if (random.randint (0, 5) > 3):
+            print_anon_node ("nmo:bcc", "nco:Contact",
+                             "nco:hasEmailAddress",
+                             "mailto:"; + get_random_in_list (known_emails))
+
+        print_property ("nmo:messageSubject", get_random_text_short ())
+        print_property ("nmo:status", "eeeeeh uuuhhhmmmmm")
+        print_property ("nmo:responseType", "blublublu")
+        print_property ("nmo:messageId", "<" + get_random_message_id () + "@email.net>")
+        print_property ("nmo:plainTextMessageContent", get_random_text ())
+        print_anon_node ("nmo:replyTo", "nco:Contact",
+                         "nco:hasEmailAddress",
+                         REPLY_TO)
+        # FIXME Add message headers
+        # FIXME Add inReplyTo
+        print_property ("nie:contentSize", random.randint (20, 120), t="str", final=True)
+        
+    
+if __name__ == "__main__":
+
+    #sys.argv = ["blabla", 5]
+
+    if (len(sys.argv) < 2):
+        print "Usage: %s NO_ENTRIES (it must be an integer > 0" % (__name__)
+        sys.exit(-1)
+
+    try:
+        entries = int (sys.argv[1])
+    except ValueError:
+        print "Usage: %s NO_ENTRIES (it must be an integer > 0)" % (__name__)
+        sys.exit (-1)
+        
+    if (entries < 0):
+        print >> sys.stderr, "Entries must be > 0"
+        sys.exit(-1)
+    
+    print_namespaces ()
+    gen_me ()
+    known_accounts, known_emails = gen_users_and_accounts (entries)
+#    gen_gossip (80, known_accounts)
+    gen_mail (80, known_emails)
diff --git a/utils/data-generators/gen_music.py b/utils/data-generators/gen_music.py
new file mode 100755
index 0000000..f935e68
--- /dev/null
+++ b/utils/data-generators/gen_music.py
@@ -0,0 +1,161 @@
+#! /usr/bin/env python
+
+import sys
+import random
+import urllib
+
+
+artist_UID = {}
+album_UID = {}
+fileid = 0
+
+def printHeader():
+	f.write("@prefix nco:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>.\n")
+	f.write("@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#>.\n")
+	f.write("@prefix nrl:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>.\n")
+	f.write("@prefix nid3:   <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#>.\n")
+	f.write("@prefix nmm:   <http://www.tracker-project.org/temp/nmm#>.\n")
+	f.write("@prefix nao:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>.\n")
+	f.write("@prefix nfo:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>.\n")
+	f.write("@prefix nie:   <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#>.\n");
+	f.write("@prefix xsd:   <http://www.w3.org/2001/XMLSchema#>.\n\n")
+
+def updatetag(artistid, albumid, trackid, genreid):
+
+	global fileid
+	
+	length = 0
+	length=random.randint(5000,5000000 )
+	song = 'SongTitle [%03u]' % fileid 
+	artist = 'TrkArtist [%03u]' % artistid
+	album = 'TrkAlbum [%03u]' % albumid
+	genre = 'Genre-[%03u]' %genreid
+	trackstr = str(artistid) + '/' + str(trackid)
+	fullpath = '/home/abc/d/e/%03u.mp3' %fileid
+	fileid +=1
+	year = '2009'
+
+	size ='%03u' %fileid
+	modified = "2009-07-17T15:18:16"
+	created = "2009-07-17T15:18:16"
+	
+	if not artist_UID.has_key(artist):
+                #print " The new  artist is "+artist
+                UID = str(random.randint(0, sys.maxint))
+                artist_UID[artist] = UID
+                f.write('<urn:uuid:'+UID+'> a nco:Contact; \n')
+		f.write('\tnco:fullname "'+artist+'".\n\n')
+
+
+	else :
+                UID = artist_UID[artist]
+
+	if not album_UID.has_key(album):
+                album_UID[album] = album
+                f.write('<urn:album:'+album+'> a nmm:MusicAlbum; \n')
+		
+                if len(UID)>0: f.write('\tnmm:albumArtist <urn:uuid:'+UID+'>;\n')
+                f.write('\tnie:title "'+album+'".\n\n')
+
+	else :
+                UID = artist_UID[artist]
+
+
+        f.write('<file://'+urllib.pathname2url(fullpath)+'> a nmm:MusicPiece,nfo:FileDataObject;\n')
+        if len(song)>0:f.write('\tnie:title "'+song+'";\n')
+        f.write('\tnfo:fileName \"%03u.mp3\";\n' %fileid)
+        f.write('\tnfo:fileLastModified "'+modified+'" ;\n')
+        f.write('\tnfo:fileCreated "'+created+'";\n')
+        f.write('\tnfo:fileSize '+str(size)+';\n')
+        f.write('\tnmm:musicAlbum <urn:album:'+album+'>;\n')
+        f.write('\tnmm:genre "'+genre+'";\n')
+        if len(trackstr)>0:
+        	trackArray=trackstr.split("/")
+                if len(trackArray)>0: f.write('\tnmm:trackNumber '+trackArray[0]+';\n')
+
+
+	f.write('\tnmm:length '+str(length)+';\n')
+        f.write('\tnmm:performer <urn:uuid:'+UID+'>.\n\n')
+
+
+
+def create_track( artistid, albumid, genreid, settings):
+    for trackid in range(1, settings['TitlesPerAlbum'] + 1):
+        updatetag(artistid, albumid, trackid, genreid)
+        genreid += 1
+        if genreid > settings['GenreCount']:
+            genreid = 1
+    return   genreid
+
+
+def generate(settings):
+    ''' A total of TotalTracks files will be generated.
+	These contain the specified number of albums.'''
+    '''	
+    filepath = settings['OutputDir']
+    try:
+    	os.makedirs(filepath)
+    except:
+        print 'Directory exists'
+    '''
+
+    global album_UID 
+    genreid = 1
+    artistid = 1
+    albumid = 0
+    for artistid in range(1, settings['ArtistCount'] + 1):
+	album_UID = {}
+    	for albums in range(1, settings['AlbumCount'] + 1):
+		albumid+=1
+        	genreid = create_track(artistid, albumid, genreid, settings)
+
+
+if __name__ == '__main__':
+	settings = {}
+
+	from optparse import OptionParser
+
+	parser = OptionParser()
+
+        parser.add_option("-T", "--TotalTracks", dest='TotalTracks',
+                        help="Specify (mandatory) the total number of files to be generated" , metavar="TotalTracks")
+        parser.add_option("-r", "--ArtistCount", dest='ArtistCount', default=2,
+                        help="Specify (mandatory) the total number of Artists." , metavar="ArtistCount")
+        parser.add_option("-a", "--album-count", dest='AlbumCount', default=5,
+                        help="Specify (mandatory) the number of albums per artist." , metavar="AlbumCount")
+        parser.add_option("-g", "--genre-count", dest='GenreCount', default=10,
+                        help="Specify the genre count" , metavar="GenreCount")
+        parser.add_option("-o", "--output", dest='OutputFileName', default='songlistDirect.ttl',
+                        help="Specify the output ttl filename. \
+			      E.g., -T 2000 -r 25 -a 20 -g 10 -o generated_songs.ttl" , metavar="OutputFileName")
+
+	(options, args) = parser.parse_args()
+	
+	mandatories = ['TotalTracks', 'ArtistCount', 'AlbumCount']  
+	for m in mandatories:  
+	    if not options.__dict__[m]:  
+	         print "\nMandatory options  missing\n"  
+	         parser.print_help()  
+	         sys.exit(-1)  
+
+	settings['TotalTracks'] = int(options.TotalTracks)
+	if settings['TotalTracks'] < (int(options.ArtistCount) * int(options.AlbumCount) ):
+		sys.exit('InputError: TotalTracks should be greater than or equal to  ArtistCount * AlbumCount')
+
+
+	settings['TitlesPerAlbum'] = settings['TotalTracks'] / (int(options.ArtistCount) * int(options.AlbumCount))
+	#print 'settings[\'TitlesPerAlbum\'] %d' %settings['TitlesPerAlbum']
+	settings['ArtistCount'] = int(options.ArtistCount)
+	settings['AlbumCount'] = int(options.AlbumCount)
+	settings['GenreCount'] = int(options.GenreCount)
+	settings['OutputFileName'] = options.OutputFileName
+
+	print '\n'+str(settings)+'\n'
+
+	f = open(settings['OutputFileName'], 'w' )
+	printHeader()
+	generate(settings)
+
+
+
+
diff --git a/utils/data-generators/gen_webhistory.py b/utils/data-generators/gen_webhistory.py
new file mode 100755
index 0000000..cd28f61
--- /dev/null
+++ b/utils/data-generators/gen_webhistory.py
@@ -0,0 +1,48 @@
+#!/usr/bin/env python2.5
+import random, sys
+from internals.tools import print_namespaces, print_property
+from internals.tools import getPseudoRandomDate, get_random_uuid_uri
+
+DOMAINS = ["http://www.google.com";,
+           "http://www.nokia.com";,
+           "http://www.maemo.com";,
+           "http://slashdot.org";,
+           "http://www.youtube.com";,
+           "http://www.piratebay.org";,
+           "http://python.org";]
+
+def get_random_url_in_domain (domain):
+    return str.join('/', [domain, str(random.randint(0,100000))])
+
+def gen_webhistory_ttl (entries):
+
+    print_namespaces ()
+
+    for i in range (0, entries):
+        domain = DOMAINS [random.randint (0, len (DOMAINS)-1)]
+        
+        print "<%s> a nfo:WebHistory;" % (get_random_uuid_uri ())
+        print_property ("nie:title", "%s %s" % (domain[7:], str(i)))
+        print_property ("nie:contentCreated", getPseudoRandomDate ())
+        print_property ("nfo:domain", domain)
+        print_property ("nfo:uri", get_random_url_in_domain (domain), final=True)
+        
+
+if __name__ == "__main__":
+
+    if (len(sys.argv) < 2):
+        print "Usage: %s NO_ENTRIES (it must be an integer > 0" % (__name__)
+        sys.exit(-1)
+
+    try:
+        entries = int (sys.argv[1])
+    except ValueError:
+        print "Usage: %s NO_ENTRIES (it must be an integer > 0)" % (__name__)
+        sys.exit (-1)
+        
+    if (entries < 0):
+        print >> sys.stderr, "Entries must be > 0"
+        sys.exit(-1)
+    
+    gen_webhistory_ttl (entries)
+
diff --git a/utils/data-generators/generate_all.sh b/utils/data-generators/generate_all.sh
new file mode 100755
index 0000000..4086e9e
--- /dev/null
+++ b/utils/data-generators/generate_all.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+# run all ttl generators
+# assumes a generator is prefixed by gen_ and is executable directly
+
+if [ -z $1 ]
+then
+entries=100
+else
+entries=$1
+fi
+
+echo "Generating $entries entries per category"
+chmod +x gen_*
+
+for generator in `ls gen_*`
+do
+  echo "Running $generator"
+  ./$generator $entries > ${generator#gen_}.ttl
+done
+
+cat contacts_messages.py.ttl
+rm contacts_messages.py.ttl
diff --git a/utils/data-generators/get-fresh-planets.sh b/utils/data-generators/get-fresh-planets.sh
new file mode 100644
index 0000000..970bcc4
--- /dev/null
+++ b/utils/data-generators/get-fresh-planets.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env sh
+wget -O planet-maemo.atom http://maemo.org/news/planet-maemo/atom.xml
+wget -O planet-gnome.atom http://planet.gnome.org/atom.xml
diff --git a/utils/data-generators/id32nmmTurtle.py b/utils/data-generators/id32nmmTurtle.py
new file mode 100644
index 0000000..6a98fd7
--- /dev/null
+++ b/utils/data-generators/id32nmmTurtle.py
@@ -0,0 +1,172 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+#
+#   Copyright (c) 2007 Urho Konttori <urho konttori gmail com>
+#
+#   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 2 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, write to the Free Software
+#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+#   02111-1307, USA.
+#
+import  os, datetime, time, internals.id3reader as id3reader
+import sys, urllib, random
+indexPath="/Volumes/OSX"
+
+if len(sys.argv)>1:
+     indexPath=str(sys.argv[1])
+else:
+    print "Usage: python id32nmmTurtle.py <path-to-index>."
+    sys.exit (1)
+
+
+songcounter=0
+
+filelist=[]
+folderlist=[]
+foldermap=[]
+depth=0
+artist_UID = {}
+album_UID = {}
+
+class FileProcessor:
+    
+    def __init__(self):
+        self.f=open("./songlist.ttl", 'w' )
+        
+        self.f.write("@prefix nco:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>.\n")
+        self.f.write("@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#>.\n")
+        self.f.write("@prefix nrl:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>.\n")
+        self.f.write("@prefix nid3:   <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#>.\n")
+        self.f.write("@prefix nmm:   <http://www.tracker-project.org/temp/nmm#>.\n")
+        self.f.write("@prefix nao:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>.\n")
+        self.f.write("@prefix nfo:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>.\n")    
+        self.f.write("@prefix nie:   <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#>.\n");
+        self.f.write("@prefix xsd:   <http://www.w3.org/2001/XMLSchema#>.\n")
+    
+    def addMp3(self, fullpath, fileName):
+        global songcounter
+	global g_UID
+        try:
+            year=""
+            album=""
+            song=""
+            artist=""
+            trackstr=""
+            genre=""
+            comment=""
+            year=""
+            length=0
+            id3r = id3reader.Reader(fullpath)
+            if id3r.getValue('album'):      album  = id3r.getValue('album')
+            if id3r.getValue('title'):      song   = id3r.getValue('title')
+            if id3r.getValue('performer'):  artist = id3r.getValue('performer')
+            if id3r.getValue('year'):       year = id3r.getValue('year')
+            if id3r.getValue('genre'):       genre = id3r.getValue('genre')
+            if id3r.getValue('comment'):       comment = id3r.getValue('comment')
+            length=random.randint(5000,5000000 )
+            if id3r.getValue('track'):
+                trackstr=str(id3r.getValue('track'))
+            if id3r.getValue('TPA'):
+                partOfSet=id3r.getValue('TPA')
+                if partOfSet=="None": partOfSet=""
+            modified=time.strftime("%Y-%m-%dT%H:%M:%S",time.localtime(os.path.getmtime(fullpath)))
+            created=time.strftime("%Y-%m-%dT%H:%M:%S",time.localtime(os.path.getctime(fullpath)))
+            size = os.path.getsize(fullpath)
+            
+
+            artistUID = ""
+            albumUID = ""
+	    UID=""
+            if not artist_UID.has_key(artist):
+            	#print " The new  artist is "+artist
+            	UID = str(random.randint(0, sys.maxint))
+            	artist_UID[artist] = UID
+		self.f.write('<urn:uuid:'+UID+'> a nco:Contact; \n')
+		#self.f.write('<urn:artist:'+artist+'> a nco:Contact; \n')    
+            	self.f.write('\tnco:fullname "'+artist+'".\n\n')            
+            else :
+            	#print 'Artist exists ' + artist
+            	UID = artist_UID[artist]
+
+            if not album_UID.has_key(album):
+            	#print " The new  album is "+artist
+
+            	album_UID[artist] = album
+		self.f.write('<urn:album:'+album+'> a nmm:MusicAlbum; \n')
+
+	        if len(partOfSet)>0: 
+			setArray=partOfSet.split("/")
+			if len(setArray)>0: self.f.write('\tnmm:setNumber '+setArray[0]+';\n')
+			if len(setArray)>1: self.f.write('\tnmm:setCount '+setArray[1]+';\n')
+		if len(UID)>0: self.f.write('\tnmm:albumArtist <urn:uuid:'+UID+'>;\n')
+            	self.f.write('\tnie:title "'+album+'".\n\n')            
+            else :
+            	#print 'Artist exists ' + artist
+            	UID = artist_UID[artist]
+              
+            self.f.write('<file://'+urllib.pathname2url(fullpath)+'> a nmm:MusicPiece,nfo:FileDataObject;\n')            
+            if len(song)>0: self.f.write('\tnie:title "'+song+'";\n')
+            if len(fileName)>0: self.f.write('\tnfo:fileName "'+fileName+'";\n')            
+            if len(modified)>0: self.f.write('\tnfo:fileLastModified "'+modified+'" ;\n')                                                
+            if len(created)>0: self.f.write('\tnfo:fileCreated "'+created+'";\n')            
+            self.f.write('\tnfo:fileSize '+str(size)+';\n')
+            if len(album)>0: self.f.write('\tnmm:musicAlbum <urn:album:'+album+'>;\n')
+#            if len(year)>0: self.f.write('\tnid3:recordingYear '+str(year)+';\n')
+            if len(genre)>0: self.f.write('\tnmm:genre "'+genre+'";\n')                        
+	    if len(trackstr)>0: 
+		trackArray=trackstr.split("/")
+		if len(trackArray)>0: self.f.write('\tnmm:trackNumber '+trackArray[0]+';\n')
+
+
+            if length>0: self.f.write('\tnmm:length '+str(length)+';\n')
+            if len(UID)>0: self.f.write('\tnmm:performer <urn:uuid:'+UID+'>.\n\n')
+            
+            
+            songcounter+=1
+            
+            
+            if songcounter==1:
+                print id3r.dump()
+
+            
+            
+        except IOError, message:
+            print "ID TAG ERROR: getIDTags(): IOERROR:", message
+
+    def getOSDir(self,addpath, filelist, depth=0):
+        try:
+            test=os.path.exists(addpath)            
+            depth=depth+1
+            if (test and depth<8):
+                #folderlist.append(addpath)
+                #folderCounter=len(folderlist)-1
+                for fileName in os.listdir (addpath):
+                    try:
+                        #filelist.append(addpath+"/"+fileName)
+                        if fileName.endswith(".mp3") or fileName.endswith(".MP3"):
+                            self.addMp3(addpath+"/"+fileName, fileName)
+                        #foldermap.append(folderCounter)                            
+                        if os.path.isdir(addpath+"/"+fileName) and not (fileName.find('.')==0) and not (fileName.find("debian")==0) and not (fileName.find('Maps')==0) and not (fileName.find('maps')==0):                            
+                            self.getOSDir(addpath+"/"+fileName,filelist, depth)
+                    except OSError, message:
+                        print "getOSDir():OSError:", message
+        except OSError, message:
+            print "getOSDir():OSError:", message
+
+
+fileProcessor=FileProcessor()
+startTime = time.time()
+fileProcessor.getOSDir(indexPath, filelist, depth)
+fileProcessor.f.close()
+print "created "+ str(songcounter) +" songs to turtle file in " + str(time.time()-startTime)+ " seconds."
diff --git a/utils/data-generators/id32ttl.py b/utils/data-generators/id32ttl.py
new file mode 100755
index 0000000..26bb934
--- /dev/null
+++ b/utils/data-generators/id32ttl.py
@@ -0,0 +1,150 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+#
+#   Copyright (c) 2007 Urho Konttori <urho konttori gmail com>
+#
+#   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 2 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, write to the Free Software
+#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+#   02111-1307, USA.
+#
+import  os, datetime, time, internals.id3reader as id3reader
+import sys, urllib, random
+indexPath="/Volumes/OSX"
+
+if len(sys.argv)>1:
+     indexPath=str(sys.argv[1])
+else:
+    print "Usage: python musicToTurtle.py <path-to-index>."
+    sys.exit (1)
+
+
+songcounter=0
+
+filelist=[]
+folderlist=[]
+foldermap=[]
+depth=0
+artist_UID = {}
+class FileProcessor:
+    
+    def __init__(self):
+        self.f=open("./songlist.ttl", 'w' )
+        
+        self.f.write("@prefix nco:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>.\n")
+        self.f.write("@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#>.\n")
+        self.f.write("@prefix nrl:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>.\n")
+        self.f.write("@prefix nid3:   <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#>.\n")
+        self.f.write("@prefix nao:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>.\n")
+        self.f.write("@prefix nfo:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>.\n")    
+        self.f.write("@prefix xsd:   <http://www.w3.org/2001/XMLSchema#>.\n")
+    
+    def addMp3(self, fullpath, fileName):
+        global songcounter
+	global g_UID
+        try:
+            year=""
+            album=""
+            song=""
+            artist=""
+            trackstr=""
+            genre=""
+            comment=""
+            year=""
+            length=0
+            id3r = id3reader.Reader(fullpath)
+            if id3r.getValue('album'):      album  = id3r.getValue('album')
+            if id3r.getValue('title'):      song   = id3r.getValue('title')
+            if id3r.getValue('performer'):  artist = id3r.getValue('performer')
+            if id3r.getValue('year'):       year = id3r.getValue('year')
+            if id3r.getValue('genre'):       genre = id3r.getValue('genre')
+            if id3r.getValue('comment'):       comment = id3r.getValue('comment')
+            length=random.randint(5000,5000000 )
+            if id3r.getValue('track'):
+                trackstr=str(id3r.getValue('track'))
+            if id3r.getValue('TPA'):
+                partOfSet=id3r.getValue('TPA')
+                if partOfSet=="None": partOfSet=""
+            modified=time.strftime("%Y-%m-%dT%H:%M:%S",time.localtime(os.path.getmtime(fullpath)))
+            created=time.strftime("%Y-%m-%dT%H:%M:%S",time.localtime(os.path.getctime(fullpath)))
+            size = os.path.getsize(fullpath)
+            
+            #UID=str(random.randint(0, sys.maxint))         
+            UID = ""
+            if not artist_UID.has_key(artist):
+            	#print " The new  artist is "+artist
+            	UID = str(random.randint(0, sys.maxint))
+            	artist_UID[artist] = UID
+		self.f.write('<urn:uuid:'+UID+'> a nco:Contact; \n')    
+            	self.f.write('\tnco:fullname "'+artist+'".\n')            
+            else :
+            	#print 'Artist exists ' + artist
+            	UID = artist_UID[artist]
+              
+            self.f.write('<file://'+urllib.pathname2url(fullpath)+'> a nid3:ID3Audio,nfo:FileDataObject;\n')            
+            if len(fileName)>0: self.f.write('\tnfo:fileName "'+fileName+'";\n')            
+            if len(modified)>0: self.f.write('\tnfo:fileLastModified "'+modified+'" ;\n')                                                
+            if len(created)>0: self.f.write('\tnfo:fileCreated "'+created+'";\n')            
+            self.f.write('\tnfo:fileSize '+str(size)+';\n')
+            if len(album)>0: self.f.write('\tnid3:albumTitle "'+album+'";\n')
+            if len(year)>0: self.f.write('\tnid3:recordingYear '+str(year)+';\n')
+            if len(song)>0: self.f.write('\tnid3:title "'+song+'";\n')
+            if len(trackstr)>0: self.f.write('\tnid3:trackNumber "'+trackstr+'";\n')
+            if len(partOfSet)>0: self.f.write('\tnid3:partOfSet "'+partOfSet+'";\n')
+            
+            if len(genre)>0: self.f.write('\tnid3:contentType "'+genre+'";\n')                        
+            if len(comment)>0: self.f.write('\tnid3:comments "'+comment+'";\n')
+            if length>0: self.f.write('\tnid3:length '+str(length)+';\n')
+            if len(UID)>0: self.f.write('\tnid3:leadArtist <urn:uuid:'+UID+'>.\n\n')
+            
+            
+            songcounter+=1
+            
+            
+            if songcounter==1:
+                print id3r.dump()
+
+            
+            
+        except IOError, message:
+            print "ID TAG ERROR: getIDTags(): IOERROR:", message
+
+    def getOSDir(self,addpath, filelist, depth=0):
+        try:
+            test=os.path.exists(addpath)            
+            depth=depth+1
+            if (test and depth<8):
+                #folderlist.append(addpath)
+                #folderCounter=len(folderlist)-1
+                for fileName in os.listdir (addpath):
+                    try:
+                        #filelist.append(addpath+"/"+fileName)
+                        if fileName.endswith(".mp3") or fileName.endswith(".MP3"):
+                            self.addMp3(addpath+"/"+fileName, fileName)
+                        #foldermap.append(folderCounter)                            
+                        if os.path.isdir(addpath+"/"+fileName) and not (fileName.find('.')==0) and not (fileName.find("debian")==0) and not (fileName.find('Maps')==0) and not (fileName.find('maps')==0):                            
+                            self.getOSDir(addpath+"/"+fileName,filelist, depth)
+                    except OSError, message:
+                        print "getOSDir():OSError:", message
+        except OSError, message:
+            print "getOSDir():OSError:", message
+
+
+fileProcessor=FileProcessor()
+startTime = time.time()
+fileProcessor.getOSDir(indexPath, filelist, depth)
+fileProcessor.f.close()
+print "created "+ str(songcounter) +" songs to turtle file in " + str(time.time()-startTime)+ " seconds."
+
+
diff --git a/utils/data-generators/internals/__init__.py b/utils/data-generators/internals/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/utils/data-generators/internals/id3reader.py b/utils/data-generators/internals/id3reader.py
new file mode 100755
index 0000000..f0cbcb8
--- /dev/null
+++ b/utils/data-generators/internals/id3reader.py
@@ -0,0 +1 @@
+""" Read ID3 tags from a file.    Ned Batchelder, http://nedbatchelder.com"""# -*- coding: utf-8 -*-__version__ = '1.52.20061230'    # History at the end of the file.# ID3 specs: http://www.id3.org/develop.htmlimport struct, sys, zlib# These are the text encodings, indexed by the first byte of a text value.#_encodings = ['iso8859-1','iso8859-2', 'utf-16','utf8']_encodings = ['iso8859-1','utf-16','utf8']# Simple pseudo-id's, mapped to their various representations.# Use these ids with getValue, and you don't need to know what# version of ID3 the file contains._simpleDataMapping = {    'album':        ('TALB', 'TAL', 'v1album'),    'performer':    ('TPE1', 'TP1', 'v1performer'),    'title':        ('TIT2', 'TT2', 'v1title'),    'track':        ('TRCK', 'TRK', 'v1track'),    'year':         ('TYER', 'TYE', 'v1year'),    'genre':        ('TCON', 'TCO', 'v1genre'),    'comment':      ('COMM', 'COM', 'v1comment'),}# Provide booleans for older Pythons.tr
 y:    True, Falseexcept NameError:    True, False = 1==1, 1==0# Tracing_t = Falsedef _trace(msg):    print msg# Coverage_c = False_features = {}def _coverage(feat):    #if _t: _trace('feature '+feat)    _features[feat] = _features.setdefault(feat, 0)+1def _safestr(s):    """ Get a good string for printing, that won't throw exceptions,        no matter what's in it.    """    try:        return unicode(s).encode(sys.getdefaultencoding())    except UnicodeError:        return '?: '+repr(s)# Can I just say that I think the whole concept of genres is bogus,# since they are so subjective?  And the idea of letting someone else pick# one of these things and then have it affect the categorization of my music# is extra bogus.  And the list itself is absurd. Polsk Punk?_genres = [    # 0-19    'Blues', 'Classic Rock', 'Country', 'Dance', 'Disco', 'Funk', 'Grunge', 'Hip - Hop', 'Jazz', 'Metal',    'New Age', 'Oldies', 'Other', 'Pop', 'R&B', 'Rap', 'Reg
 gae', 'Rock', 'Techno', 'Industrial',    # 20-39    'Alternative', 'Ska', 'Death Metal', 'Pranks', 'Soundtrack', 'Euro - Techno', 'Ambient', 'Trip - Hop', 'Vocal', 'Jazz + Funk',    'Fusion', 'Trance', 'Classical', 'Instrmental', 'Acid', 'House', 'Game', 'Sound Clip', 'Gospel', 'Noise',    # 40-59    'Alt Rock', 'Bass', 'Soul', 'Punk', 'Space', 'Meditative', 'Instrumental Pop', 'Instrumental Rock', 'Ethnic', 'Gothic',    'Darkwave', 'Techno - Industrial', 'Electronic', 'Pop - Folk', 'Eurodance', 'Dream', 'Southern Rock', 'Comedy', 'Cult', 'Gangsta Rap',    # 60-79    'Top 40', 'Christian Rap', 'Pop / Funk', 'Jungle', 'Native American', 'Cabaret', 'New Wave', 'Psychedelic', 'Rave', 'Showtunes',    'Trailer', 'Lo - Fi', 'Tribal', 'Acid Punk', 'Acid Jazz', 'Polka', 'Retro', 'Musical', 'Rock & Roll', 'Hard Rock',    # 80-99    'Folk', 'Folk / Rock', 'National Folk', 'Swing', 'Fast - Fusion', 'Bebob', 'Latin', 'Revival', 'Celtic', 'Bluegrass',    'Avantgarde', 'Gothic
  Rock', 'Progressive Rock', 'Psychedelic Rock', 'Symphonic Rock', 'Slow Rock', 'Big Band', 'Chorus', 'Easy Listening', 'Acoustic',    # 100-119    'Humour', 'Speech', 'Chanson', 'Opera', 'Chamber Music', 'Sonata', 'Symphony', 'Booty Bass', 'Primus', 'Porn Groove',    'Satire', 'Slow Jam', 'Club', 'Tango', 'Samba', 'Folklore', 'Ballad', 'Power Ballad', 'Rhythmic Soul', 'Freestyle',    # 120-139    'Duet', 'Punk Rock', 'Drum Solo', 'A Cappella', 'Euro - House', 'Dance Hall', 'Goa', 'Drum & Bass', 'Club - House', 'Hardcore',    'Terror', 'Indie', 'BritPop', 'Negerpunk', 'Polsk Punk', 'Beat', 'Christian Gangsta Rap', 'Heavy Metal', 'Black Metal', 'Crossover',    # 140-147    'Contemporary Christian', 'Christian Rock', 'Merengue', 'Salsa', 'Thrash Metal', 'Anime', 'JPop', 'Synthpop'    ]class Id3Error(Exception):    """ An exception caused by id3reader properly handling a bad ID3 tag.    """    passclass _Header:    """ Represent the ID3 header in a tag.    """
     def __init__(self):        self.majorVersion = 0        self.revision = 0        self.flags = 0        self.size = 0        self.bUnsynchronized = False        self.bExperimental = False        self.bFooter = False    def __str__(self):        return str(self.__dict__)class _Frame:    """ Represent an ID3 frame in a tag.    """    def __init__(self):        self.id = ''        self.size = 0        self.flags = 0        self.rawData = ''        self.bTagAlterPreserve = False        self.bFileAlterPreserve = False        self.bReadOnly = False        self.bCompressed = False        self.bEncrypted = False        self.bInGroup = False    def __str__(self):        return str(self.__dict__)    def __repr__(self):        return str(self.__dict__)    def _interpret(self):        """ Examine self.rawData and create a self.value from it.        """        if len(self.rawData) == 0:            # This is counter to the spec, but seems harmless e
 nough.            #if _c: _coverage('zero data')            return        if self.bCompressed:            # Decompress the compressed data.            self.rawData = zlib.decompress(self.rawData)        if self.id[0] == 'T':            # Text fields start with T            encoding = ord(self.rawData[0])            #print encoding            if 0 <= encoding < len(_encodings):                #if _c: _coverage('encoding%d' % encoding)                try:                        value = self.rawData[1:].decode(_encodings[encoding])                except:                        print "Error decoding data"            else:                #if _c: _coverage('bad encoding')                value = self.rawData[1:]            # Don't let trailing zero bytes fool you.            if value:                value = value.strip('\0')            # The value can actually be a list.            if '\0' in value:                value = value.split('\0')               
  #if _c: _coverage('textlist')            self.value = value        elif self.id[0] == 'W':            # URL fields start with W            self.value = self.rawData.strip('\0')            if self.id == 'WXXX':                self.value = self.value.split('\0')        elif self.id == 'CDM':            # ID3v2.2.1 Compressed Data Metaframe            if self.rawData[0] == 'z':                self.rawData = zlib.decompress(self.rawData[5:])            else:                #if _c: _coverage('badcdm!')                raise Id3Error, 'Unknown CDM compression: %02x' % self.rawData[0]            # TODO: re-interpret the decompressed frame.        elif self.id in _simpleDataMapping['comment']:            # comment field            # In limited testing a typical comment looks like            # '\x00XXXID3v1 Comment\x00comment test' so in this            # case we need to find the second \x00 to know where            # where we start for a comment.  In case we on
 ly find            # one \x00, lets just start at the beginning for the            # value            s = str(self.rawData)            pos = 0            count = 0            while pos < len(s) and count < 2:                if ord(s[pos]) == 0:                    count = count + 1                pos = pos + 1            if count < 2:                pos = 1            if pos > 0 and pos < len(s):                s = s[pos:]                if ord(s[-1]) == 0:                    s = s[:-1]            self.value = s      class Reader:    """ An ID3 reader.        Create one on a file object, and then use getValue('TIT2') (for example)        to pull values.    """    def __init__(self, file):        """ Create a reader from a file or filename. """        self.file = file        self.header = None        self.frames = {}        self.allFrames = []        self.bytesLeft = 0        self.padbytes = ''        bCloseFile = False        # If self.file
  is a string of some sort, then open it to get a file.        if isinstance(self.file, (type(''), type(u''))):            self.file = open(self.file, 'rb')            bCloseFile = True        self._readId3()        if bCloseFile:            self.file.close()    def _readBytes(self, num, desc=''):        """ Read some bytes from the file.            This method implements the "unsynchronization" scheme,            where 0xFF bytes may have had 0x00 bytes stuffed after            them.  These zero bytes have to be removed transparently.        """        #if _t: _trace("ask %d (%s)" % (num,desc))        if num > self.bytesLeft:            #if _c: _coverage('long!')            raise Id3Error, 'Long read (%s): (%d > %d)' % (desc, num, self.bytesLeft)        bytes = self.file.read(num)        self.bytesLeft -= num        if len(bytes) < num:            #if _t: _trace("short read with %d left, %d total" % (self.bytesLeft, self.header.size))            #if 
 _c: _coverage('short!')            raise Id3Error, 'Short read (%s): (%d < %d)' % (desc, len(bytes), num)        if self.header.bUnsynchronized:            nUnsync = 0            i = 0            while True:                i = bytes.find('\xFF\x00', i)                if i == -1:                    break                #if _t: _trace("unsync at %d" % (i+1))                #if _c: _coverage('unsyncbyte')                nUnsync += 1                # This is a stuffed byte to remove                bytes = bytes[:i+1] + bytes[i+2:]                # Have to read one more byte from the file to adjust                bytes += self.file.read(1)                self.bytesLeft -= 1                i += 1            #if _t: _trace("unsync'ed %d" % (nUnsync))        return bytes    def _unreadBytes(self, num):        self.file.seek(-num, 1)        self.bytesLeft += num    def _getSyncSafeInt(self, bytes):        assert len(bytes) == 4        if type(bytes) == ty
 pe(''):            bytes = [ ord(c) for c in bytes ]        return (bytes[0] << 21) + (bytes[1] << 14) + (bytes[2] << 7) + bytes[3]    def _getInteger(self, bytes):        i = 0;        if type(bytes) == type(''):            bytes = [ ord(c) for c in bytes ]        for b in bytes:            i = i*256+b        return i    def _addV1Frame(self, id, rawData):        if id == 'v1genre':            assert len(rawData) == 1            nGenre = ord(rawData)            try:                value = _genres[nGenre]            except IndexError:                value = "(%d)" % nGenre        else:            value = rawData.strip(' \t\r\n').split('\0')[0]        if value:            frame = _Frame()            frame.id = id            frame.rawData = rawData            frame.value = value            self.frames[id] = frame            self.allFrames.append(frame)    def _pass(self):        """ Do nothing, for when we need to plug in a no-op function.      
   """        pass    def _readId3(self):        header = self.file.read(10)        if len(header) < 10:            return        hstuff = struct.unpack('!3sBBBBBBB', header)        if hstuff[0] != "ID3":            # Doesn't look like an ID3v2 tag,            # Try reading an ID3v1 tag.            self._readId3v1()            return        self.header = _Header()        self.header.majorVersion = hstuff[1]        self.header.revision = hstuff[2]        self.header.flags = hstuff[3]        self.header.size = self._getSyncSafeInt(hstuff[4:8])        self.bytesLeft = self.header.size        self._readExtHeader = self._pass        if self.header.majorVersion == 2:            #if _c: _coverage('id3v2.2.%d' % self.header.revision)            self._readFrame = self._readFrame_rev2        elif self.header.majorVersion == 3:            #if _c: _coverage('id3v2.3.%d' % self.header.revision)            self._readFrame = self._readFrame_rev3        elif sel
 f.header.majorVersion == 4:            #if _c: _coverage('id3v2.4.%d' % self.header.revision)            self._readFrame = self._readFrame_rev4        else:            #if _c: _coverage('badmajor!')            raise Id3Error, "Unsupported major version: %d" % self.header.majorVersion        # Interpret the flags        self._interpretFlags()        # Read any extended header        self._readExtHeader()        # Read the frames        while self.bytesLeft > 0:            frame = self._readFrame()            if frame:                frame._interpret()                self.frames[frame.id] = frame                self.allFrames.append(frame)            else:                #if _c: _coverage('padding')                break    def _interpretFlags(self):        """ Interpret ID3v2.x flags.        """        if self.header.flags & 0x80:            self.header.bUnsynchronized = True            #if _c: _coverage('unsynctag')        if self.header.majorVe
 rsion == 2:            if self.header.flags & 0x40:                #if _c: _coverage('compressed')                # "Since no compression scheme has been decided yet,                # the ID3 decoder (for now) should just ignore the entire                # tag if the compression bit is set."                self.header.bCompressed = True        if self.header.majorVersion >= 3:            if self.header.flags & 0x40:                #if _c: _coverage('extheader')                if self.header.majorVersion == 3:                    self._readExtHeader = self._readExtHeader_rev3                else:                    self._readExtHeader = self._readExtHeader_rev4            if self.header.flags & 0x20:                #if _c: _coverage('experimental')                self.header.bExperimental = True        if self.header.majorVersion >= 4:            if self.header.flags & 0x10:                #if _c: _coverage('footer')                self.header.bFooter = T
 rue    def _readExtHeader_rev3(self):        """ Read the ID3v2.3 extended header.        """        # We don't interpret this yet, just eat the bytes.        size = self._getInteger(self._readBytes(4, 'rev3ehlen'))        self._readBytes(size, 'rev3ehdata')    def _readExtHeader_rev4(self):        """ Read the ID3v2.4 extended header.        """        # We don't interpret this yet, just eat the bytes.        size = self._getSyncSafeInt(self._readBytes(4, 'rev4ehlen'))        self._readBytes(size, 'rev4ehdata')    def _readId3v1(self):        """ Read the ID3v1 tag.            spec: http://www.id3.org/id3v1.html        """        self.file.seek(-128, 2)        tag = self.file.read(128)        if len(tag) != 128:            return        if tag[0:3] != 'TAG':            return        self.header = _Header()        self.header.majorVersion = 1        self.header.revision = 0        self._addV1Frame('v1title', tag[3:33])        self._addV1Frame('
 v1performer', tag[33:63])        self._addV1Frame('v1album', tag[63:93])        self._addV1Frame('v1year', tag[93:97])        self._addV1Frame('v1comment', tag[97:127])        self._addV1Frame('v1genre', tag[127])        if tag[125] == '\0' and tag[126] != '\0':            #if _c: _coverage('id3v1.1')            self.header.revision = 1            self._addV1Frame('v1track', str(ord(tag[126])))        else:            #if _c: _coverage('id3v1.0')            pass        return    _validIdChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'    def _isValidId(self, id):        """ Determine if the id bytes make a valid ID3 id.        """        for c in id:            if not c in self._validIdChars:                #if _c: _coverage('bad id')                return False        #if _c: _coverage('id '+id)        return True    def _readFrame_rev2(self):        """ Read a frame for ID3v2.2: three-byte ids and lengths.            spec: http://www.id3.org/id3v2
 -00.txt        """        if self.bytesLeft < 6:            return None        id = self._readBytes(3, 'rev2id')        if len(id) < 3 or not self._isValidId(id):            self._unreadBytes(len(id))            return None        hstuff = struct.unpack('!BBB', self._readBytes(3, 'rev2len'))        frame = _Frame()        frame.id = id        frame.size = self._getInteger(hstuff[0:3])        frame.rawData = self._readBytes(frame.size, 'rev2data')        return frame    def _readFrame_rev3(self):        """ Read a frame for ID3v2.3: four-byte ids and lengths.        """        if self.bytesLeft < 10:            return None        id = self._readBytes(4,'rev3id')        if len(id) < 4 or not self._isValidId(id):            self._unreadBytes(len(id))            return None        hstuff = struct.unpack('!BBBBh', self._readBytes(6,'rev3head'))        frame = _Frame()        frame.id = id        frame.size = self._getInteger(hstuff[0:4])        cbData 
 = frame.size        frame.flags = hstuff[4]        #if _t: _trace('flags = %x' % frame.flags)        frame.bTagAlterPreserve = (frame.flags & 0x8000 != 0)        frame.bFileAlterPreserve = (frame.flags & 0x4000 != 0)        frame.bReadOnly = (frame.flags & 0x2000 != 0)        frame.bCompressed = (frame.flags & 0x0080 != 0)        if frame.bCompressed:            frame.decompressedSize = self._getInteger(self._readBytes(4, 'decompsize'))            cbData -= 4            #if _c: _coverage('compress')        frame.bEncrypted = (frame.flags & 0x0040 != 0)        if frame.bEncrypted:            frame.encryptionMethod = self._readBytes(1, 'encrmethod')            cbData -= 1            #if _c: _coverage('encrypt')        frame.bInGroup = (frame.flags & 0x0020 != 0)        if frame.bInGroup:            frame.groupid = self._readBytes(1, 'groupid')            cbData -= 1            #if _c: _coverage('groupid')        frame.rawData = self._readBytes(cbData, 're
 v3data')        return frame    def _readFrame_rev4(self):        """ Read a frame for ID3v2.4: four-byte ids and lengths.        """        if self.bytesLeft < 10:            return None        id = self._readBytes(4,'rev4id')        if len(id) < 4 or not self._isValidId(id):            self._unreadBytes(len(id))            return None        hstuff = struct.unpack('!BBBBh', self._readBytes(6,'rev4head'))        frame = _Frame()        frame.id = id        frame.size = self._getSyncSafeInt(hstuff[0:4])        cbData = frame.size        frame.flags = hstuff[4]        frame.bTagAlterPreserve = (frame.flags & 0x4000 != 0)        frame.bFileAlterPreserve = (frame.flags & 0x2000 != 0)        frame.bReadOnly = (frame.flags & 0x1000 != 0)        frame.bInGroup = (frame.flags & 0x0040 != 0)        if frame.bInGroup:            frame.groupid = self._readBytes(1, 'groupid')            cbData -= 1            #if _c: _coverage('groupid')        frame.bCompres
 sed = (frame.flags & 0x0008 != 0)        if frame.bCompressed:            #if _c: _coverage('compress')            pass        frame.bEncrypted = (frame.flags & 0x0004 != 0)        if frame.bEncrypted:            frame.encryptionMethod = self._readBytes(1, 'encrmethod')            cbData -= 1            #if _c: _coverage('encrypt')        frame.bUnsynchronized = (frame.flags & 0x0002 != 0)        if frame.bUnsynchronized:            #if _c: _coverage('unsyncframe')            pass        if frame.flags & 0x0001:            frame.datalen = self._getSyncSafeInt(self._readBytes(4, 'datalen'))            cbData -= 4            #if _c: _coverage('datalenindic')        frame.rawData = self._readBytes(cbData, 'rev3data')        return frame    def getValue(self, id):        """ Return the value for an ID3 tag id, or for a            convenience label ('title', 'performer', ...),            or return None if there is no such value.        """        test=u
 nicode("")        v = None        if self.frames.has_key(id):            if hasattr(self.frames[id], 'value'):                v=self.frames[id].value        if _simpleDataMapping.has_key(id):            for id2 in _simpleDataMapping[id]:                #print "mapping data from "+id                tester = self.getValue(id2)                                #print "mapping data from "+id+" -"+tester                #print tester=="None"                if not tester=="None":                    v=tester                    #print "setting value" + tester        else:                  try:                v=unicode(v).encode("utf8")                      except:                try:                        v=unicode(v).encode("iso8859-15")                except:                        try:                                v=unicode(v).encode("ascii")                        except:                                v=v        #if id=="performer": print test        
 return v    def getRawData(self, id):        if self.frames.has_key(id):            return self.frames[id].rawData        return None    def dump(self):        import pprint        print "Header:"        print self.header        print "Frames:"        for fr in self.allFrames:            if len(fr.rawData) > 30:                fr.rawData = fr.rawData[:30]        pprint.pprint(self.allFrames)        for fr in self.allFrames:            if hasattr(fr, 'value'):                print '%s: %s' % (fr.id, _safestr(fr.value))            else:                print '%s= %s' % (fr.id, _safestr(fr.rawData))        for label in _simpleDataMapping.keys():            v = self.getValue(label)            if v:                print 'Label %s: %s' % (label, _safestr(v))    def dumpCoverage(self):        feats = _features.keys()        feats.sort()        for feat in feats:            print "Feature %-12s: %d" % (feat, _features[feat])if __name__ == '__main__': 
    if len(sys.argv) < 2 or '-?' in sys.argv:        print "Give me a filename"    else:        id3 = Reader(sys.argv[1])        id3.dump()        #if _c: id3.dumpCoverage()# History:# 20040104: Created.# 20040105: Two bugs: didn't read v1 properly, and didn't like empty strings in values.## 20040109: Properly reads v2.3 properly (4-byte lens, but not synchsafe)#           Handles unsynchronized tags properly.## 20040110: Total length was wrong for unsynchronized tags.#           Treat input filename better so path module can be used.#           Frame ids are more closely scrutinized for validity.#           Errors are now thrown as our own exception.#           Pad bytes aren't retained any more.#           Frame.value is not set if there is no interpretation performed.## 20040111: Tracing and code coverage more formalized.#           Exceptions are now all Id3Error.#           Zero-length data in frames is handled pleasantly.#           Compressed fr
 ames are decompressed.#           Extended headers are read (but uninterpreted).#           Non-zero pad bytes are handled.#           Frame flags are read and interpreted.#           W*** frames are interpreted.#           Multi-string frames set .value to a list of strings.## 20040113: Strip all trailing zero bytes from text strings.#           If we opened the file, we should close the file.## 20040205: Do a better job printing strings without throwing.#           Support genre information, even if it is stupid.## 20040913: When dumping strings, be more robust when trying to print#               non-character data. Thanks to Duane Harkness for the fix.## 20061230: Fix ommission of self. in a few places.
diff --git a/utils/data-generators/internals/tools.py b/utils/data-generators/internals/tools.py
new file mode 100644
index 0000000..c3fd56d
--- /dev/null
+++ b/utils/data-generators/internals/tools.py
@@ -0,0 +1,82 @@
+import datetime, sys
+import random
+
+NAMESPACES = [
+    	("rdf", "<http://www.w3.org/2000/01/rdf-schema#>"),
+	("nrl", "<http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>"),
+	("nid3","<http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#>"),
+	("nao", "<http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>"),
+	("nco", "<http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>"),
+	("nmo", "<http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#>"),
+	("nfo", "<http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>"),
+	("nie", "<http://www.semanticdesktop.org/ontologies/2007/01/19/nie#>"),
+	("ncal", "<http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#>"),
+	("xsd", "<http://www.w3.org/2001/XMLSchema#>")
+    ]
+
+def print_namespaces ():
+    for prefix, uri in NAMESPACES:
+        print "@prefix %s: %s." % (prefix, uri)
+    print ""
+
+
+def print_property (property_name, value, t="str", final=False):
+
+    if (value):
+        if (final):
+            end_line = ".\n"
+        else:
+            end_line = ";"
+        try:
+            
+            if (t == "str"):
+                print '\t%s "%s"%s' % (property_name.encode ('utf8'),
+                                       str(value).encode ('utf8').replace('"','\\"').replace('\n','\\n'), end_line)
+            elif (t == "uri"):
+                print '\t%s <%s>%s' % (property_name.encode ('utf8'),
+                                       value.encode ('utf8'), end_line)
+            elif (t == "int"):
+                print '\t%s %s%s' % (property_name.encode ('utf8'),
+                                     str(value), end_line)
+        except (UnicodeDecodeError, UnicodeEncodeError):
+            print >> sys.stderr, "Encoding error in %s %s %s" % (property_name,
+                                                                 value,
+                                                                 end_line)
+
+def print_instance (uri, klass, final=False):
+    if (final):
+        append = "."
+    else:
+        append = ";"
+    print "<%s> a %s%s" % (uri, klass, append)
+
+def print_anon_node (prop, objtype, objprop, objpropvalue, t="str", final=False):
+
+    delimiter_before = "\""
+    delimiter_after  = "\""
+    if (t == "uri"):
+        delimiter_before = "<"
+        delimiter_after = ">"
+
+    if (final):
+        end = ".\n"
+    else:
+        end = ";"
+    
+    print "\t%s [a %s; %s %s%s%s]%s" % (prop, objtype, objprop,
+                                        delimiter_before, objpropvalue, delimiter_after,
+                                        end)
+
+
+def getPseudoRandomDate ():
+    moment = datetime.datetime.now() - datetime.timedelta(days=random.randint(0, 400), minutes=random.randint(0, 59), seconds=random.randint(0, 59))
+    return moment.isoformat ().split('.')[0]
+
+def get_random_uuid_uri ():
+    return "urn:uuid:" + str(random.randint(0, sys.maxint))
+
+def get_random_in_list (l):
+    if (len(l) == 0):
+        return None
+    return l[random.randint (0, len(l) -1)]
+
diff --git a/utils/data-generators/songlist.ttl b/utils/data-generators/songlist.ttl
new file mode 100644
index 0000000..244a5e0
--- /dev/null
+++ b/utils/data-generators/songlist.ttl
@@ -0,0 +1,60207 @@
+ prefix nco:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>.
+ prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#>.
+ prefix nrl:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>.
+ prefix nid3:   <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#>.
+ prefix nao:   <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>.
+ prefix nfo:   <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>.
+ prefix xsd:   <http://www.w3.org/2001/XMLSchema#>.
+<urn:uuid:7646713> a nco:Contact; 
+	nco:fullname "Artist_1".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 219252;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17212;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1722175;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 311331;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4118218;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3220891;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4990542;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2682297;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2980488;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4502197;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2824445;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2727044;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 217627;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4238891;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1738829;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3555540;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2667423;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1937054;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2259447;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3140840;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:20";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2346035;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4768188;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2665305;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4325597;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1566510;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2668574;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2189685;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4872204;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2967797;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3788437;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:02" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4830360;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4815947;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2649799;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 609498;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4338795;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1581971;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2261336;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1363160;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2269525;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1598393;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4093151;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4517987;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4685575;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1984015;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 60951;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2341466;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3709422;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3494062;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1162886;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3619796;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_1/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2017646;
+	nid3:leadArtist <urn:uuid:7646713>.
+
+<urn:uuid:1138016371> a nco:Contact; 
+	nco:fullname "Artist_10".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1935822;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1422036;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 2062036;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 999549;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1130698;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 17473;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 138558;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1487448;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3342307;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3464253;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4232129;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3064955;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4437948;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 642894;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1074510;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1079158;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2225676;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 133692;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1651702;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4597157;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4104762;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2434188;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1374119;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 473441;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3248154;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2115639;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 777227;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3800762;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 870589;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:21";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1930592;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4551191;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3940389;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17107;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 913265;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1322938;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 168744;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4534148;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4611326;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 18531;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 568418;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4811005;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 690207;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3965386;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17107;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 170055;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 3822123;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3264003;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1213034;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4744935;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2148114;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 2984057;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_10/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3843065;
+	nid3:leadArtist <urn:uuid:1138016371>.
+
+<urn:uuid:910889021> a nco:Contact; 
+	nco:fullname "Artist_100".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1655082;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2107954;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4451174;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4052002;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3438978;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2368846;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3057799;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 549398;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 917012;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4222880;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4840663;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3032483;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 467035;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 397466;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 4344267;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1638159;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2146895;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 371184;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1726320;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2907770;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3027621;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 98135;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4875051;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4773982;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1892360;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4881795;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2641981;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3336721;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3389847;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2628711;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1190509;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3904081;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4380846;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4890881;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1786694;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4449530;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 885091;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:22";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3159147;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 54593;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3839179;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3861776;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4418115;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3295277;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1049570;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2153110;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 65733;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 705414;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 927354;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4814978;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_100/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:08" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1174288;
+	nid3:leadArtist <urn:uuid:910889021>.
+
+<urn:uuid:274959718> a nco:Contact; 
+	nco:fullname "Artist_11".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2449550;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2729186;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4226316;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2466453;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1878488;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2578302;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2850329;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 3726715;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4174280;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2799891;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4090497;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 233597;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:34" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3268789;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3726327;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1349303;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3212638;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1000035;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4763630;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1911578;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3089880;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2007513;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2061711;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1705331;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3215241;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1730983;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 1652972;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1344385;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 3821565;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1109874;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4322709;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2607024;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3663373;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3523183;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1904504;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2083069;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3219216;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1303792;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:36" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4711875;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2286730;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:23";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 347047;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4878106;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4544458;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 926304;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4558352;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1622007;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3412490;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3032505;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 297569;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3680803;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_11/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2557903;
+	nid3:leadArtist <urn:uuid:274959718>.
+
+<urn:uuid:674603234> a nco:Contact; 
+	nco:fullname "Artist_12".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1580054;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 733846;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2115702;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4476776;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 1179406;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:38" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 2442308;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3131075;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4879113;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4300842;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 186074;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1333366;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3229952;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3425703;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3029154;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4964452;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 625682;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1558749;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 417108;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1739668;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1295780;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 3070043;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4833737;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1059410;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1895178;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4048029;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 831246;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3755946;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3514751;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3590919;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 965280;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4888013;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2049551;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1581375;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 608059;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4568934;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1481204;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:40" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3138420;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3584597;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 2568369;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4159167;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1551538;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3611053;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4499510;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1818141;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 1068561;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 3508010;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4585425;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1833096;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 2852010;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_12/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:24";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 347646;
+	nid3:leadArtist <urn:uuid:674603234>.
+
+<urn:uuid:1166493717> a nco:Contact; 
+	nco:fullname "Artist_13".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3596590;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1159738;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2395436;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 905382;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3733192;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4513526;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1433613;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3117264;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 424973;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4663758;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4415566;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1905210;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1663161;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2196888;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 4428165;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4821808;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2405739;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 391596;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 3349855;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4984375;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4471803;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:42" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3061302;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2242878;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 3794319;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 406614;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2210253;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4117765;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1667614;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2780676;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 983969;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1837761;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4517253;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 4407084;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4507351;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3684727;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1928889;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4662422;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4748253;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2827158;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2636704;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4085481;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3690515;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2181310;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 966798;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 4215020;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3202520;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2185942;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3065847;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 752210;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_13/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 116293;
+	nid3:leadArtist <urn:uuid:1166493717>.
+
+<urn:uuid:1730189044> a nco:Contact; 
+	nco:fullname "Artist_14".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 475252;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 1674417;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2329815;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4863127;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 463994;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4750920;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1036053;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 288286;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1628771;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:44" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4289184;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1330583;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2913004;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4297569;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1670476;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 4874380;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 839242;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3504640;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 3854021;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2875660;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 902948;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 4452316;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2868266;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 3623544;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4397967;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 2960331;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 936349;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3658264;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 412888;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4482672;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 342063;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 598333;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4572745;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 3989212;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 17442;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 2869302;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2032920;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1433159;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4826314;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 300822;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1438659;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 97789;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3056819;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 452218;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2620461;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1355900;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2734694;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4701953;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:46" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 239719;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3760633;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_14/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1664785;
+	nid3:leadArtist <urn:uuid:1730189044>.
+
+<urn:uuid:52229927> a nco:Contact; 
+	nco:fullname "Artist_15".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4671913;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 3138254;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 952370;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4959818;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:26";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 518291;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3450621;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3613021;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 3248921;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 911331;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3931352;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1460416;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1954658;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 128740;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1889430;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1827348;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3321446;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 4888836;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 729269;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4523695;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2269653;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 3518252;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4827352;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 906926;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4798488;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2640797;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1216851;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 713366;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 620036;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 1819068;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1622915;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 514504;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 853906;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2947392;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:48" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 3341261;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2877530;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 379725;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3884185;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2205691;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4834548;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 185283;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 188986;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 480894;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 1022538;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1021319;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4321365;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 28747;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3041100;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1024675;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 1903434;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_15/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1393522;
+	nid3:leadArtist <urn:uuid:52229927>.
+
+<urn:uuid:229686393> a nco:Contact; 
+	nco:fullname "Artist_16".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3000877;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1366416;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 124362;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 862076;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 2387342;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1694186;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1429432;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2241276;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1146961;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 992103;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1484740;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 227120;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3380143;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3157202;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4707333;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:27";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2677438;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1622463;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4488059;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1807979;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2625312;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3282300;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 194893;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 766151;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:50" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1336615;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 3186314;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2211194;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4405038;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4192982;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4001765;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3946575;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1769690;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4514825;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1000700;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2437690;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4506899;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2110101;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3002863;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1249282;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3248761;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1061261;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3523590;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 3003575;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 974172;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3608991;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1927088;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2575002;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3856237;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 3142351;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3679813;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_16/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 729512;
+	nid3:leadArtist <urn:uuid:229686393>.
+
+<urn:uuid:1624410648> a nco:Contact; 
+	nco:fullname "Artist_17".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2685900;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2002569;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 427240;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4439494;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3100215;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2893315;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 321599;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 803069;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4140491;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 973619;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1921424;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2216301;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3325967;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:52" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1034015;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4153781;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4009975;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3797566;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 125323;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4970683;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3716703;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1710176;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4009645;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 233817;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3578637;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2827545;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 860934;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2487872;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1585443;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4312280;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4386857;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3572677;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1930906;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 860259;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4530061;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2258419;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4103921;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4807243;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2486694;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2074349;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3232610;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1292646;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3315383;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2534169;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1902859;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2515935;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 608054;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2597987;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1192605;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4874098;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_17/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:54" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 503656;
+	nid3:leadArtist <urn:uuid:1624410648>.
+
+<urn:uuid:1484389074> a nco:Contact; 
+	nco:fullname "Artist_18".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 123122;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4569006;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17316;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3407486;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3567939;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 2749600;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2502082;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3247176;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1748526;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17316;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 798561;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3753959;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 4314825;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1979653;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1536319;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4968808;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4561442;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3668539;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 926479;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2304697;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4937718;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2235509;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1170573;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1582081;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1463532;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2238733;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4456800;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2017497;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 136031;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 624801;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4580134;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:29";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2162903;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3665420;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4071908;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3922117;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4272819;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3577172;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 760740;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3890303;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1154012;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1106923;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:56" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2968342;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 354446;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1801803;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1031489;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1186474;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4483155;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2625263;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3769061;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4722342;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2846733;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_18/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2943970;
+	nid3:leadArtist <urn:uuid:1484389074>.
+
+<urn:uuid:1400955751> a nco:Contact; 
+	nco:fullname "Artist_19".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 154271;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2089134;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1688394;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4849443;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2362549;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3299291;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1967770;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4790980;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4252381;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2126648;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 903961;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 973320;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 3031020;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 1573633;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2195025;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3249188;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1596254;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 752574;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3658179;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1034052;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4379198;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3714010;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:58" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 279087;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3160044;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2284276;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 2563637;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2138572;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1370150;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3158975;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 775987;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 145996;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3160759;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 648193;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2506886;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 530558;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4320048;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2170942;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4275528;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3561114;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:30";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 217417;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3260257;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4850293;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1787270;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3852743;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 219937;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4832686;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 654797;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 618113;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 188922;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_19/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:00" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1770600;
+	nid3:leadArtist <urn:uuid:1400955751>.
+
+<urn:uuid:2080464947> a nco:Contact; 
+	nco:fullname "Artist_2".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 360018;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4146582;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2950862;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1664301;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 44947;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1688889;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 504724;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1651995;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4905813;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2706058;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2363195;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 1613206;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1132112;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4315281;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 1428196;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 2426119;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:04" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1677622;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 2702747;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4016344;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2838782;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2792274;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3998916;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3037580;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1146645;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2912294;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 2187074;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3915105;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4418608;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1958756;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4645834;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 468571;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4580418;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17107;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4259407;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4830464;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2990378;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 3342972;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 385434;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1667456;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4151832;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:06" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3970200;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1428050;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 15743;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17107;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2307403;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 321843;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4463669;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 66972;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 732887;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 91199;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4703441;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_2/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1845539;
+	nid3:leadArtist <urn:uuid:2080464947>.
+
+<urn:uuid:1667857515> a nco:Contact; 
+	nco:fullname "Artist_20".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4407757;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4850978;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 33532;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 2365376;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 748557;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2573449;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4899964;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:31";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1502384;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 2822778;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1973634;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1366079;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2977024;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 447984;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4321387;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2345501;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:02" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1758966;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 100428;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3961624;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 2639759;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3327402;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1847325;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3505331;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4051621;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 2123018;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 4984113;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 286425;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3095716;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1035285;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3917089;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 950879;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1059647;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4939399;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 148816;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4042394;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3300348;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4724164;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4176650;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2056712;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3591590;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4451906;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3157954;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1377100;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4501213;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1269699;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2203012;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:04" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1504047;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1476212;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1520099;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3375647;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_20/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 657827;
+	nid3:leadArtist <urn:uuid:1667857515>.
+
+<urn:uuid:512241272> a nco:Contact; 
+	nco:fullname "Artist_21".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 339668;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2228464;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4204262;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4296348;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3022415;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2500251;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4602231;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1508856;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4189248;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4860084;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 254719;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4314677;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1906100;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 464108;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 249412;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2458766;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3770783;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 3794450;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:32";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1256960;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:06" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2685695;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2899929;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3439881;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 2721212;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2560801;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 718786;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3941860;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3802456;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2394302;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2806790;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3355179;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2607884;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 753718;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1281519;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1772932;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 403768;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 1974567;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 487399;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2204038;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 132410;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 353676;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4344129;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2372486;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 767575;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4753537;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4164094;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2666847;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3227775;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1542132;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3847777;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_21/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2729436;
+	nid3:leadArtist <urn:uuid:512241272>.
+
+<urn:uuid:1357264390> a nco:Contact; 
+	nco:fullname "Artist_22".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 338132;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2154287;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:08" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1746752;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1822895;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3822353;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 3769187;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 811141;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 2721668;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 655693;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4454158;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 3014869;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4768598;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3471966;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 90553;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2598208;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1293892;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1034286;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4286815;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1851359;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2010476;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4955915;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4203213;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1341740;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3509749;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2899840;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4383037;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 449219;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:33";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3634974;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3100334;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3314479;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 3716183;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 1245626;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 937586;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4853542;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2110505;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 2898322;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 543960;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 359968;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3665370;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:10" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2838332;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2940404;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3566918;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 182863;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 755438;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 576257;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 385855;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3089840;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1670237;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1498634;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_22/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2321456;
+	nid3:leadArtist <urn:uuid:1357264390>.
+
+<urn:uuid:1212687446> a nco:Contact; 
+	nco:fullname "Artist_23".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4978239;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1534446;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3718473;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 3931457;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2749042;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3885802;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3584269;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 347872;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 311809;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 3409341;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1380765;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4669009;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2116695;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 3427467;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3245285;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3045454;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3358149;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4293768;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1792894;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 273819;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 102358;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 284930;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3883684;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 732788;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 1430812;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 400392;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1344981;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:12" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3033069;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 3756258;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 213955;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 120550;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4900852;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 951435;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4607394;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3349581;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1122632;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3203681;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 2492738;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1188604;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2423368;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 2752770;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4617321;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 4074407;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 301901;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2481814;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 289789;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:34";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4010289;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 602997;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4600344;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_23/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1313534;
+	nid3:leadArtist <urn:uuid:1212687446>.
+
+<urn:uuid:804913107> a nco:Contact; 
+	nco:fullname "Artist_24".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 118789;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2584934;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4017617;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4088039;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 35228;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1466185;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 577172;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 3328779;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1938953;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2086010;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 4878770;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4093239;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 3817809;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4721431;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:14" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1464497;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 3726281;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1004347;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2583071;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 5145;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 730208;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3221576;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 1094948;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2565043;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 89368;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 2398172;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 928782;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4101704;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4702874;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4338648;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 401916;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1631376;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3432303;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 245977;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2756286;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3923817;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4858976;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3155386;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4965943;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2828728;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1929623;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1147927;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4982370;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 1086397;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 359725;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 2654973;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 809753;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1886593;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:35";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4581847;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4144341;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_24/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4101975;
+	nid3:leadArtist <urn:uuid:804913107>.
+
+<urn:uuid:1418513417> a nco:Contact; 
+	nco:fullname "Artist_25".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1340092;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1966709;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 31333;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4674681;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1773745;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1664190;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:16" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1524020;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1714317;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2908672;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1692327;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2664680;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4328530;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4420903;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 3311418;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1212382;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 4968764;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 113656;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 3233287;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2383428;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3910773;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1492474;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 2330732;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 1915455;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1238689;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3398579;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3903077;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2837794;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 248067;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2051701;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2934751;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 210943;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4420078;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 3444985;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2300994;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1750228;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 98323;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3123132;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2295240;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 510273;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2151586;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 3418220;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4940480;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 855183;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:18" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 3998037;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 432526;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 789909;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1020711;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 21555;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 120849;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_25/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2236283;
+	nid3:leadArtist <urn:uuid:1418513417>.
+
+<urn:uuid:308642717> a nco:Contact; 
+	nco:fullname "Artist_26".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:36";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1605600;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 838031;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1787672;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3096018;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4097997;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3418575;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3843468;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4656268;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1366890;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 699189;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4089490;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2483227;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1076197;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2786063;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 857618;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3609960;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4883890;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 951792;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 2791196;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3028617;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 835442;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 984488;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 4734855;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3171771;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 715162;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 512641;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2467630;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1488484;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 48011;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:20" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2040082;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 2069133;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2615857;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1134628;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 739830;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4603587;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1275819;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3381289;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2582919;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 825788;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1630519;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3893755;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2260103;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 655791;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 906840;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1577556;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3290206;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 101908;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4349839;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3017644;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_26/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2007166;
+	nid3:leadArtist <urn:uuid:308642717>.
+
+<urn:uuid:1682322955> a nco:Contact; 
+	nco:fullname "Artist_27".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1694045;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4837601;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 94565;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1742242;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1174122;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2578169;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4876080;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2493079;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 876724;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1412389;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3337887;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:37";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4291149;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 928057;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 663918;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2044788;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 988103;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:22" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 190373;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 693793;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3007947;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2849646;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4376163;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1906333;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 171331;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3766620;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 327361;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2862969;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3885778;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 249885;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1803348;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1426933;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2014235;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 991956;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 73709;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2221208;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 409657;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2707529;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4977795;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1400317;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4808238;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 139860;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2770876;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2616203;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4837557;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2482327;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4070268;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3988519;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3762711;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3007258;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3947035;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_27/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:24" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1839703;
+	nid3:leadArtist <urn:uuid:1682322955>.
+
+<urn:uuid:22750465> a nco:Contact; 
+	nco:fullname "Artist_28".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 898348;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4792835;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 2816449;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2919761;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4844817;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1050385;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 284039;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4513085;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 568891;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4880640;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2591997;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 632827;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3370809;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3769681;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4671713;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2969202;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3244197;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4896673;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 641943;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 34250;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1536398;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 985708;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3237786;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1480755;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1684047;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2464041;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3825369;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:38";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2214772;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3255734;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2008618;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 595534;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 743362;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4101482;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2545253;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4714130;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 720249;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 4646055;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2116561;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1680777;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 517766;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2599166;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4319835;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4114403;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4290186;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1608477;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2709715;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3392859;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1996399;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2183946;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_28/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:26" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3544139;
+	nid3:leadArtist <urn:uuid:22750465>.
+
+<urn:uuid:1380125699> a nco:Contact; 
+	nco:fullname "Artist_29".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1486593;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3416072;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2516413;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2362854;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3321389;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3083870;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2360881;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1346865;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3964706;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2872790;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1594823;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3624933;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1154059;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 1986960;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4531533;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 956939;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 993863;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 256901;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4981769;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1173853;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3783649;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3397854;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1529871;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 830640;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 714310;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 606475;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2493917;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 430066;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2865343;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1854526;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 15345;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 427576;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4138119;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3489236;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2551020;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 1398731;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 870966;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:28" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4448681;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4953742;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2829561;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1074393;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:39";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4942891;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1394988;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4282372;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1459257;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3528959;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 4760275;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 2521713;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1725453;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_29/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1103353;
+	nid3:leadArtist <urn:uuid:1380125699>.
+
+<urn:uuid:1832360877> a nco:Contact; 
+	nco:fullname "Artist_3".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 2280678;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 868132;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3621207;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 3897126;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2952798;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1712412;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 307283;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 82986;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1404623;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2015365;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1019457;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3001951;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3522398;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4198569;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:08" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3027328;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3299204;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 505256;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1296587;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4054153;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2508915;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 152824;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4405895;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17107;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 643495;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 167311;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 1728343;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 571126;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1887992;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4456649;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 3865761;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 454660;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1443280;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1244914;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1357092;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4070172;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 22635;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1023917;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 492946;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 318451;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:10" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4094966;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 46572;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4262076;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1645861;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 252467;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4591814;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2892696;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4467081;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3024034;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3792143;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4075001;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_3/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 245193;
+	nid3:leadArtist <urn:uuid:1832360877>.
+
+<urn:uuid:1615076044> a nco:Contact; 
+	nco:fullname "Artist_30".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2021063;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 952463;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1874175;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1300534;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1028706;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3366080;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2512694;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:40";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2524527;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4485302;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4123409;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4301370;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4951489;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3338271;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1861131;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 832638;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3304201;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2557786;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3372870;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1535119;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:30" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1416004;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2122881;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1315797;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 2744471;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4149402;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1140393;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3959367;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 506305;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 903499;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 901369;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3613021;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1047976;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3802131;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3006033;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1068497;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2615388;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2037514;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1319378;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 4089119;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4189672;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4582840;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2708441;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3102846;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1619440;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 3114056;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 316745;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2712338;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1631396;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 238720;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 2101232;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_30/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3742787;
+	nid3:leadArtist <urn:uuid:1615076044>.
+
+<urn:uuid:1212923575> a nco:Contact; 
+	nco:fullname "Artist_31".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 1967681;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2056977;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 661661;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2703203;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4340112;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3405671;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4936321;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2936135;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2176333;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 993494;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 3010030;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 162351;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1297855;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 948345;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:32" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2783289;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 122011;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1730359;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4279406;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2403143;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 1084046;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4011291;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1050849;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1357648;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 300477;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 467057;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4073733;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1777770;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4501536;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1638922;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 694366;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2938133;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 585893;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1099471;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3859962;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 65772;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 1769684;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3547738;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2240955;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2524234;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:34" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3213095;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2034101;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3589830;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 2109747;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2799725;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 705579;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2887051;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2502485;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1054756;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1042370;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_31/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2565584;
+	nid3:leadArtist <urn:uuid:1212923575>.
+
+<urn:uuid:863385995> a nco:Contact; 
+	nco:fullname "Artist_32".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 3678872;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4541866;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1404978;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 2272686;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3104434;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 731447;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1653055;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 2392478;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4059621;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3683906;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4889686;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2087639;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4902111;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4392012;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 943103;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 3616828;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4359091;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4561590;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4162394;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 115719;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 671404;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3394317;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4932497;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:36" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3934181;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3773352;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4612220;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3908041;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3911101;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3235478;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4938591;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 878078;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 509865;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3561715;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4605018;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 183379;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 207346;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3103241;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1976929;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 593160;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4646017;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 750068;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 437769;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1317328;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 2165046;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4532172;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 321928;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2284800;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3963814;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1616207;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_32/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3081366;
+	nid3:leadArtist <urn:uuid:863385995>.
+
+<urn:uuid:1537757949> a nco:Contact; 
+	nco:fullname "Artist_33".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3636086;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3399050;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3509439;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2174045;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2400604;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 750387;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3822968;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4109908;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4578667;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:38" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1713851;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4037440;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 627394;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1485701;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4918828;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2444616;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2133333;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2887589;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3065449;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 153352;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1580886;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 2728876;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1716556;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 968107;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 816023;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 194364;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3754696;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2638306;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 257537;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4114906;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 684167;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 962081;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4372260;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2155639;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2427301;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 4247063;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2914925;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1854231;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1312196;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 285719;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 3971751;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3326240;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3486146;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2729011;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4550742;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3971304;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:40" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2486871;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4986756;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 579703;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4525999;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_33/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4407239;
+	nid3:leadArtist <urn:uuid:1537757949>.
+
+<urn:uuid:1839406408> a nco:Contact; 
+	nco:fullname "Artist_34".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3913658;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2230919;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4591981;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2090024;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 2212453;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2458872;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3854851;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 775624;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2147035;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4287677;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 149440;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3806074;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 977452;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4562958;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3298129;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 3931151;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4566223;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2419999;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3268358;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3903896;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 671984;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 155777;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 531772;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2188050;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1727437;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4318891;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 735156;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:42" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4771014;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4721196;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3960637;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1114597;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4077880;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2395687;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1018083;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1443914;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2949753;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4851702;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 140634;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4130366;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1227819;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1506263;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3414999;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 935396;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 769435;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 16122;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4947913;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3996063;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2747216;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3222014;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_34/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2778960;
+	nid3:leadArtist <urn:uuid:1839406408>.
+
+<urn:uuid:1595432427> a nco:Contact; 
+	nco:fullname "Artist_35".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4987413;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 170611;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 912698;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2211553;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4429619;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 2610495;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1199243;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 4157750;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 51347;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4441107;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4002827;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1000666;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2432290;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 118659;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 559586;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3373090;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:44" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3372966;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 3917702;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 685840;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3112855;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 487268;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1889410;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 1928601;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 102121;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2765234;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 4596539;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 4776689;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1400246;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4686439;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3485757;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2997047;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4091146;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 362355;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2061581;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1697883;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 4983654;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1715412;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2785634;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4836601;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4597629;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1165935;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 3666646;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2110527;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4981840;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2975983;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3540417;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 442082;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 4748727;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4920410;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_35/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 998009;
+	nid3:leadArtist <urn:uuid:1595432427>.
+
+<urn:uuid:1614234071> a nco:Contact; 
+	nco:fullname "Artist_36".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4139796;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 3908651;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 826665;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2879561;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4313599;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2303352;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1129020;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 3282390;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3842851;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:46" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3376521;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1687042;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1382785;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1590908;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 711453;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1901399;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 432613;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4533184;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19406;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4502163;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4471147;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2551318;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3285353;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 893765;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 2749997;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4659389;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 2613293;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2039228;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1496941;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 3670530;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1392899;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 4965424;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1192574;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1212748;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 282950;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1502750;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 2216947;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 172064;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 650933;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1219672;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 44991;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 4243393;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 951022;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4952046;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3247683;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4625500;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 3536440;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 779985;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2695966;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2550041;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:48" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3549870;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_36/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3927400;
+	nid3:leadArtist <urn:uuid:1614234071>.
+
+<urn:uuid:1665222588> a nco:Contact; 
+	nco:fullname "Artist_37".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4908073;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 999156;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4470005;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 865234;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3691525;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1121426;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2477344;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4190696;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2911466;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3535050;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4856133;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2633179;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 559234;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4183683;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1794627;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2815381;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4356013;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 164260;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1925657;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3727032;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 976844;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3594684;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4866584;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2856715;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2247037;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3650519;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4967760;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19510;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1693105;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 521785;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3590345;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3196086;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1546137;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4752283;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4896401;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:50" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1412075;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3481726;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2966300;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19510;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 882197;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3156579;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3002824;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1670247;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1757966;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 265354;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 868654;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4367967;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 687923;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2735526;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1635478;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3252175;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_37/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4574815;
+	nid3:leadArtist <urn:uuid:1665222588>.
+
+<urn:uuid:178350818> a nco:Contact; 
+	nco:fullname "Artist_38".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2656413;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2586682;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4625136;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4276759;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 2062864;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3740965;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 4216190;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1231012;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 97638;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2940081;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1471755;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4755000;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1741911;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2880796;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1236492;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4649135;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 653583;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3131144;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:52" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2144132;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3498946;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3775612;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3488851;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 944695;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3685325;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 926091;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1158817;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 4566852;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1848038;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4552963;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1828150;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 421578;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 274745;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 2560811;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4860937;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 2910486;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 830548;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 4117707;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3250208;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1666129;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 743794;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2695482;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3492142;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 228277;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1083636;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4967732;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1123583;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 35857;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1062122;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4783082;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_38/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4724360;
+	nid3:leadArtist <urn:uuid:178350818>.
+
+<urn:uuid:9423682> a nco:Contact; 
+	nco:fullname "Artist_39".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 2730767;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3246866;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2739254;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4918634;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1034218;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 2244442;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3807776;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:54" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 2093979;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3236487;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 483890;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3620748;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3046446;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2127334;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2164262;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 131172;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 1280277;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1047228;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1745257;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1958878;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2750014;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 714310;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4772997;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 166236;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3785218;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2522511;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 2546693;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3479883;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4794871;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 394377;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3565324;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 2884219;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 825849;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4788686;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2918290;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4540562;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3550443;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1373786;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3894400;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1713513;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3091281;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 877564;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3325954;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 933070;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:56" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2900065;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 741540;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 1335269;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1486884;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3023193;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 716632;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_39/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 4064425;
+	nid3:leadArtist <urn:uuid:9423682>.
+
+<urn:uuid:1949519955> a nco:Contact; 
+	nco:fullname "Artist_4".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1748622;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3879173;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4653621;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3903290;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3714835;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2710953;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 989302;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 1944518;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3536097;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2274180;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2660482;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:12" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 1206872;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 1611556;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3256087;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3414593;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 183084;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3272810;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 3144212;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 250464;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4992838;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 387684;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 18259;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2292732;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3877448;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 2166032;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4440737;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1976785;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 3752842;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1397671;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2581998;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2922309;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3282763;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 487499;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2783436;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1405045;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 3575403;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1436682;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 681018;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 909642;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:14" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3276569;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1992454;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2412164;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4611119;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2121545;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3424010;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 3039095;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 2697968;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2579943;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4213107;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_4/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 470393;
+	nid3:leadArtist <urn:uuid:1949519955>.
+
+<urn:uuid:422120680> a nco:Contact; 
+	nco:fullname "Artist_40".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1823541;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2457253;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 2286604;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 331671;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1878260;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4570211;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1942572;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3884350;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1595183;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2113512;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2618403;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1976728;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4747283;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 374429;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2330650;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3115497;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4526788;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 4706405;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1963426;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1969397;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2214573;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1228891;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4356858;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 883118;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2941189;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3826645;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2708249;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3326803;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:48:58" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1831484;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1726559;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3571833;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4187018;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1938861;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 636845;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3340143;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1901621;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3149692;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 4300383;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4095070;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2608094;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1699716;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4137761;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1185041;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4052595;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2783217;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1025892;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2128113;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2235236;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3323464;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_40/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3173357;
+	nid3:leadArtist <urn:uuid:422120680>.
+
+<urn:uuid:1151222493> a nco:Contact; 
+	nco:fullname "Artist_41".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2331979;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3743319;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 2646646;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4037761;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1804089;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4508784;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1769914;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2389722;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2433707;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:00" ;
+	nfo:fileCreated "2008-12-16T12:41:50";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3810165;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 360805;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3224026;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3175950;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2292990;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4754824;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 144246;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1913521;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2121969;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 921185;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4962383;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 3201251;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3342885;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 2378756;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1205614;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1914027;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3839476;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1853640;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4292330;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3703420;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 827093;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2984322;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3047826;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 894978;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1544405;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1834306;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4365552;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1268537;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4823153;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4611060;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3635626;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 3273216;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2283439;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4929273;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2246084;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:02" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2992876;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 265836;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4227634;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4161281;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4080007;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_41/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 694891;
+	nid3:leadArtist <urn:uuid:1151222493>.
+
+<urn:uuid:2037758886> a nco:Contact; 
+	nco:fullname "Artist_42".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4399341;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 990719;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3511712;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 447259;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4341601;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4369736;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2956377;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 812410;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1611297;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1715893;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 844677;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 80565;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2571975;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 206701;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3314563;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 2551594;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2194282;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1258370;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 343998;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3681246;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2329318;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 675067;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3647661;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 2084097;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2176293;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1611798;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4192910;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4932024;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3938744;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:04" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4993502;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1075123;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 1347916;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1508624;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3506616;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 991726;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 3528679;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 161085;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4032496;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3439752;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2818079;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1441921;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4832331;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4332395;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1293251;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 1198512;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 441186;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1358271;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 2064230;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1314700;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_42/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2406063;
+	nid3:leadArtist <urn:uuid:2037758886>.
+
+<urn:uuid:774636784> a nco:Contact; 
+	nco:fullname "Artist_43".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1017399;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1324666;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 659025;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 463772;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 4728522;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3354997;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1084419;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4496051;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 686748;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 18958;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 444142;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3379376;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1890058;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 1967036;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 276120;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4154105;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 499744;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 2106454;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 3125095;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:06" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 3248504;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3713841;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1977714;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 4242351;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 207239;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3879896;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2764379;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2983912;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3564801;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4830058;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4825993;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4732134;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3716214;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1261039;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2616734;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2259001;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 133097;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1196827;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3518173;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1805799;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2581599;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1314276;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 2843148;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3005134;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 979190;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2530711;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 284151;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3993651;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3250091;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2770178;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_43/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 528661;
+	nid3:leadArtist <urn:uuid:774636784>.
+
+<urn:uuid:2022581394> a nco:Contact; 
+	nco:fullname "Artist_44".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3200274;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4423567;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 301445;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2283580;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:08" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3617509;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4301121;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 2882122;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 1717046;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2478353;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4590028;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 4307662;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3329766;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 179679;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 510935;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3668530;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2154034;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 2318365;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4682971;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2759160;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 575223;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3892944;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3263041;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 3590505;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4044833;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 230639;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4186799;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4705436;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 1029484;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2957127;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2574181;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2011616;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3140489;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 1543779;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4190927;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1345307;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2089096;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:10" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3267111;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2489042;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1548948;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2228527;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1216987;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2794439;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 553250;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4083426;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3243828;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1665488;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 2998450;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 3413359;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4907975;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_44/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1857096;
+	nid3:leadArtist <urn:uuid:2022581394>.
+
+<urn:uuid:1765445232> a nco:Contact; 
+	nco:fullname "Artist_45".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1003461;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 2673297;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 3716615;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 3387297;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4907428;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 4922415;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3092590;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1975311;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2369448;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4523067;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4018277;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4360094;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 267749;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4334798;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2676859;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 4185377;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1862313;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2463776;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2627069;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 254993;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1113561;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:12" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 234237;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 599625;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 447775;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 761018;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 2691183;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 4484636;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 769941;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 341713;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1222653;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2583713;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1836679;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4364991;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2059322;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4887799;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 2455984;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1918122;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2410808;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2456332;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1418995;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4289381;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 2336344;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2086926;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4111714;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3429832;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3147798;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3403438;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2653960;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 378303;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_45/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3653209;
+	nid3:leadArtist <urn:uuid:1765445232>.
+
+<urn:uuid:307931566> a nco:Contact; 
+	nco:fullname "Artist_46".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 2122058;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 602448;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 2001427;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:14" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4052176;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4724515;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1502265;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2865216;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 132402;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 2341073;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 877178;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 2105155;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1297020;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3483572;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2030850;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 120702;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 735177;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2870734;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2354309;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4750278;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2571742;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 684061;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 3988156;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1571296;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4052357;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1391470;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2117206;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3976088;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1521093;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 339815;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2983680;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 2052219;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1406879;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3367083;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1319875;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1879876;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3979624;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1633217;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4295331;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 727114;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:16" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2662564;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1381506;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2678757;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 645939;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1105848;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 2822468;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1821075;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1012902;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1584258;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 777284;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_46/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1279744;
+	nid3:leadArtist <urn:uuid:307931566>.
+
+<urn:uuid:582736860> a nco:Contact; 
+	nco:fullname "Artist_47".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1098979;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3031586;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:56";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 15004;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 601842;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2994249;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1501709;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 716745;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2150408;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4083633;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3239503;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2787112;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 112660;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2253212;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1837178;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3317161;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4161676;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3007228;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2883658;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3326273;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1967865;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2128590;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1429631;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4463928;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2817210;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4266587;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:18" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3774609;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4775945;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 95598;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3351471;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 811601;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2190911;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4142547;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4120691;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1411436;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 94218;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4954829;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1173983;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19615;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4703836;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2671184;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 874801;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 447884;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2170176;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4747018;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 235783;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4985378;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3890720;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1620799;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1336871;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1184805;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_47/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1069647;
+	nid3:leadArtist <urn:uuid:582736860>.
+
+<urn:uuid:784757328> a nco:Contact; 
+	nco:fullname "Artist_48".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2159453;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3669554;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1215235;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1692700;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4012176;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3382684;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2087676;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2668691;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2810185;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:20" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1491760;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 4223311;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4882796;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1707580;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 458978;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3121052;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2626659;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 646675;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3014476;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3019867;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3666540;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1319158;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4384460;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4110609;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3587646;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3026914;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3094812;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3447565;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:58";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2567905;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1336649;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3279233;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1359105;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2946922;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1599019;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 916830;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3282509;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4179357;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 4183131;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2372482;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 559486;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4027550;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3470904;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3215797;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3808011;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2572954;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:22" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1917454;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1738064;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2288644;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1905098;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3771507;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_48/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2723170;
+	nid3:leadArtist <urn:uuid:784757328>.
+
+<urn:uuid:564153596> a nco:Contact; 
+	nco:fullname "Artist_49".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4375998;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3763616;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4249996;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4250194;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2718444;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 1913892;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3959659;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1517070;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3300311;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 895106;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3648903;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 1232795;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4437383;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2174106;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4757207;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4639625;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2408811;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4276639;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2760416;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2006562;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4022683;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2846199;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4074543;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3378540;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2648684;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4039632;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 4511346;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1895571;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 636938;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 9634;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 2923207;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:41:59";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4317171;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:24" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4170400;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4717341;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1483817;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 2964813;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 4130036;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4881833;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4443630;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1432251;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4069689;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 1143246;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2007198;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3729290;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1890106;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 1494472;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3186477;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 198622;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1477937;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_49/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1664911;
+	nid3:leadArtist <urn:uuid:564153596>.
+
+<urn:uuid:906902066> a nco:Contact; 
+	nco:fullname "Artist_5".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4427715;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 3072305;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 1817130;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:00";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 996379;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 11243;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3135315;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 4026514;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1164234;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 1374630;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3578857;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 678073;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 823282;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4108934;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4537113;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:16" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1115053;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1799764;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 132405;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1907095;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2730774;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4097367;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4652705;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4745248;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 714727;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1813924;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4596181;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3605630;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2393364;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 380155;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2767516;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4294615;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2067364;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 252639;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4826399;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 275985;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3233407;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3837822;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2107745;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 4924872;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 3242812;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2376820;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 3665443;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 2081357;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4346760;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1409163;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4866815;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1316559;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:18" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 855529;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 197263;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 3323192;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_5/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4595925;
+	nid3:leadArtist <urn:uuid:906902066>.
+
+<urn:uuid:80967476> a nco:Contact; 
+	nco:fullname "Artist_50".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3559017;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2817207;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1071501;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 2141999;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1767387;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4933885;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4826738;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3532861;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3534633;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:26" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1441685;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2919796;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1800882;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 316803;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 514681;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 4396384;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4869715;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2210136;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 4886006;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4125992;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3616280;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2818229;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1938140;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4363628;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 753501;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3764708;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4569108;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3127412;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1963120;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1739170;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 267142;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3980557;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 15208;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 2086704;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4085146;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3532874;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2355008;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2832426;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3236821;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:28" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 320634;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2269199;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4664772;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 226817;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3084481;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1467601;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 932241;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4124986;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2573036;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 4416686;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3052873;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_50/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 426425;
+	nid3:leadArtist <urn:uuid:80967476>.
+
+<urn:uuid:1812475444> a nco:Contact; 
+	nco:fullname "Artist_51".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2768673;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 925213;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4524044;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4120870;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2246384;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3241760;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1989339;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 3780042;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4988102;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4848875;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 3974074;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3148747;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4665595;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1381800;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3824692;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2137191;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 396138;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1525252;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4774166;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:30" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4081333;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4871580;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1968095;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3704669;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2222415;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3619323;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3374515;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3202190;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4399553;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3749699;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2041969;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 1281640;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2375244;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 2758725;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3478272;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2197486;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 1581258;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 562405;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1460085;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4997262;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3846530;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 754668;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3670381;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4170323;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2000843;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 939052;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4546728;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:03";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2772191;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 335199;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2553749;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_51/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4764112;
+	nid3:leadArtist <urn:uuid:1812475444>.
+
+<urn:uuid:1958208232> a nco:Contact; 
+	nco:fullname "Artist_52".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 910739;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:32" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4025932;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1190825;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3431658;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 1707273;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 2833069;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 345208;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1946786;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4097195;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 581702;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2686784;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4327254;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1510229;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 285106;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2377909;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 525045;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3971076;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1915720;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 2769057;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:34" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1957935;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2329988;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:04";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3408161;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2734839;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1759483;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2068841;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4188541;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4793468;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3240539;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3534725;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3808230;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 273864;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 1348874;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:05";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2277210;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1629454;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4314265;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4807096;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2732432;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 214327;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1714161;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 580848;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:06";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 657131;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 54267;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3620376;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4538407;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 947759;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 747975;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2066152;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 775679;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3718769;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_52/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3905423;
+	nid3:leadArtist <urn:uuid:1958208232>.
+
+<urn:uuid:1263397651> a nco:Contact; 
+	nco:fullname "Artist_53".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 546991;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:36" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 841468;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 4571856;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 3451711;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2906516;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3304307;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4780447;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4150581;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 179590;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2085952;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1061118;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 2227219;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 4614638;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:07";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 3927184;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 50243;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4108367;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3300745;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 869751;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1977459;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2307222;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3483003;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 2035812;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 4011798;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2910199;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 1509720;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 823202;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3423253;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4670381;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2232248;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4348334;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 644440;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 616040;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2345223;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 979240;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 4443409;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1742978;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 953649;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1655770;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2626357;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:38" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2024780;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1630263;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 2734668;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3843087;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4197612;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3810020;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 931695;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1129536;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1158726;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1360630;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_53/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 3176702;
+	nid3:leadArtist <urn:uuid:1263397651>.
+
+<urn:uuid:1414371064> a nco:Contact; 
+	nco:fullname "Artist_54".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3799265;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4448033;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 974003;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1266651;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1426036;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1045888;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1515394;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2865135;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 965537;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4533351;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3471924;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 817632;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 3890476;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1618029;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 610235;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2030093;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 435014;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 521662;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1836982;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3702518;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 4489151;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2267764;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 356027;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1334793;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 714474;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 674042;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 617502;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2566517;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:40" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3308572;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2597048;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3503816;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3081715;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 374399;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 248375;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 4627383;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2905189;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1743184;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4544358;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1618531;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4890982;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 96294;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3348008;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4567081;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4928303;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 4936985;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1833647;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 925611;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 306707;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3256514;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_54/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4533287;
+	nid3:leadArtist <urn:uuid:1414371064>.
+
+<urn:uuid:1037059883> a nco:Contact; 
+	nco:fullname "Artist_55".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1832137;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:09";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1483234;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 36600;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 3361508;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2050756;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 4335134;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3113523;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2783648;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4810504;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:42" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2124142;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2971225;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4387778;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2793838;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:10";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 3783486;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 55591;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1277742;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3760728;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2025113;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 1757337;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2344949;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2669520;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1089991;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 969252;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2305162;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2747429;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 944879;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 4413316;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 492008;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 2683079;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:11";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 500867;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 3862748;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 3540466;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2229384;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1850958;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1512995;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3643685;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2921208;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1670061;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4492696;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4964852;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 965352;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4366190;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2693208;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4007937;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3320466;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 853237;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2759680;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 145554;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 1056187;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_55/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:44" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4588588;
+	nid3:leadArtist <urn:uuid:1037059883>.
+
+<urn:uuid:731323061> a nco:Contact; 
+	nco:fullname "Artist_56".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3212786;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 3162762;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1416770;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:12";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3346146;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 66371;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 833851;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4811966;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 895866;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3417423;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 7762;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1156813;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1973852;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 2281260;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3465385;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4064439;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2666820;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3988743;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2975883;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4932178;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2962790;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4998336;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4977085;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1887338;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1973107;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4967169;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 212427;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4872060;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1832201;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3548972;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:46" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2622220;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1000337;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 3793095;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3949613;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2086867;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4915496;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 4655264;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1571117;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19510;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4646655;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3514737;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3786945;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 2042372;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 3426962;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 4002906;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3584176;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 93997;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3426136;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 749711;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 753815;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1262506;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_56/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 623129;
+	nid3:leadArtist <urn:uuid:731323061>.
+
+<urn:uuid:1863933869> a nco:Contact; 
+	nco:fullname "Artist_57".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:13";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4651539;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2767050;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 725331;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1121136;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 120699;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1362547;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 16868;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2471436;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 51139;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2640486;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1453075;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4434501;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:48" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1378885;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4320710;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4549775;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1679387;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2795869;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3260338;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 590756;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1268407;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3710325;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4462603;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1736701;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 369156;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1233008;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 57856;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2381052;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 709415;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4971079;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 801449;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 679502;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 72709;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3891806;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4136719;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4660486;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2244368;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2367888;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3543405;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4166202;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2351640;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2138813;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1877501;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3263385;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2238104;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1194360;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2668835;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1099490;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1378316;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:50" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 379947;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_57/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1346273;
+	nid3:leadArtist <urn:uuid:1863933869>.
+
+<urn:uuid:1031729869> a nco:Contact; 
+	nco:fullname "Artist_58".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2871230;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4170933;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:14";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3956303;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1427248;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1824995;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1327324;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3355549;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3788803;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4290115;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4583111;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3650801;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 110207;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 2895890;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3538096;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 2715517;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4664992;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 573118;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1087390;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1240455;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1769222;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3963144;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 839088;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 41196;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4920671;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3347350;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1498067;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 144282;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1501546;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 171761;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1336790;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 83104;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2798929;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4788142;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1053310;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 910855;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:52" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 936557;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3014168;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1735533;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3104889;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 41189;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 724259;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1485286;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3452624;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1035793;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1732935;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3557530;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 4075185;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 995837;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 75507;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_58/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 360720;
+	nid3:leadArtist <urn:uuid:1031729869>.
+
+<urn:uuid:713971051> a nco:Contact; 
+	nco:fullname "Artist_59".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4757794;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4493437;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4705929;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4002924;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1589559;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:15";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3696465;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2909660;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 843047;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2376418;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3888041;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4846059;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3540340;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2434980;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3327608;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1986856;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4609009;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2684502;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4978281;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1072595;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3360117;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4043320;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 344634;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2689782;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3980638;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4236670;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 1105428;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2255444;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4077934;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4747940;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:54" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 4439520;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3007323;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 1545875;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 3398636;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4482652;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4780850;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3919612;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3588087;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4580293;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2928876;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3811668;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3613325;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4039584;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1364335;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4736390;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3082816;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3710250;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 4282604;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3147800;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2136943;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_59/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 4832057;
+	nid3:leadArtist <urn:uuid:713971051>.
+
+<urn:uuid:1502698705> a nco:Contact; 
+	nco:fullname "Artist_6".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1254333;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2914701;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1491140;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2504187;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1370133;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1090703;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2402154;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 590628;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 2068693;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:17";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 813227;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3013037;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4434937;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1581865;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4797529;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 99776;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3737093;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2254343;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1794619;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3688158;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 639847;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3829570;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2942059;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 2795529;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4983735;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1702895;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:20" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1716343;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3398630;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2017127;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1303415;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 4612915;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 2477134;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4755136;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 4476635;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1873344;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 3080739;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1720086;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3035142;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1780881;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 2208049;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:18";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 634637;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 242240;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1080060;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 4993629;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4531965;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4580755;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 2366390;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1761512;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4419795;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 563217;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_6/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2769010;
+	nid3:leadArtist <urn:uuid:1502698705>.
+
+<urn:uuid:1842163099> a nco:Contact; 
+	nco:fullname "Artist_60".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4588683;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2459494;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 31802;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 3732893;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 4776497;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1917725;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1674114;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 395677;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1214586;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1195226;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3541082;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 986052;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1616565;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 183304;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1586611;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1919642;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:56" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1745031;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 4083739;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1284654;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 840899;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1814692;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 474745;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1130619;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 2610624;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 403307;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2054639;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 235689;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 316094;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1598494;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:19";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3463378;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2540670;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2084584;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3382439;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1921609;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1480509;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2347085;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1421342;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3019331;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 19228;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4239445;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2023773;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4560648;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3040553;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 3360449;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3516644;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2934384;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:49:58" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 81304;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1428913;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4680236;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_60/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2674877;
+	nid3:leadArtist <urn:uuid:1842163099>.
+
+<urn:uuid:304223273> a nco:Contact; 
+	nco:fullname "Artist_61".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4250039;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1737590;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4337060;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 38487;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4132872;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3237120;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2380767;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18988;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 3977194;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2807714;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2158577;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:20";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 1616860;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 606002;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4405856;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 736420;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2590933;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4571557;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2707641;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1802297;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2480735;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 1594441;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 1197942;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1016290;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3807842;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 494416;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4400690;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3423920;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2293510;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1165565;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3985844;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:00" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4962997;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4411180;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2111935;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3576735;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1676385;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4431266;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4441766;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 427857;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2234593;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4516156;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4483186;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 787912;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:21";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 117911;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1972470;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4903653;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2096710;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4802955;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1605946;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 89994;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1706177;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_61/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3154398;
+	nid3:leadArtist <urn:uuid:304223273>.
+
+<urn:uuid:1275885845> a nco:Contact; 
+	nco:fullname "Artist_62".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2440221;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3147429;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2919934;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4379019;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4752860;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 2710224;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4959355;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1125013;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 2605117;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 640226;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2505536;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2211984;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 599812;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 2493074;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4493976;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:02" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 3406222;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2213472;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3414621;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4000698;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 468320;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 229156;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 927604;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3570890;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4778956;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3198549;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4933750;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4679819;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4922311;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:22";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1876932;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2760470;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 693633;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2680230;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2747153;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4142900;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3525380;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 3576671;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 194079;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1828914;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3070872;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4637168;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1416632;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2734917;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3430232;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4519788;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3681312;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4937055;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1744194;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1845132;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 275945;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_62/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1071633;
+	nid3:leadArtist <urn:uuid:1275885845>.
+
+<urn:uuid:129774287> a nco:Contact; 
+	nco:fullname "Artist_63".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 283983;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3834013;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3878704;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 374797;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2002569;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4353218;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:04" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3879231;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3074015;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1199159;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 977708;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4834270;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4856027;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 768117;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2902839;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 653257;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:23";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 200165;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1540984;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1734303;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2273052;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4629345;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 2004810;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1349823;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3229542;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4545778;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 92826;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 429829;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4193952;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 2483040;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1685375;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1487236;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3925644;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 2474985;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 816114;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 220094;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3913471;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2530228;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1567765;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3916353;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2092695;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1515691;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3728686;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4389157;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3240028;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 1028581;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 177693;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3415596;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2624946;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:24";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3471335;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:06" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1196430;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_63/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 3017597;
+	nid3:leadArtist <urn:uuid:129774287>.
+
+<urn:uuid:660622060> a nco:Contact; 
+	nco:fullname "Artist_64".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1776019;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3820957;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2553273;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3333416;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 4419150;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 759274;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 575544;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 389786;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2010302;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:25";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1712048;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2198308;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 707745;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2487281;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3229900;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 4325861;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 3071506;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4662962;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2853720;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 467993;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:26";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2213300;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 4126366;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 1475441;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 862354;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 186575;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1459760;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4351437;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1858922;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2154255;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 730774;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:08" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1807990;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2793541;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2351689;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 3788436;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 690323;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3057373;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:27";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 873610;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4385408;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2684138;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4823696;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3837255;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 379139;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2265945;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2989473;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 175910;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 119116;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2124642;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 2273374;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2785893;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 694870;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_64/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 8467;
+	nid3:leadArtist <urn:uuid:660622060>.
+
+<urn:uuid:511291048> a nco:Contact; 
+	nco:fullname "Artist_65".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4099833;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1960758;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 1338742;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2673109;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4470980;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 477622;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2137055;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2121423;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4652610;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4448269;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1427571;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1395317;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 1983564;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1208594;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2721720;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 2099383;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1199534;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 4933903;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 430071;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3944034;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1013642;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:10" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 2747290;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2931491;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2334445;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1434415;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 980378;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2078054;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 3633225;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:28";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4098310;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 554552;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1476589;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 119855;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 232393;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1043083;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4878124;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1972709;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 287306;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 19510;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 3665857;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4330266;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4352947;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2859779;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4151427;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 910861;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2548657;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1957572;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1832149;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2169836;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 19615;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2636770;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 3067018;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_65/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 2728582;
+	nid3:leadArtist <urn:uuid:511291048>.
+
+<urn:uuid:1212827417> a nco:Contact; 
+	nco:fullname "Artist_66".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 367462;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4165523;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3102050;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2619190;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1180956;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 4746511;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3814699;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18988;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 3869294;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4169904;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:29";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1079692;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4174904;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4828348;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3187532;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 39859;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 2202624;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1086468;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1494871;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19406;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 589393;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1654107;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:12" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2313393;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 556706;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1659805;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3257209;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4485928;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 59532;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 973557;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1401174;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19510;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2140108;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3793138;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3925096;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 456521;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 132739;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1188998;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4175502;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4115064;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 717313;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3208337;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 19719;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2846828;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3788597;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:30";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3586178;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3398832;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2183573;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 821116;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2452341;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1257917;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3648763;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1469545;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19615;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4677338;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 2809432;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_66/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1679460;
+	nid3:leadArtist <urn:uuid:1212827417>.
+
+<urn:uuid:424595213> a nco:Contact; 
+	nco:fullname "Artist_67".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 503915;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4230785;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2079343;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3324282;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3825622;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1693958;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2337408;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19092;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2438466;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2722523;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3317417;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3568454;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:14" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1046239;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3760550;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4671847;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1448078;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4374765;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19406;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4018359;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19510;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2308294;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2315451;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2126738;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2998644;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3562396;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2510621;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:31";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3364014;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 20720;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1773042;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3613184;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19615;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1395593;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4410800;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1544982;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3688860;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1911174;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1398389;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 378031;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 453747;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4331184;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3650603;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19615;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4143973;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4019577;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4673456;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3130783;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4040278;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2976434;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4568469;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2405376;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2521880;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1348238;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19719;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 860194;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3590278;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_67/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:16" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3800603;
+	nid3:leadArtist <urn:uuid:424595213>.
+
+<urn:uuid:1682541203> a nco:Contact; 
+	nco:fullname "Artist_68".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 4403791;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2906480;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4687238;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 460140;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4832876;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2806984;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 531923;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3368938;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4767643;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4901595;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2611246;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1858682;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:32";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1708382;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2791813;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4213439;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4738522;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 957094;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3363963;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 210706;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2266288;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2247679;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3306001;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 956980;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 677066;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 552178;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 838583;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 341850;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3497130;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3717881;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3270928;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3020529;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1749216;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 2335185;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2959034;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1417071;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4332759;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2332124;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3201791;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3441598;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1861368;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:33";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2323678;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4889475;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4298946;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2173661;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3157062;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2004628;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2480061;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1598467;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2689823;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_68/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4701491;
+	nid3:leadArtist <urn:uuid:1682541203>.
+
+<urn:uuid:1962847236> a nco:Contact; 
+	nco:fullname "Artist_69".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3379344;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2594459;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:18" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4564951;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3289882;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3541122;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3381736;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3300503;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4551311;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4547865;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2289714;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 2498809;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3670975;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2622404;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3967513;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3517884;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3654258;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1469061;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3281655;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 713092;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 689875;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1715726;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 1621284;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4219746;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3384541;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3886310;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 2536064;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3927014;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4663014;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 588537;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2519932;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 2470046;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 1450182;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 814662;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:34";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4359678;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 406239;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3140872;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1178712;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 19510;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3458917;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3060308;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3390028;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1214122;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4016780;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2936407;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3134747;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 441790;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 474627;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3417867;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4347277;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2004249;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_69/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2601023;
+	nid3:leadArtist <urn:uuid:1962847236>.
+
+<urn:uuid:162261648> a nco:Contact; 
+	nco:fullname "Artist_7".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2198708;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4082290;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1143316;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3651296;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:22" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2925890;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2202677;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4997921;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3619263;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2499812;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1885611;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:35";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 156746;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3667475;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3359638;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 883516;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3669453;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1536689;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 974082;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1346361;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4155921;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1321886;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1506062;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4064857;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2160906;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1504732;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 402740;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4767759;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3186595;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:36";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4220744;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 196214;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1262999;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3274745;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2751855;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3245620;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2906203;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4814043;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3482537;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4814115;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:24" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 300127;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3716191;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 719270;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4910777;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 56950;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4638883;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2837194;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1212956;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4024901;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2573791;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 126280;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4685676;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_7/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3657767;
+	nid3:leadArtist <urn:uuid:162261648>.
+
+<urn:uuid:1312877786> a nco:Contact; 
+	nco:fullname "Artist_70".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2269799;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 925337;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 2903429;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 3184486;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3192553;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2324491;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3817974;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3458069;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4919586;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:20" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1512426;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4343005;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 24486;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 567219;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:37";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 3228306;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 3299898;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3518442;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3604122;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3128228;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 2923605;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2383629;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 335593;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3882309;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 61031;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 585658;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2555321;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2554864;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1827149;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2770981;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1585746;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 11874;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1994892;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2720668;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1428041;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4151345;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 4867586;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 832040;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2296762;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 3054218;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3221006;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2041004;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3693848;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3477337;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 97426;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4461373;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 755387;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 49915;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3924803;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2038705;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 3107208;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_70/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 113325;
+	nid3:leadArtist <urn:uuid:1312877786>.
+
+<urn:uuid:2014544637> a nco:Contact; 
+	nco:fullname "Artist_71".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 397221;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4492744;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 630276;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 42768;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3221217;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2871236;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3671168;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18988;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4821538;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2358180;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 1637218;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 435282;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4613231;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4468511;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1187320;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1324805;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2586501;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4990127;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1734645;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3000138;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 1584778;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 3428651;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3041715;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 2702034;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1523820;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 790878;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 1012316;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1126248;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:38";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1451195;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 855381;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 1747270;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 1499121;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:22" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1272097;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1131387;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3428319;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 253936;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2350507;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 293077;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 160891;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1062810;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4814885;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4725577;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1957950;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4092555;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3313706;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3698984;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2055486;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3109109;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 13983;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 141648;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_71/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 1870595;
+	nid3:leadArtist <urn:uuid:2014544637>.
+
+<urn:uuid:2020626146> a nco:Contact; 
+	nco:fullname "Artist_72".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4329333;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3934202;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2857762;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 2152975;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2128057;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1398021;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4419957;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 220744;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1744833;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4883237;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 519449;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 1670918;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4946799;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4652735;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4565635;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1452163;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1844280;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3309672;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4448881;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4867505;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4219972;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4089157;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1039507;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1245196;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3670676;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 245541;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3904050;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3462457;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 3214012;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2568962;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 3974356;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4247344;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 547853;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 2560951;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4591139;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:39";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 4399501;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 498553;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4816418;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1378153;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3174870;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2147109;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4239712;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 596518;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4039751;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 493761;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1702588;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 600921;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1359095;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:24" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 838478;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_72/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 4591911;
+	nid3:leadArtist <urn:uuid:2020626146>.
+
+<urn:uuid:695710329> a nco:Contact; 
+	nco:fullname "Artist_73".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1709650;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3846763;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3992873;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4222773;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 623028;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1371754;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2582081;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1784039;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4163034;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1239480;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 4927896;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 2556697;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 4029750;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4510791;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 4151799;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4593704;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2974459;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 2229204;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 454944;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2447029;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3989427;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4369985;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2164356;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 195414;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 2307625;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1759637;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1976522;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 2592948;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 755152;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:40";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 701986;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3941218;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4869785;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 237067;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 380457;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 55749;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 3691566;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 547845;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3052894;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 270348;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4475703;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3165525;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 209308;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 893414;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 3487098;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 166777;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 866737;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4135926;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 821128;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 680574;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_73/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 964138;
+	nid3:leadArtist <urn:uuid:695710329>.
+
+<urn:uuid:2062243107> a nco:Contact; 
+	nco:fullname "Artist_74".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3716272;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4126103;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2423358;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3928427;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 4925969;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:26" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 6010;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 2584919;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4776941;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4863677;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 287069;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3402163;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4216084;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 109593;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 900090;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3269286;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:41";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1541650;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4475196;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2370823;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3335659;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3050821;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 4825496;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2651110;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4787856;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3441869;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 50329;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1739254;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3122945;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2045112;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 642540;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 501283;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 3655917;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 124877;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4269206;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3668386;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3206091;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2825297;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3653996;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4919142;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3636530;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 4440236;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1906227;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3563077;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4009014;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 2972078;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 479052;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1174266;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 871335;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 2393380;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3195323;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_74/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 516208;
+	nid3:leadArtist <urn:uuid:2062243107>.
+
+<urn:uuid:1913344619> a nco:Contact; 
+	nco:fullname "Artist_75".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1628497;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 268013;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 654754;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4130071;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3828181;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3683227;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1279069;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 4665398;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 3286969;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4856310;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1407058;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 451443;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4305618;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1845125;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:42";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3341352;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3459974;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:28" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2420972;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19406;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1241400;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4735821;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3656831;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2918051;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 3468164;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2927089;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2558052;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4376886;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1874492;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2391774;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 3268653;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 364042;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4399138;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4520153;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1720151;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 1238015;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4421469;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2192602;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 277031;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 57058;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 4810751;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 1350510;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1563829;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2311983;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 851832;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 427664;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 3724197;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1056645;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3618966;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2393069;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 19510;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1550920;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4904609;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_75/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 4039459;
+	nid3:leadArtist <urn:uuid:1913344619>.
+
+<urn:uuid:1199344784> a nco:Contact; 
+	nco:fullname "Artist_76".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1398649;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1253170;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3018531;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4278907;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4870164;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:43";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3658610;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 19820;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1479699;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3365024;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 895324;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3342080;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2570403;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3540981;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 745916;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 576593;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1660670;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 3913776;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19510;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1164429;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3469738;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3703723;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 2284408;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 3635848;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1193917;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 2328378;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 835478;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 977355;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2826353;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19510;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4670354;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:30" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3629715;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1872225;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1682848;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1489515;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 564437;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3296984;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4249569;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 548917;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2006990;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19615;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 753216;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4664909;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2238717;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4048178;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4048160;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1545531;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1545027;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 216781;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3875353;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 659776;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 19615;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 1797096;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 87280;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_76/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1832458;
+	nid3:leadArtist <urn:uuid:1199344784>.
+
+<urn:uuid:1846768969> a nco:Contact; 
+	nco:fullname "Artist_77".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2541005;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 668777;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1536099;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 498694;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 313356;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3887798;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3045326;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18988;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2396294;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:44";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1894542;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4350006;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4449989;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3848551;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1981815;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2663801;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2081982;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 253217;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 34664;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19406;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1431031;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2730160;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4522660;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4934567;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 996312;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4560378;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4155774;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4753912;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 337528;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2824469;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19615;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2786079;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2549996;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4671243;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4419627;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3741713;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4937064;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 258462;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3492499;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2707971;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2996242;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19615;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3375022;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:32" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 848761;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 32205;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 786415;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2023105;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 648868;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1842594;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3837233;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 682611;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1253954;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 19615;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1481565;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4694653;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_77/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:45";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4395858;
+	nid3:leadArtist <urn:uuid:1846768969>.
+
+<urn:uuid:1671786002> a nco:Contact; 
+	nco:fullname "Artist_78".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1817979;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4052644;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3467265;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 333410;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3889168;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1619810;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 768075;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 743179;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 373495;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1560368;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 4285360;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4312702;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 338435;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1006940;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3551479;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 457995;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3091170;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4226115;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2900292;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1773095;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2902872;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 84274;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4649783;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2960244;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1516947;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:46";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1954212;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2029577;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4567759;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3213579;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1025448;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3457017;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2463832;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3061797;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2762777;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 5852;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 424130;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3819845;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 505876;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 943227;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2286219;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2635613;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3024897;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 2393394;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2263492;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 2906614;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3591436;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3481737;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2866769;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1412436;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_78/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4537246;
+	nid3:leadArtist <urn:uuid:1671786002>.
+
+<urn:uuid:406345727> a nco:Contact; 
+	nco:fullname "Artist_79".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 2382097;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2963088;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2738958;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 1488806;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:34" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1811372;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3305231;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3590716;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1403847;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4006964;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2583003;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1685053;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3928817;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4194313;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4867215;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4117366;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 709167;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:47";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3625259;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3405684;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1096260;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 238650;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4187748;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3426314;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2969643;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3548080;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 45067;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3323731;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1466391;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 2283893;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1586443;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3424177;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 895412;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4556647;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4955924;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3461344;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1103222;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4261045;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 734382;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 19510;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4839872;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1485205;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 4029972;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1933188;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3291015;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:48";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1764215;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4825903;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4868327;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 1803919;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1101200;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1964009;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 900453;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_79/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1127334;
+	nid3:leadArtist <urn:uuid:406345727>.
+
+<urn:uuid:1262428525> a nco:Contact; 
+	nco:fullname "Artist_8".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 4907217;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 4867096;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4009328;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1474410;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1082871;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1083457;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 848627;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 25678;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3653412;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2125075;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2629381;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 415571;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4750675;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3883794;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1069673;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4327439;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 339066;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1994590;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4246114;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1701760;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1884853;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2065027;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1785537;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 1075893;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 325662;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 485577;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 894815;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4441744;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17107;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3631506;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:26" ;
+	nfo:fileCreated "2008-12-16T12:42:49";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 515211;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 755323;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 739671;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3307622;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2875466;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3064880;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1749459;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3000729;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2533032;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4886889;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17212;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3016579;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2252714;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2595864;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 602365;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4420745;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 896611;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3595887;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2908487;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 1362396;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2962125;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_8/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1611384;
+	nid3:leadArtist <urn:uuid:1262428525>.
+
+<urn:uuid:27765500> a nco:Contact; 
+	nco:fullname "Artist_80".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 3429861;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4723048;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3582784;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 2976412;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2475803;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4505202;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4386444;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1277511;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 2205734;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 465867;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4364357;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:50";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1029055;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 2384602;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 2621465;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:36" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1682715;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2516792;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3744723;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2527173;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4939698;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3257706;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2008462;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 433410;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 3294099;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 228695;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1556865;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 254644;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 1525693;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2913332;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4052311;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1695678;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1303878;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1982004;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1239390;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4438439;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 387145;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 2820865;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4190848;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 879027;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1969075;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 2799646;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 2822221;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1883448;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1114701;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4936494;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 882297;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1131851;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2790100;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2292051;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1623092;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_80/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17421;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 1445052;
+	nid3:leadArtist <urn:uuid:27765500>.
+
+<urn:uuid:226815170> a nco:Contact; 
+	nco:fullname "Artist_81".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 990426;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 357469;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4777029;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4256883;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 144351;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 4918749;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4298289;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4957015;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 2298223;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 116440;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 2299171;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1569428;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:51";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3357688;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3309324;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 2936756;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 1717697;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 620774;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 3560770;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4216280;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 685671;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4909912;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4060705;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 4140328;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4193246;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3990314;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3509814;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3852309;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2259409;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3993208;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 937015;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 1983088;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:38" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 1523681;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 997874;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1153297;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3644806;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 2853229;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4898395;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2315640;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3579466;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3123138;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 623427;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 217248;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1925468;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 3214730;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 3580514;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 560388;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 3378063;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 765235;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4783317;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_81/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 4605700;
+	nid3:leadArtist <urn:uuid:226815170>.
+
+<urn:uuid:230498327> a nco:Contact; 
+	nco:fullname "Artist_82".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4971786;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2059493;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 2653997;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 1688433;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4771836;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1629904;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1421200;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 53809;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1751061;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 279357;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1307011;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:52";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4801237;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3758995;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3200456;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2511834;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 225007;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3710236;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1275554;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1454181;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2091054;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 1604510;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3460579;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18257;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4816084;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4481235;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 216573;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 872384;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1709406;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 331644;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1434701;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1998042;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2847934;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4644297;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1347166;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 203601;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2239920;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1123406;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1909079;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:53";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3865714;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 11956;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 538245;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 135636;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4257952;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 714868;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 2888092;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2381526;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 244585;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 1374234;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1433439;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1302984;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_82/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:40" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 3503197;
+	nid3:leadArtist <urn:uuid:230498327>.
+
+<urn:uuid:1308849474> a nco:Contact; 
+	nco:fullname "Artist_83".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1270563;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3741755;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3983205;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2487789;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:54";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 1741627;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4937681;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4615540;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 748765;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 3991733;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1393545;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1576280;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3687347;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2002146;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4346536;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3473228;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 1032941;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 4629889;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1943299;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 1829803;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4985338;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 2782278;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1977761;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 307173;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2027570;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 4777711;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2582369;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 927149;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3966933;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 3125283;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1439693;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 1399076;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 2760337;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1086763;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 4303021;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3185166;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:55";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4817184;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 1647421;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 2914536;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 2598779;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2367411;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 665316;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1808896;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1876405;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2604193;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 1930432;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2288351;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 2948475;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3886534;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4541105;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_83/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 4621487;
+	nid3:leadArtist <urn:uuid:1308849474>.
+
+<urn:uuid:117950756> a nco:Contact; 
+	nco:fullname "Artist_84".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 755617;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2988101;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4256417;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4730347;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1979392;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4600741;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1400090;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 1987766;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4962356;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2517659;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 49377;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 995664;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 114252;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 378927;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:42" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3467035;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1155711;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3792999;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 1038636;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 942282;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3987939;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2601342;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4938057;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 1778713;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:56";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4599700;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 2328529;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 2781525;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1554984;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4866244;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2134672;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1591529;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 4580401;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 3281110;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2181046;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4129952;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 227286;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 3961671;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1498196;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 3359813;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3664608;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 1487375;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 1600025;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4455313;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4248148;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1878105;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3726962;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4670522;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 4681670;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4138806;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1530280;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_84/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 281223;
+	nid3:leadArtist <urn:uuid:117950756>.
+
+<urn:uuid:1143500443> a nco:Contact; 
+	nco:fullname "Artist_85".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1105145;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 661808;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2886244;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 74010;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2616108;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 644530;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3059001;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2227401;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 733430;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3746077;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2257636;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 179281;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 3950618;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1637900;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2651537;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1899429;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1934810;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 4225331;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4770067;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 630583;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1429002;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1153297;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2999217;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2976549;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3382170;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 3724156;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:57";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 3452807;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 3789695;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4755260;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3601467;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 1694756;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 3922182;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 998977;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 906384;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3100357;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 2411173;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2684979;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:44" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1797181;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 338494;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1860691;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 360170;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 2881131;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 3036453;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 968243;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2710994;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1163180;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1324729;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1424199;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4583357;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_85/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 38381;
+	nid3:leadArtist <urn:uuid:1143500443>.
+
+<urn:uuid:602939908> a nco:Contact; 
+	nco:fullname "Artist_86".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4111958;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2353289;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 4623802;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4930998;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 2470124;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 4816136;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 337250;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2426572;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 2745558;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 4085400;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4242361;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4110642;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 4191293;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1090469;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 466834;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3413943;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1890769;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4174334;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4780194;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 4016464;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4036742;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2311352;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 2354104;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 523281;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 3642023;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:58";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3491885;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 1180879;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4409268;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3956524;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1425362;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3407700;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 101295;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1383996;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1721873;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1640357;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1846709;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2045237;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4875071;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4493527;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2415149;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3399045;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 83690;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1958035;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 1804077;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4660094;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 674403;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:46" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4829577;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 663841;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 619879;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_86/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 648294;
+	nid3:leadArtist <urn:uuid:602939908>.
+
+<urn:uuid:436408822> a nco:Contact; 
+	nco:fullname "Artist_87".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3641558;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3932676;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3692916;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4555996;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 937792;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1118437;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2897303;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2219710;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2888049;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 491527;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1572553;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1663520;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2256384;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 480401;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3266114;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 195805;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1322874;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4701727;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4536029;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2899677;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4128149;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3959367;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2451735;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 686278;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1047585;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 373011;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2352912;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2582851;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4625719;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:42:59";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1981227;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3911465;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 984599;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3548562;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1653265;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4283138;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4228514;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4171663;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1753215;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 68319;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2900937;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4796617;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1902199;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3065213;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 656962;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2111362;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3299298;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4350372;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:48" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4065994;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1829325;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_87/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2069616;
+	nid3:leadArtist <urn:uuid:436408822>.
+
+<urn:uuid:557501022> a nco:Contact; 
+	nco:fullname "Artist_88".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 781248;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3676665;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 1082599;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3731055;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3448251;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 692165;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 454819;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4348779;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1240485;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1864409;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2796887;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1211120;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 2670713;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 4372377;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3809558;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4791888;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 1169887;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 717295;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:00";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1543669;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2589671;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 422437;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 457486;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 922214;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3099885;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 1329078;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4103360;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 3259031;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2088821;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 4445381;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 4073772;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 4812594;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 638806;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 544458;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2136902;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 2271946;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2748726;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 1209480;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 30109;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 695636;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2620090;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2435985;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2924233;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4437248;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2187218;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 2240029;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4935450;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 1681685;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4438053;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 1772578;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_88/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2263407;
+	nid3:leadArtist <urn:uuid:557501022>.
+
+<urn:uuid:1469999423> a nco:Contact; 
+	nco:fullname "Artist_89".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1214731;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 568963;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 795635;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4149331;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2378566;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3629983;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 559391;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 2747377;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 250236;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:50" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 735928;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 958534;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 1150171;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4630316;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 1634779;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:01";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4500570;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 2168097;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 333861;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 2894627;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4476153;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2313526;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4755295;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2955376;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1488661;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3547077;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 940017;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3815950;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 179647;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4433454;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3558854;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3828170;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 981574;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2638763;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 519343;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 3338358;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3774590;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 502181;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 461348;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 640528;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4545744;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3429665;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3171530;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3296389;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 3879815;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4374874;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2089754;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3396613;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 2602071;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 855325;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 185123;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_89/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:02";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2961345;
+	nid3:leadArtist <urn:uuid:1469999423>.
+
+<urn:uuid:1862357531> a nco:Contact; 
+	nco:fullname "Artist_9".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 395755;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 917108;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17525;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2391843;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 887894;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3676148;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3455565;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 4796111;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 4466757;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17421;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2537845;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 4574245;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1767543;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4092536;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2685851;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17212;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 40306;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:28" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4427296;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17316;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4552349;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3469493;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3835527;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17003;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1096349;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17107;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 746758;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 4856280;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2759289;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17107;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1422520;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17316;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2104897;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2188209;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4037894;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 815418;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3081541;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17107;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 4135097;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17212;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2696052;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1284046;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3190888;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17107;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 1933839;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2162128;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3412882;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 956303;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3799283;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1674016;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 174424;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:03";
+	nfo:fileSize 17316;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3812417;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3907140;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 1572030;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 3427686;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:30" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4338146;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2830381;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4169171;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3694624;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 635066;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17212;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1753464;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_9/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:47:32" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17316;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3143501;
+	nid3:leadArtist <urn:uuid:1862357531>.
+
+<urn:uuid:571686340> a nco:Contact; 
+	nco:fullname "Artist_90".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4987867;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17734;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1845632;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 992224;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4976751;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 930131;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 4134116;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 2492119;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 4520557;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 1268155;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:52" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 8949;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 1251976;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 1994371;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 4261928;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1719877;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 4828099;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3112650;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3484960;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:04";
+	nfo:fileSize 18048;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1162014;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17525;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 4202888;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17421;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 3337219;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 434313;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 2579452;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17421;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 399828;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17630;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 4861893;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 2831027;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 3352980;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3598959;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 1621165;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 23842;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:05";
+	nfo:fileSize 17525;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4723621;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 4560664;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 4673637;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17421;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 1993649;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 1790666;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 1086700;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1600420;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 3034031;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 2044855;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17630;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 270626;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:06";
+	nfo:fileSize 17525;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4407170;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "New Age";
+	nid3:length 490883;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "New Age";
+	nid3:length 3819397;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "New Age";
+	nid3:length 468720;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "New Age";
+	nid3:length 794079;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "New Age";
+	nid3:length 4760971;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "New Age";
+	nid3:length 1545139;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "New Age";
+	nid3:length 4625798;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "New Age";
+	nid3:length 430235;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17630;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "New Age";
+	nid3:length 323807;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_90/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17525;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "New Age";
+	nid3:length 4883776;
+	nid3:leadArtist <urn:uuid:571686340>.
+
+<urn:uuid:1688637480> a nco:Contact; 
+	nco:fullname "Artist_91".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 975269;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 3456413;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 2866112;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 1214101;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1472940;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3154487;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 830329;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2908113;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1729159;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 2937444;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 88657;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4115746;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3362331;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 572186;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4813232;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 446379;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18152;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2064353;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2139970;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:07";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1323082;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 585714;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 1102410;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4141621;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3656356;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2416724;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4421631;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 1613550;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:54" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 1543653;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 4835283;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 4087798;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 1744721;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 4251689;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18152;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 4394532;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 1028577;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 4809239;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 4785821;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18257;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3795698;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 4926656;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 1299201;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 1358106;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 3353379;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Classic Rock";
+	nid3:length 219230;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18257;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Classic Rock";
+	nid3:length 2339766;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Classic Rock";
+	nid3:length 3399167;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Classic Rock";
+	nid3:length 2006977;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Classic Rock";
+	nid3:length 1492185;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18152;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Classic Rock";
+	nid3:length 3290546;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Classic Rock";
+	nid3:length 2667698;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Classic Rock";
+	nid3:length 2314432;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Classic Rock";
+	nid3:length 3356567;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_91/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Classic Rock";
+	nid3:length 641386;
+	nid3:leadArtist <urn:uuid:1688637480>.
+
+<urn:uuid:363155708> a nco:Contact; 
+	nco:fullname "Artist_92".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 2882131;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 4087058;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 3642341;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3885886;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 4603717;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 506483;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4210613;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1834709;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4698438;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2380229;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 3282985;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2536790;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1651713;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 673494;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 3296460;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 147120;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2481253;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1140984;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 1463688;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1020772;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 4510119;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:08";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3735584;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 4922755;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4634997;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 1288025;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 1094178;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 3436142;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 1343220;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 2292937;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 2641060;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 3785414;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17734;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 3902422;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 686792;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 3525848;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 2239190;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 620043;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 4789820;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 3130533;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 4939828;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1129721;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Country";
+	nid3:length 159771;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17734;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Country";
+	nid3:length 2656037;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Country";
+	nid3:length 1427117;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Country";
+	nid3:length 4076264;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Country";
+	nid3:length 952165;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Country";
+	nid3:length 601791;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Country";
+	nid3:length 2777634;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Country";
+	nid3:length 4999481;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Country";
+	nid3:length 2094203;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_92/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Country";
+	nid3:length 1347891;
+	nid3:leadArtist <urn:uuid:363155708>.
+
+<urn:uuid:1942367471> a nco:Contact; 
+	nco:fullname "Artist_93".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 2599015;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 1907027;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 80084;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 1204233;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3034425;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 2330201;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 78949;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 4637204;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4764738;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1701009;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3936686;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4654177;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 2855179;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2252055;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:56" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3582201;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4263449;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 847795;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1681716;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 4809603;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 3940869;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 896664;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 3539753;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 3155640;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2405912;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 534863;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4768798;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3573862;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 1162967;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 109467;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:09";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2032255;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 3034500;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4602125;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 597467;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 2584632;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 861041;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 701897;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3288077;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3800180;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 580855;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 2660656;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Dance";
+	nid3:length 2075512;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Dance";
+	nid3:length 4277736;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Dance";
+	nid3:length 1771887;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Dance";
+	nid3:length 1925767;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Dance";
+	nid3:length 3749945;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Dance";
+	nid3:length 4642790;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Dance";
+	nid3:length 3917805;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Dance";
+	nid3:length 3464025;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Dance";
+	nid3:length 494091;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_93/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Dance";
+	nid3:length 1127394;
+	nid3:leadArtist <urn:uuid:1942367471>.
+
+<urn:uuid:107699292> a nco:Contact; 
+	nco:fullname "Artist_94".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2054787;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 1970739;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2229078;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 3285124;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 231603;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 394026;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3192131;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 586757;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 3631863;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 2374385;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2437719;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2053675;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 2348632;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1101802;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3704856;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 4045227;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1112748;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 4487474;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4382109;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 667175;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2094232;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2252823;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 4685271;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:10";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 4012400;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 1856108;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 3132238;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 1930520;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 3316672;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 2300209;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 15742;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2538606;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 2403629;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 30157;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 648093;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 3878208;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1280926;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3883802;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:50:58" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 1511979;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 4726131;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:11";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 3654352;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Disco";
+	nid3:length 2511341;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Disco";
+	nid3:length 4908641;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Disco";
+	nid3:length 315081;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Disco";
+	nid3:length 1042815;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Disco";
+	nid3:length 4310190;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Disco";
+	nid3:length 1083857;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Disco";
+	nid3:length 3485741;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Disco";
+	nid3:length 1841730;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Disco";
+	nid3:length 1598132;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_94/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Disco";
+	nid3:length 944982;
+	nid3:leadArtist <urn:uuid:107699292>.
+
+<urn:uuid:1426625803> a nco:Contact; 
+	nco:fullname "Artist_95".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 991312;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 276324;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4555981;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4109501;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 4946943;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1880625;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2311906;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 1184571;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4569052;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3441719;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 2952752;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 17734;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 4571412;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 4317303;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 4440594;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2938722;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1554604;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 4326457;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2390903;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 3922166;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1356166;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 392661;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 17943;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 3749697;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 151455;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 1210403;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 1974411;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 1134413;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 1658559;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 359773;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 1824762;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 1123342;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 4962753;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 17943;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 1140388;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 306184;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 2124288;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 3270202;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 2435065;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 923410;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 2109246;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 439807;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:12";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 103250;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Funk";
+	nid3:length 3590256;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 17943;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Funk";
+	nid3:length 418409;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Funk";
+	nid3:length 2270972;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Funk";
+	nid3:length 682253;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Funk";
+	nid3:length 2679965;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Funk";
+	nid3:length 18518;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Funk";
+	nid3:length 2365190;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19301;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Funk";
+	nid3:length 114709;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Funk";
+	nid3:length 4604317;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_95/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Funk";
+	nid3:length 3361243;
+	nid3:leadArtist <urn:uuid:1426625803>.
+
+<urn:uuid:844658547> a nco:Contact; 
+	nco:fullname "Artist_96".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3004821;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1521281;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 1818264;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4751146;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 1320644;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 3793091;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4197427;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 3515358;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 2452694;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 793023;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 1010437;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:00" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 17839;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 4250944;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 2810885;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3977782;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 899886;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1788294;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2513938;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19301;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 3312804;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3059732;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 2065484;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 4800225;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 2152914;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3678825;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 3799926;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4671285;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 4504456;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2400075;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19301;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 4629680;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 3442524;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 1599055;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 228217;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 1049641;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 2270558;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4592952;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 4319054;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 1326429;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 2356976;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 3941723;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 1107043;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 737535;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Grunge";
+	nid3:length 3197261;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Grunge";
+	nid3:length 817452;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Grunge";
+	nid3:length 3640641;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Grunge";
+	nid3:length 4649592;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Grunge";
+	nid3:length 423915;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Grunge";
+	nid3:length 805299;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:13";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Grunge";
+	nid3:length 4158608;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Grunge";
+	nid3:length 2567098;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Grunge";
+	nid3:length 4720785;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_96/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Grunge";
+	nid3:length 3731417;
+	nid3:leadArtist <urn:uuid:844658547>.
+
+<urn:uuid:1523783170> a nco:Contact; 
+	nco:fullname "Artist_97".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4925544;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18466;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2391044;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1863183;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3914085;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4808722;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3941322;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1128315;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4332325;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4684816;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 669577;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2053941;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 17943;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3560902;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1062862;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3113858;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1443000;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3910954;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 19092;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3494512;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 19197;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 366618;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1464417;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2667476;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2187273;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18152;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3085748;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2710982;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3486365;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2934784;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18988;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1100753;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 19197;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2081665;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 19406;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1934402;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3077021;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:02" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2904667;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4652165;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18048;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3443554;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 109294;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 141806;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4733386;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1900310;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:14";
+	nfo:fileSize 19197;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1985351;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 19406;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4358261;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4195785;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 896661;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4938171;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18048;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1973940;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4926283;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Hip-Hop";
+	nid3:length 279404;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4548176;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Hip-Hop";
+	nid3:length 2466164;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4285912;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 19406;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Hip-Hop";
+	nid3:length 1086553;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Hip-Hop";
+	nid3:length 4888526;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_97/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18779;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Hip-Hop";
+	nid3:length 3707594;
+	nid3:leadArtist <urn:uuid:1523783170>.
+
+<urn:uuid:1239440820> a nco:Contact; 
+	nco:fullname "Artist_98".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 1935732;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 600043;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 2680382;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2396749;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 4389299;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18048;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 2048284;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2894360;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 836617;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 369657;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1159565;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:15";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 235831;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 2884719;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 344461;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3546018;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 814117;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1256599;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 886713;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4822463;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 358900;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1158334;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 120775;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 17734;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3804612;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 3277382;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 3107475;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3617598;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 1024959;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2435839;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 2300159;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 3180678;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 1270970;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 2040872;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 1573176;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4323001;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 216595;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3654683;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 4614955;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18883;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2927357;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 19092;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 3395525;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2794572;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 3185671;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Jazz";
+	nid3:length 3249800;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Jazz";
+	nid3:length 3432128;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Jazz";
+	nid3:length 4750476;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Jazz";
+	nid3:length 2621565;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Jazz";
+	nid3:length 3344602;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:16";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Jazz";
+	nid3:length 3500728;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Jazz";
+	nid3:length 2304740;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 19092;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Jazz";
+	nid3:length 4552980;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Jazz";
+	nid3:length 2984298;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_98/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:04" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Jazz";
+	nid3:length 2552438;
+	nid3:leadArtist <urn:uuid:1239440820>.
+
+<urn:uuid:520105776> a nco:Contact; 
+	nco:fullname "Artist_99".
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 2027484;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18257;
+	nid3:albumTitle "1_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2541080;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2371325;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 786850;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 1326214;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18152;
+	nid3:albumTitle "1_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3505782;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18361;
+	nid3:albumTitle "1_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3520258;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "1_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3998960;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 17839;
+	nid3:albumTitle "1_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 3862054;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/1_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 17943;
+	nid3:albumTitle "1_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3915283;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 542801;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 17630;
+	nid3:albumTitle "2_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 4706189;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2445396;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18466;
+	nid3:albumTitle "2_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2002301;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 4018732;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "2_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3505441;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18779;
+	nid3:albumTitle "2_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 4884730;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18988;
+	nid3:albumTitle "2_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1530638;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18257;
+	nid3:albumTitle "2_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 2769800;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/2_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18361;
+	nid3:albumTitle "2_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 3017002;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 364302;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 17839;
+	nid3:albumTitle "3_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 228189;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 3255470;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4999366;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18570;
+	nid3:albumTitle "3_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 2708382;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18674;
+	nid3:albumTitle "3_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 691296;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:17";
+	nfo:fileSize 18883;
+	nid3:albumTitle "3_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 3207853;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 19092;
+	nid3:albumTitle "3_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 918759;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18361;
+	nid3:albumTitle "3_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1701735;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/3_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18466;
+	nid3:albumTitle "3_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 2090595;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 1140947;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 17839;
+	nid3:albumTitle "4_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 2873221;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 4731864;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 2977449;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18570;
+	nid3:albumTitle "4_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3150688;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18779;
+	nid3:albumTitle "4_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 3762345;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18988;
+	nid3:albumTitle "4_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1036047;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 19301;
+	nid3:albumTitle "4_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 3452035;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18466;
+	nid3:albumTitle "4_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 1319947;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/4_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18674;
+	nid3:albumTitle "4_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1320981;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/10_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "10_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "10_song";
+	nid3:trackNumber "10";
+	nid3:contentType "Metal";
+	nid3:length 3653715;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/1_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "1_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 17839;
+	nid3:albumTitle "5_Album";
+	nid3:title "1_song";
+	nid3:trackNumber "1";
+	nid3:contentType "Metal";
+	nid3:length 3311569;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/2_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "2_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "2_song";
+	nid3:trackNumber "2";
+	nid3:contentType "Metal";
+	nid3:length 2603044;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/3_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "3_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "3_song";
+	nid3:trackNumber "3";
+	nid3:contentType "Metal";
+	nid3:length 4019662;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/4_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "4_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18674;
+	nid3:albumTitle "5_Album";
+	nid3:title "4_song";
+	nid3:trackNumber "4";
+	nid3:contentType "Metal";
+	nid3:length 3719297;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/5_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "5_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18883;
+	nid3:albumTitle "5_Album";
+	nid3:title "5_song";
+	nid3:trackNumber "5";
+	nid3:contentType "Metal";
+	nid3:length 4244373;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/6_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "6_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18988;
+	nid3:albumTitle "5_Album";
+	nid3:title "6_song";
+	nid3:trackNumber "6";
+	nid3:contentType "Metal";
+	nid3:length 1577494;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/7_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "7_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 19197;
+	nid3:albumTitle "5_Album";
+	nid3:title "7_song";
+	nid3:trackNumber "7";
+	nid3:contentType "Metal";
+	nid3:length 1977076;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/8_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "8_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18466;
+	nid3:albumTitle "5_Album";
+	nid3:title "8_song";
+	nid3:trackNumber "8";
+	nid3:contentType "Metal";
+	nid3:length 793993;
+	nid3:leadArtist <urn:uuid:520105776>.
+
+<file:///media/PIKKUTIKKU/5000_songs_with_metadata_and_album_arts/Artist_99/5_Album/9_song.mp3> a nid3:ID3Audio,nfo:FileDataObject;
+	nfo:fileName "9_song.mp3";
+	nfo:fileLastModified "2008-10-23T13:51:06" ;
+	nfo:fileCreated "2008-12-16T12:43:18";
+	nfo:fileSize 18570;
+	nid3:albumTitle "5_Album";
+	nid3:title "9_song";
+	nid3:trackNumber "9";
+	nid3:contentType "Metal";
+	nid3:length 1818939;
+	nid3:leadArtist <urn:uuid:520105776>.
+



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]