Chris@0: @prefix : .
Chris@0: @prefix foaf: .
Chris@0: @prefix mo: .
Chris@0: @prefix owl: .
Chris@0: @prefix rdf: .
Chris@0: @prefix rdfs: .
Chris@0: @prefix xsd: .
Chris@0: @prefix zgs: .
Chris@0: @prefix zga: .
Chris@0: @prefix log: .
Chris@0: @prefix math: .
Chris@0: @prefix tl: .
Chris@0: @prefix dc: .
Chris@0: @prefix mit: .
Chris@0: @prefix event: .
Chris@0: @prefix time: .
Chris@0: @prefix yago: .
Chris@0: @prefix geo: .
Chris@0:
Chris@0:
Chris@0: ############# Level 1 #############
Chris@0: :joco
Chris@0: rdfs:type mo:MusicArtist ;
Chris@0: rdfs:label "Jonathan Coulton" ;
Chris@0: owl:sameAs
Chris@0: .
Chris@0: :rit_surr_sound
Chris@0: rdfs:type mo:MusicGroup ;
Chris@0: foaf:name "RIT's Surround Sound" ;
Chris@0: foaf:homepage "http://www.ritsurroundsound.org/" .
Chris@0: :taw3
Chris@0: rdfs:type mo:Record ;
Chris@0: rdfs:label "Thing a Week III" ;
Chris@0: mo:track :c_m_album_track ;
Chris@0: owl:sameAs
Chris@0: .
Chris@0: :code_monkey
Chris@0: rdfs:type mo:MusicalWork ;
Chris@0: dc:title "Code Monkey" .
Chris@0: :c_m_album_track
Chris@0: rdfs:type mo:Track ;
Chris@0: dc:title "Code Monkey" ;
Chris@0: dc:creator :joco ;
Chris@0: owl:sameAs
Chris@0: ;
Chris@0: mo:free_download
Chris@0: .
Chris@0: ############# Level 2 #############
Chris@0: :c_m_comp
Chris@0: rdfs:type mo:Composition ;
Chris@0: rdfs:label "Composition of Code Monkey (Thing a Week 29)";
Chris@0: event:hasAgent :joco ;
Chris@0: event:hasProduct :code_monkey ;
Chris@0: event:time
Chris@0: .
Chris@0: ### Album performance
Chris@0: :c_m_album_perf
Chris@0: rdfs:type mo:Performance ;
Chris@0: mo:performance_of :code_monkey ;
Chris@0: mo:performer :joco ;
Chris@0: event:time
Chris@0: ;
Chris@0: mo:produced_sound :c_m_album_sound ;
Chris@0: mo:recorded_as :c_m_album_signal .
Chris@0: :c_m_album_sound
Chris@0: rdfs:type mo:Sound ;
Chris@0: mo:recorded_in :c_m_album_recording ;
Chris@0: mo:recorded_in :c_m_remix .
Chris@0: :c_m_album_recording
Chris@0: rdfs:type mo:Recording ;
Chris@0: mo:produced_signal :c_m_album_signal .
Chris@0: :c_m_album_signal
Chris@0: rdfs:type mo:Signal ;
Chris@0: mo:published_as :c_m_album_track .
Chris@0: ### Live performance
Chris@0: :c_m_live_perf
Chris@0: rdfs:type mo:Performance ;
Chris@0: rdfs:label "Performance of Code Monkey (video available)";
Chris@0: event:hasAgent :joco ;
Chris@0: event:usesWork :code_monkey ;
Chris@0: event:place :TempleBar ;
Chris@0: mo:available_as .
Chris@0: :TempleBar
Chris@0: rdfs:type yago:venue ;
Chris@0: foaf:name "Temple Bar, Santa Monica, CA" ;
Chris@0: geo:locatedIn .
Chris@0: ### A Cappella arrangement & live performance
Chris@0: :c_m_acappella_arr
Chris@0: rdfs:type mo:Arrangement ;
Chris@0: rdfs:label "A Cappella arrangement of Code Monkey" ;
Chris@0: event:hasFactor :code_monkey ;
Chris@0: foaf:Agent :rit_surr_sound .
Chris@0: :c_m_acappella_perf
Chris@0: rdfs:type mo:Performance ;
Chris@0: rdfs:label "A Cappella Code Monkey Performance (video avail.)";
Chris@0: foaf:Agent :rit_surr_sound ;
Chris@0: event:hasFactor :c_m_acappella_arr ;
Chris@0: mo:available_as .
Chris@0: ### "Speed Monkey" remix
Chris@0: :c_m_remix_signal
Chris@0: rdfs:type mo:Signal ;
Chris@0: mo:remix_of :c_m_album_signal ;
Chris@0: mo:available_as :c_m_remix .
Chris@0: :c_m_remix
Chris@0: rdfs:type mo:Track ;
Chris@0: dc:title "Speed Monkey" ;
Chris@0: mo:release_type mo:remix ;
Chris@0: foaf:homepage ;
Chris@0: mo:free_download
Chris@0: .