sul-cidr / josquin-ribbon

http://ribbon.stanford.edu/
BSD 3-Clause "New" or "Revised" License
12 stars 0 forks source link

Corruption in filename in loaded score #190

Closed craigsapp closed 5 years ago

craigsapp commented 5 years ago

The JSON data for the filename contains junk characters that need to be removed.

craigsapp commented 5 years ago

Should now be fixed:

Screen Shot 2019-10-23 at 3 54 19 PM

The problem was caused by two things:

(1) The program that generates the data is a C++ program. I was using string::data() instead of string::c_str(). The data() function is similar to the c_str() version, but it does not null-terminate the string; therefore, junk can be added to the string.

(2) A few weeks ago, I upgraded the operating system on the CCARH server from Fedora 20 to Fedora 30. The older os and/or compiler seems to include nulls after strings, so the bug in (1) was not visible in Fedora 20, but it became visible in Fedora 30 (and also in MacOS, but I never used the program in MacOS, so I did not notice the problem).

Here is the updated program that converts the Humdrum files into the JSON piano-roll score (and it also generates SVG images of piano rolls, which is unrelated to the ribbon plot): https://github.com/craigsapp/humextra/blob/master/cli/proll.cpp

The filename field in the converted score is now not filled with junk characters: https://josquin.stanford.edu/cgi-bin/josquin?a=proll-json&file=Jos3005

{
    "dataformat"    :   "pianoroll",
    "version"   :   "2.0",
    "creationdate"  :   "20191023",
    "filename"  :   "Jos3005-Jay_bien_cause_de_lamenter.krn",
    "scorelength"   :   [344],
    "scorelengthsec" :  49.1429,
    "partcount" :   6,
    "partnames" :   ["Discantus", "Altus", "Sextus", "Tenor", "Bassus2", "Bassus1"],
    "minpitch"  :   {"name":"G2", "b7":18, "b12":43},
    "maxpitch"  :   {"name":"D5", "b7":36, "b12":74},
    "rangemin"  :   [{"name":"C4", "b7":28, "b12":60}, {"name":"D4", "b7":29, "b12":62}, {"name":"D3", "b7":22, "b12":50}, {"name":"D3", "b7":22, "b12":50}, {"name":"G2", "b7":18, "b12":43}, {"name":"G2", "b7":18, "b12":43}],
    "rangemax"  :   [{"name":"D5", "b7":36, "b12":74}, {"name":"C5", "b7":35, "b12":72}, {"name":"F4", "b7":31, "b12":65}, {"name":"F4", "b7":31, "b12":65}, {"name":"B-3", "b7":27, "b12":58, "accid":-1}, {"name":"B-3", "b7":27, "b12":58, "accid":-1}],
    "barlines"  :
        [
        {"time":[0], "timesec":0, "label":"1", "mensuration":"C|"},
        {"time":[8], "timesec":1.14286, "label":"2"},
        {"time":[16], "timesec":2.28571, "label":"3"},
        {"time":[24], "timesec":3.42857, "label":"4"},
        {"time":[32], "timesec":4.57143, "label":"5"},
        {"time":[40], "timesec":5.71429, "label":"6"},
        {"time":[48], "timesec":6.85714, "label":"7"},
        {"time":[56], "timesec":8, "label":"8"},
        {"time":[64], "timesec":9.14286, "label":"9"},
        {"time":[72], "timesec":10.2857, "label":"10"},
        {"time":[80], "timesec":11.4286, "label":"11"},
        {"time":[88], "timesec":12.5714, "label":"12"},
        {"time":[96], "timesec":13.7143, "label":"13"},
        {"time":[104], "timesec":14.8571, "label":"14"},
        {"time":[112], "timesec":16, "label":"15"},
        {"time":[120], "timesec":17.1429, "label":"16"},
        {"time":[128], "timesec":18.2857, "label":"17"},
        {"time":[136], "timesec":19.4286, "label":"18"},
        {"time":[144], "timesec":20.5714, "label":"19"},
        {"time":[152], "timesec":21.7143, "label":"20"},
        {"time":[160], "timesec":22.8571, "label":"21"},
        {"time":[168], "timesec":24, "label":"22"},
        {"time":[176], "timesec":25.1429, "label":"23"},
        {"time":[184], "timesec":26.2857, "label":"24"},
        {"time":[192], "timesec":27.4286, "label":"25"},
        {"time":[200], "timesec":28.5714, "label":"26"},
        {"time":[208], "timesec":29.7143, "label":"27"},
        {"time":[216], "timesec":30.8571, "label":"28"},
        {"time":[224], "timesec":32, "label":"29"},
        {"time":[232], "timesec":33.1429, "label":"30"},
        {"time":[240], "timesec":34.2857, "label":"31"},
        {"time":[248], "timesec":35.4286, "label":"32"},
        {"time":[256], "timesec":36.5714, "label":"33"},
        {"time":[264], "timesec":37.7143, "label":"34"},
        {"time":[272], "timesec":38.8571, "label":"35"},
        {"time":[280], "timesec":40, "label":"36"},
        {"time":[288], "timesec":41.1429, "label":"37"},
        {"time":[296], "timesec":42.2857, "label":"38"},
        {"time":[304], "timesec":43.4286, "label":"39"},
        {"time":[312], "timesec":44.5714, "label":"40"},
        {"time":[320], "timesec":45.7143, "label":"41"},
        {"time":[328], "timesec":46.8571, "label":"42"},
        {"time":[336], "timesec":48, "label":"43"},
        {"time":[344], "timesec":49.1429, "terminal":"true"}
        ],
    "tempos"    :
        [
        {"time":[0], "tpq":420}
        ],
    "partdata"  :
        [
        {
            "partindex" :   0,
            "notedata"  :   
                [
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [20],
                    "starttimesec"  :   2.85714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [24],
                    "starttimesec"  :   3.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [26],
                    "starttimesec"  :   3.71429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [28],
                    "starttimesec"  :   4,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [32],
                    "starttimesec"  :   4.57143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [36],
                    "starttimesec"  :   5.14286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [38],
                    "starttimesec"  :   5.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [40],
                    "starttimesec"  :   5.71429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [42],
                    "starttimesec"  :   6,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F#4", "b7":31, "b12":66, "accid":1},
                    "starttime" :   [46],
                    "starttimesec"  :   6.57143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [48],
                    "starttimesec"  :   6.85714,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [68],
                    "starttimesec"  :   9.71429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [72],
                    "starttimesec"  :   10.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [74],
                    "starttimesec"  :   10.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [76],
                    "starttimesec"  :   10.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [82],
                    "starttimesec"  :   11.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [84],
                    "starttimesec"  :   12,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [86],
                    "starttimesec"  :   12.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [88],
                    "starttimesec"  :   12.5714,
                    "duration"  :   [6],
                    "durationsec"   :   0.857143,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [94],
                    "starttimesec"  :   13.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [96],
                    "starttimesec"  :   13.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [98],
                    "starttimesec"  :   14,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [100],
                    "starttimesec"  :   14.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [104],
                    "starttimesec"  :   14.8571,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [107],
                    "starttimesec"  :   15.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [108],
                    "starttimesec"  :   15.4286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [109],
                    "starttimesec"  :   15.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [110],
                    "starttimesec"  :   15.7143,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [113],
                    "starttimesec"  :   16.1429,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [114],
                    "starttimesec"  :   16.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [118],
                    "starttimesec"  :   16.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [120],
                    "starttimesec"  :   17.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [123],
                    "starttimesec"  :   17.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [124],
                    "starttimesec"  :   17.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [126],
                    "starttimesec"  :   18,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [128],
                    "starttimesec"  :   18.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D5", "b7":36, "b12":74},
                    "starttime" :   [134],
                    "starttimesec"  :   19.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [136],
                    "starttimesec"  :   19.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [138],
                    "starttimesec"  :   19.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D5", "b7":36, "b12":74},
                    "starttime" :   [140],
                    "starttimesec"  :   20,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [162],
                    "starttimesec"  :   23.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [164],
                    "starttimesec"  :   23.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [166],
                    "starttimesec"  :   23.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [168],
                    "starttimesec"  :   24,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [170],
                    "starttimesec"  :   24.2857,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [173],
                    "starttimesec"  :   24.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [174],
                    "starttimesec"  :   24.8571,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [177],
                    "starttimesec"  :   25.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [178],
                    "starttimesec"  :   25.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [182],
                    "starttimesec"  :   26,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [184],
                    "starttimesec"  :   26.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [198],
                    "starttimesec"  :   28.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [200],
                    "starttimesec"  :   28.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [202],
                    "starttimesec"  :   28.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [204],
                    "starttimesec"  :   29.1429,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [205],
                    "starttimesec"  :   29.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [207],
                    "starttimesec"  :   29.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [208],
                    "starttimesec"  :   29.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [214],
                    "starttimesec"  :   30.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [216],
                    "starttimesec"  :   30.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [218],
                    "starttimesec"  :   31.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [220],
                    "starttimesec"  :   31.4286,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [223],
                    "starttimesec"  :   31.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [224],
                    "starttimesec"  :   32,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [225],
                    "starttimesec"  :   32.1429,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [226],
                    "starttimesec"  :   32.2857,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [229],
                    "starttimesec"  :   32.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [230],
                    "starttimesec"  :   32.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C#4", "b7":28, "b12":61, "accid":1},
                    "starttime" :   [234],
                    "starttimesec"  :   33.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [236],
                    "starttimesec"  :   33.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [246],
                    "starttimesec"  :   35.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [248],
                    "starttimesec"  :   35.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [250],
                    "starttimesec"  :   35.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [252],
                    "starttimesec"  :   36,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [262],
                    "starttimesec"  :   37.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [264],
                    "starttimesec"  :   37.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [266],
                    "starttimesec"  :   38,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [268],
                    "starttimesec"  :   38.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [282],
                    "starttimesec"  :   40.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [284],
                    "starttimesec"  :   40.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [286],
                    "starttimesec"  :   40.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [288],
                    "starttimesec"  :   41.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [298],
                    "starttimesec"  :   42.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [300],
                    "starttimesec"  :   42.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [302],
                    "starttimesec"  :   43.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [304],
                    "starttimesec"  :   43.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [314],
                    "starttimesec"  :   44.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [316],
                    "starttimesec"  :   45.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [318],
                    "starttimesec"  :   45.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [320],
                    "starttimesec"  :   45.7143,
                    "duration"  :   [6],
                    "durationsec"   :   0.857143,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [326],
                    "starttimesec"  :   46.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [330],
                    "starttimesec"  :   47.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [332],
                    "starttimesec"  :   47.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [336],
                    "starttimesec"  :   48,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                }
                ]
        },
        {
            "partindex" :   1,
            "notedata"  :   
                [
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [36],
                    "starttimesec"  :   5.14286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [40],
                    "starttimesec"  :   5.71429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [42],
                    "starttimesec"  :   6,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [44],
                    "starttimesec"  :   6.28571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [48],
                    "starttimesec"  :   6.85714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [52],
                    "starttimesec"  :   7.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [54],
                    "starttimesec"  :   7.71429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [56],
                    "starttimesec"  :   8,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [57],
                    "starttimesec"  :   8.14286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [58],
                    "starttimesec"  :   8.28571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F#4", "b7":31, "b12":66, "accid":1},
                    "starttime" :   [62],
                    "starttimesec"  :   8.85714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [64],
                    "starttimesec"  :   9.14286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [72],
                    "starttimesec"  :   10.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [76],
                    "starttimesec"  :   10.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [78],
                    "starttimesec"  :   11.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [80],
                    "starttimesec"  :   11.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [86],
                    "starttimesec"  :   12.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [88],
                    "starttimesec"  :   12.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [90],
                    "starttimesec"  :   12.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [92],
                    "starttimesec"  :   13.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [98],
                    "starttimesec"  :   14,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [100],
                    "starttimesec"  :   14.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [118],
                    "starttimesec"  :   16.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [120],
                    "starttimesec"  :   17.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [122],
                    "starttimesec"  :   17.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [124],
                    "starttimesec"  :   17.7143,
                    "duration"  :   [6],
                    "durationsec"   :   0.857143,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [130],
                    "starttimesec"  :   18.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [132],
                    "starttimesec"  :   18.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [134],
                    "starttimesec"  :   19.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [136],
                    "starttimesec"  :   19.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [140],
                    "starttimesec"  :   20,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [143],
                    "starttimesec"  :   20.4286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [144],
                    "starttimesec"  :   20.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [145],
                    "starttimesec"  :   20.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [146],
                    "starttimesec"  :   20.8571,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [149],
                    "starttimesec"  :   21.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [150],
                    "starttimesec"  :   21.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [154],
                    "starttimesec"  :   22,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [156],
                    "starttimesec"  :   22.2857,
                    "duration"  :   [12],
                    "durationsec"   :   1.71429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [178],
                    "starttimesec"  :   25.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [180],
                    "starttimesec"  :   25.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [182],
                    "starttimesec"  :   26,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [184],
                    "starttimesec"  :   26.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [186],
                    "starttimesec"  :   26.5714,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [189],
                    "starttimesec"  :   27,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [190],
                    "starttimesec"  :   27.1429,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [193],
                    "starttimesec"  :   27.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [194],
                    "starttimesec"  :   27.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [198],
                    "starttimesec"  :   28.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [200],
                    "starttimesec"  :   28.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [206],
                    "starttimesec"  :   29.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [208],
                    "starttimesec"  :   29.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [210],
                    "starttimesec"  :   30,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [212],
                    "starttimesec"  :   30.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [213],
                    "starttimesec"  :   30.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [215],
                    "starttimesec"  :   30.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [216],
                    "starttimesec"  :   30.8571,
                    "duration"  :   [16],
                    "durationsec"   :   2.28571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [232],
                    "starttimesec"  :   33.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [238],
                    "starttimesec"  :   34,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [240],
                    "starttimesec"  :   34.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [242],
                    "starttimesec"  :   34.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [244],
                    "starttimesec"  :   34.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [254],
                    "starttimesec"  :   36.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [256],
                    "starttimesec"  :   36.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [258],
                    "starttimesec"  :   36.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [260],
                    "starttimesec"  :   37.1429,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [263],
                    "starttimesec"  :   37.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [264],
                    "starttimesec"  :   37.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [265],
                    "starttimesec"  :   37.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [266],
                    "starttimesec"  :   38,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [268],
                    "starttimesec"  :   38.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [270],
                    "starttimesec"  :   38.5714,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [273],
                    "starttimesec"  :   39,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [274],
                    "starttimesec"  :   39.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F#4", "b7":31, "b12":66, "accid":1},
                    "starttime" :   [278],
                    "starttimesec"  :   39.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [280],
                    "starttimesec"  :   40,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [290],
                    "starttimesec"  :   41.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [292],
                    "starttimesec"  :   41.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [294],
                    "starttimesec"  :   42,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [296],
                    "starttimesec"  :   42.2857,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [299],
                    "starttimesec"  :   42.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [300],
                    "starttimesec"  :   42.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [301],
                    "starttimesec"  :   43,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"C5", "b7":35, "b12":72},
                    "starttime" :   [302],
                    "starttimesec"  :   43.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-4", "b7":34, "b12":70, "accid":-1},
                    "starttime" :   [304],
                    "starttimesec"  :   43.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A4", "b7":33, "b12":69},
                    "starttime" :   [306],
                    "starttimesec"  :   43.7143,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [309],
                    "starttimesec"  :   44.1429,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [310],
                    "starttimesec"  :   44.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F#4", "b7":31, "b12":66, "accid":1},
                    "starttime" :   [314],
                    "starttimesec"  :   44.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [316],
                    "starttimesec"  :   45.1429,
                    "duration"  :   [20],
                    "durationsec"   :   2.85714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G4", "b7":32, "b12":67},
                    "starttime" :   [336],
                    "starttimesec"  :   48,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                }
                ]
        },
        {
            "partindex" :   2,
            "notedata"  :   
                [
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [4],
                    "starttimesec"  :   0.571429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [8],
                    "starttimesec"  :   1.14286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [10],
                    "starttimesec"  :   1.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [12],
                    "starttimesec"  :   1.71429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [16],
                    "starttimesec"  :   2.28571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [20],
                    "starttimesec"  :   2.85714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [22],
                    "starttimesec"  :   3.14286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [24],
                    "starttimesec"  :   3.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [26],
                    "starttimesec"  :   3.71429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F#3", "b7":24, "b12":54, "accid":1},
                    "starttime" :   [30],
                    "starttimesec"  :   4.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [32],
                    "starttimesec"  :   4.57143,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [44],
                    "starttimesec"  :   6.28571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [48],
                    "starttimesec"  :   6.85714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [50],
                    "starttimesec"  :   7.14286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [52],
                    "starttimesec"  :   7.42857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [56],
                    "starttimesec"  :   8,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [58],
                    "starttimesec"  :   8.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [60],
                    "starttimesec"  :   8.57143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [64],
                    "starttimesec"  :   9.14286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [68],
                    "starttimesec"  :   9.71429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [72],
                    "starttimesec"  :   10.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [74],
                    "starttimesec"  :   10.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [76],
                    "starttimesec"  :   10.8571,
                    "duration"  :   [16],
                    "durationsec"   :   2.28571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [98],
                    "starttimesec"  :   14,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [100],
                    "starttimesec"  :   14.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [102],
                    "starttimesec"  :   14.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [104],
                    "starttimesec"  :   14.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [114],
                    "starttimesec"  :   16.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [116],
                    "starttimesec"  :   16.5714,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [126],
                    "starttimesec"  :   18,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [129],
                    "starttimesec"  :   18.4286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [130],
                    "starttimesec"  :   18.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [132],
                    "starttimesec"  :   18.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [134],
                    "starttimesec"  :   19.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [138],
                    "starttimesec"  :   19.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [140],
                    "starttimesec"  :   20,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [150],
                    "starttimesec"  :   21.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [152],
                    "starttimesec"  :   21.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [158],
                    "starttimesec"  :   22.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [160],
                    "starttimesec"  :   22.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [162],
                    "starttimesec"  :   23.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [164],
                    "starttimesec"  :   23.4286,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [167],
                    "starttimesec"  :   23.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [168],
                    "starttimesec"  :   24,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [178],
                    "starttimesec"  :   25.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [180],
                    "starttimesec"  :   25.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [182],
                    "starttimesec"  :   26,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [184],
                    "starttimesec"  :   26.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E-4", "b7":30, "b12":63, "accid":-1},
                    "starttime" :   [190],
                    "starttimesec"  :   27.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [192],
                    "starttimesec"  :   27.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [194],
                    "starttimesec"  :   27.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [196],
                    "starttimesec"  :   28,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [200],
                    "starttimesec"  :   28.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [204],
                    "starttimesec"  :   29.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [208],
                    "starttimesec"  :   29.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [210],
                    "starttimesec"  :   30,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [214],
                    "starttimesec"  :   30.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [215],
                    "starttimesec"  :   30.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [216],
                    "starttimesec"  :   30.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [218],
                    "starttimesec"  :   31.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [220],
                    "starttimesec"  :   31.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [224],
                    "starttimesec"  :   32,
                    "duration"  :   [12],
                    "durationsec"   :   1.71429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [238],
                    "starttimesec"  :   34,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [240],
                    "starttimesec"  :   34.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [242],
                    "starttimesec"  :   34.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [244],
                    "starttimesec"  :   34.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [246],
                    "starttimesec"  :   35.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [248],
                    "starttimesec"  :   35.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [250],
                    "starttimesec"  :   35.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [252],
                    "starttimesec"  :   36,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [255],
                    "starttimesec"  :   36.4286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [256],
                    "starttimesec"  :   36.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [258],
                    "starttimesec"  :   36.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [260],
                    "starttimesec"  :   37.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [262],
                    "starttimesec"  :   37.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [264],
                    "starttimesec"  :   37.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [266],
                    "starttimesec"  :   38,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [268],
                    "starttimesec"  :   38.2857,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [271],
                    "starttimesec"  :   38.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [272],
                    "starttimesec"  :   38.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [274],
                    "starttimesec"  :   39.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [276],
                    "starttimesec"  :   39.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [282],
                    "starttimesec"  :   40.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [284],
                    "starttimesec"  :   40.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [286],
                    "starttimesec"  :   40.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [288],
                    "starttimesec"  :   41.1429,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [291],
                    "starttimesec"  :   41.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [292],
                    "starttimesec"  :   41.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [294],
                    "starttimesec"  :   42,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [296],
                    "starttimesec"  :   42.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [298],
                    "starttimesec"  :   42.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [300],
                    "starttimesec"  :   42.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [302],
                    "starttimesec"  :   43.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [304],
                    "starttimesec"  :   43.4286,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [307],
                    "starttimesec"  :   43.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [308],
                    "starttimesec"  :   44,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [310],
                    "starttimesec"  :   44.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [312],
                    "starttimesec"  :   44.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [318],
                    "starttimesec"  :   45.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [320],
                    "starttimesec"  :   45.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [322],
                    "starttimesec"  :   46,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [324],
                    "starttimesec"  :   46.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E-4", "b7":30, "b12":63, "accid":-1},
                    "starttime" :   [328],
                    "starttimesec"  :   46.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [332],
                    "starttimesec"  :   47.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [334],
                    "starttimesec"  :   47.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [336],
                    "starttimesec"  :   48,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                }
                ]
        },
        {
            "partindex" :   3,
            "notedata"  :   
                [
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [12],
                    "starttimesec"  :   1.71429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [16],
                    "starttimesec"  :   2.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [18],
                    "starttimesec"  :   2.57143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [20],
                    "starttimesec"  :   2.85714,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [32],
                    "starttimesec"  :   4.57143,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [35],
                    "starttimesec"  :   5,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [36],
                    "starttimesec"  :   5.14286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [37],
                    "starttimesec"  :   5.28571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [38],
                    "starttimesec"  :   5.42857,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [41],
                    "starttimesec"  :   5.85714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [42],
                    "starttimesec"  :   6,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [44],
                    "starttimesec"  :   6.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [46],
                    "starttimesec"  :   6.57143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [48],
                    "starttimesec"  :   6.85714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [50],
                    "starttimesec"  :   7.14286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [54],
                    "starttimesec"  :   7.71429,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [55],
                    "starttimesec"  :   7.85714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [56],
                    "starttimesec"  :   8,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [58],
                    "starttimesec"  :   8.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [60],
                    "starttimesec"  :   8.57143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [64],
                    "starttimesec"  :   9.14286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [74],
                    "starttimesec"  :   10.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [76],
                    "starttimesec"  :   10.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [78],
                    "starttimesec"  :   11.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [80],
                    "starttimesec"  :   11.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [86],
                    "starttimesec"  :   12.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [88],
                    "starttimesec"  :   12.5714,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [91],
                    "starttimesec"  :   13,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [92],
                    "starttimesec"  :   13.1429,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [93],
                    "starttimesec"  :   13.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [94],
                    "starttimesec"  :   13.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [96],
                    "starttimesec"  :   13.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [98],
                    "starttimesec"  :   14,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [106],
                    "starttimesec"  :   15.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [108],
                    "starttimesec"  :   15.4286,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [111],
                    "starttimesec"  :   15.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [112],
                    "starttimesec"  :   16,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [114],
                    "starttimesec"  :   16.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [115],
                    "starttimesec"  :   16.4286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [116],
                    "starttimesec"  :   16.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [120],
                    "starttimesec"  :   17.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [126],
                    "starttimesec"  :   18,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [128],
                    "starttimesec"  :   18.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [142],
                    "starttimesec"  :   20.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [144],
                    "starttimesec"  :   20.5714,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [147],
                    "starttimesec"  :   21,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [148],
                    "starttimesec"  :   21.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [150],
                    "starttimesec"  :   21.4286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [151],
                    "starttimesec"  :   21.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [152],
                    "starttimesec"  :   21.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [156],
                    "starttimesec"  :   22.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [158],
                    "starttimesec"  :   22.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [160],
                    "starttimesec"  :   22.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [162],
                    "starttimesec"  :   23.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [164],
                    "starttimesec"  :   23.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [170],
                    "starttimesec"  :   24.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [172],
                    "starttimesec"  :   24.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [174],
                    "starttimesec"  :   24.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [176],
                    "starttimesec"  :   25.1429,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [179],
                    "starttimesec"  :   25.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [180],
                    "starttimesec"  :   25.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [181],
                    "starttimesec"  :   25.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"E-4", "b7":30, "b12":63, "accid":-1},
                    "starttime" :   [182],
                    "starttimesec"  :   26,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [186],
                    "starttimesec"  :   26.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [188],
                    "starttimesec"  :   26.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [190],
                    "starttimesec"  :   27.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [192],
                    "starttimesec"  :   27.4286,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [206],
                    "starttimesec"  :   29.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [208],
                    "starttimesec"  :   29.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [210],
                    "starttimesec"  :   30,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [212],
                    "starttimesec"  :   30.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [216],
                    "starttimesec"  :   30.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [222],
                    "starttimesec"  :   31.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [224],
                    "starttimesec"  :   32,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [226],
                    "starttimesec"  :   32.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [228],
                    "starttimesec"  :   32.5714,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [231],
                    "starttimesec"  :   33,
                    "duration"  :   [0.5, 1, 2],
                    "durationsec"   :   0.0714286,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [231.5, 1, 2],
                    "starttimesec"  :   33.0714,
                    "duration"  :   [0.5, 1, 2],
                    "durationsec"   :   0.0714286,
                    "metpos"    :   [8.5, 1, 2]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [232],
                    "starttimesec"  :   33.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [236],
                    "starttimesec"  :   33.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [238],
                    "starttimesec"  :   34,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F4", "b7":31, "b12":65},
                    "starttime" :   [240],
                    "starttimesec"  :   34.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [242],
                    "starttimesec"  :   34.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [244],
                    "starttimesec"  :   34.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [247],
                    "starttimesec"  :   35.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [248],
                    "starttimesec"  :   35.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [250],
                    "starttimesec"  :   35.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [252],
                    "starttimesec"  :   36,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [254],
                    "starttimesec"  :   36.2857,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [257],
                    "starttimesec"  :   36.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [258],
                    "starttimesec"  :   36.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [260],
                    "starttimesec"  :   37.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [262],
                    "starttimesec"  :   37.4286,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [263],
                    "starttimesec"  :   37.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [264],
                    "starttimesec"  :   37.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [265],
                    "starttimesec"  :   37.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [266],
                    "starttimesec"  :   38,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [268],
                    "starttimesec"  :   38.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [270],
                    "starttimesec"  :   38.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [272],
                    "starttimesec"  :   38.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [274],
                    "starttimesec"  :   39.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [276],
                    "starttimesec"  :   39.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [280],
                    "starttimesec"  :   40,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [282],
                    "starttimesec"  :   40.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [284],
                    "starttimesec"  :   40.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [286],
                    "starttimesec"  :   40.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [288],
                    "starttimesec"  :   41.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [290],
                    "starttimesec"  :   41.4286,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [293],
                    "starttimesec"  :   41.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [294],
                    "starttimesec"  :   42,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [296],
                    "starttimesec"  :   42.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [298],
                    "starttimesec"  :   42.5714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [299],
                    "starttimesec"  :   42.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [300],
                    "starttimesec"  :   42.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [301],
                    "starttimesec"  :   43,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"E4", "b7":30, "b12":64},
                    "starttime" :   [302],
                    "starttimesec"  :   43.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [304],
                    "starttimesec"  :   43.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C4", "b7":28, "b12":60},
                    "starttime" :   [306],
                    "starttimesec"  :   43.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D4", "b7":29, "b12":62},
                    "starttime" :   [308],
                    "starttimesec"  :   44,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [310],
                    "starttimesec"  :   44.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [312],
                    "starttimesec"  :   44.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [316],
                    "starttimesec"  :   45.1429,
                    "duration"  :   [20],
                    "durationsec"   :   2.85714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [336],
                    "starttimesec"  :   48,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                }
                ]
        },
        {
            "partindex" :   4,
            "notedata"  :   
                [
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [0],
                    "starttimesec"  :   0,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [4],
                    "starttimesec"  :   0.571429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [6],
                    "starttimesec"  :   0.857143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [8],
                    "starttimesec"  :   1.14286,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [16],
                    "starttimesec"  :   2.28571,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A2", "b7":19, "b12":45},
                    "starttime" :   [19],
                    "starttimesec"  :   2.71429,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [20],
                    "starttimesec"  :   2.85714,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [21],
                    "starttimesec"  :   3,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [6]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [22],
                    "starttimesec"  :   3.14286,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [25],
                    "starttimesec"  :   3.57143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [2]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [26],
                    "starttimesec"  :   3.71429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"A2", "b7":19, "b12":45},
                    "starttime" :   [28],
                    "starttimesec"  :   4,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A2", "b7":19, "b12":45},
                    "starttime" :   [30],
                    "starttimesec"  :   4.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [32],
                    "starttimesec"  :   4.57143,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [42],
                    "starttimesec"  :   6,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [44],
                    "starttimesec"  :   6.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [46],
                    "starttimesec"  :   6.57143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [48],
                    "starttimesec"  :   6.85714,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [66],
                    "starttimesec"  :   9.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [68],
                    "starttimesec"  :   9.71429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [70],
                    "starttimesec"  :   10,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [72],
                    "starttimesec"  :   10.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [78],
                    "starttimesec"  :   11.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [80],
                    "starttimesec"  :   11.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [82],
                    "starttimesec"  :   11.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [84],
                    "starttimesec"  :   12,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [90],
                    "starttimesec"  :   12.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [92],
                    "starttimesec"  :   13.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [100],
                    "starttimesec"  :   14.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [104],
                    "starttimesec"  :   14.8571,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [107],
                    "starttimesec"  :   15.2857,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [108],
                    "starttimesec"  :   15.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [110],
                    "starttimesec"  :   15.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [111],
                    "starttimesec"  :   15.8571,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [8]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [112],
                    "starttimesec"  :   16,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [116],
                    "starttimesec"  :   16.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [122],
                    "starttimesec"  :   17.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [126],
                    "starttimesec"  :   18,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [128],
                    "starttimesec"  :   18.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [130],
                    "starttimesec"  :   18.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [134],
                    "starttimesec"  :   19.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [136],
                    "starttimesec"  :   19.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [138],
                    "starttimesec"  :   19.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [140],
                    "starttimesec"  :   20,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [144],
                    "starttimesec"  :   20.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [154],
                    "starttimesec"  :   22,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [156],
                    "starttimesec"  :   22.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [158],
                    "starttimesec"  :   22.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [160],
                    "starttimesec"  :   22.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [164],
                    "starttimesec"  :   23.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [170],
                    "starttimesec"  :   24.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [172],
                    "starttimesec"  :   24.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [174],
                    "starttimesec"  :   24.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [176],
                    "starttimesec"  :   25.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [180],
                    "starttimesec"  :   25.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [184],
                    "starttimesec"  :   26.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [186],
                    "starttimesec"  :   26.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"E-3", "b7":23, "b12":51, "accid":-1},
                    "starttime" :   [188],
                    "starttimesec"  :   26.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [192],
                    "starttimesec"  :   27.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [198],
                    "starttimesec"  :   28.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [200],
                    "starttimesec"  :   28.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [202],
                    "starttimesec"  :   28.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [204],
                    "starttimesec"  :   29.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [208],
                    "starttimesec"  :   29.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [246],
                    "starttimesec"  :   35.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [248],
                    "starttimesec"  :   35.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [250],
                    "starttimesec"  :   35.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [252],
                    "starttimesec"  :   36,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [262],
                    "starttimesec"  :   37.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [264],
                    "starttimesec"  :   37.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [266],
                    "starttimesec"  :   38,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [268],
                    "starttimesec"  :   38.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [270],
                    "starttimesec"  :   38.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"E3", "b7":23, "b12":52},
                    "starttime" :   [274],
                    "starttimesec"  :   39.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [276],
                    "starttimesec"  :   39.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [280],
                    "starttimesec"  :   40,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [290],
                    "starttimesec"  :   41.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [292],
                    "starttimesec"  :   41.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E3", "b7":23, "b12":52},
                    "starttime" :   [294],
                    "starttimesec"  :   42,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [296],
                    "starttimesec"  :   42.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [314],
                    "starttimesec"  :   44.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [316],
                    "starttimesec"  :   45.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"E-3", "b7":23, "b12":51, "accid":-1},
                    "starttime" :   [318],
                    "starttimesec"  :   45.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [320],
                    "starttimesec"  :   45.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E-3", "b7":23, "b12":51, "accid":-1},
                    "starttime" :   [324],
                    "starttimesec"  :   46.2857,
                    "duration"  :   [6],
                    "durationsec"   :   0.857143,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [330],
                    "starttimesec"  :   47.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"E-3", "b7":23, "b12":51, "accid":-1},
                    "starttime" :   [332],
                    "starttimesec"  :   47.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [336],
                    "starttimesec"  :   48,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                }
                ]
        },
        {
            "partindex" :   5,
            "notedata"  :   
                [
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [4],
                    "starttimesec"  :   0.571429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [8],
                    "starttimesec"  :   1.14286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [10],
                    "starttimesec"  :   1.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [12],
                    "starttimesec"  :   1.71429,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [32],
                    "starttimesec"  :   4.57143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [36],
                    "starttimesec"  :   5.14286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [38],
                    "starttimesec"  :   5.42857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [40],
                    "starttimesec"  :   5.71429,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [54],
                    "starttimesec"  :   7.71429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"E-3", "b7":23, "b12":51, "accid":-1},
                    "starttime" :   [58],
                    "starttimesec"  :   8.28571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [60],
                    "starttimesec"  :   8.57143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [64],
                    "starttimesec"  :   9.14286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [70],
                    "starttimesec"  :   10,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [72],
                    "starttimesec"  :   10.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [74],
                    "starttimesec"  :   10.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [76],
                    "starttimesec"  :   10.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [82],
                    "starttimesec"  :   11.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [84],
                    "starttimesec"  :   12,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [86],
                    "starttimesec"  :   12.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [88],
                    "starttimesec"  :   12.5714,
                    "duration"  :   [6],
                    "durationsec"   :   0.857143,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [94],
                    "starttimesec"  :   13.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [96],
                    "starttimesec"  :   13.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [98],
                    "starttimesec"  :   14,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"E-3", "b7":23, "b12":51, "accid":-1},
                    "starttime" :   [100],
                    "starttimesec"  :   14.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [104],
                    "starttimesec"  :   14.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [120],
                    "starttimesec"  :   17.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [124],
                    "starttimesec"  :   17.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [126],
                    "starttimesec"  :   18,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [128],
                    "starttimesec"  :   18.2857,
                    "duration"  :   [3],
                    "durationsec"   :   0.428571,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [131],
                    "starttimesec"  :   18.7143,
                    "duration"  :   [1],
                    "durationsec"   :   0.142857,
                    "metpos"    :   [4]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [132],
                    "starttimesec"  :   18.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [134],
                    "starttimesec"  :   19.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"E-3", "b7":23, "b12":51, "accid":-1},
                    "starttime" :   [136],
                    "starttimesec"  :   19.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [140],
                    "starttimesec"  :   20,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [146],
                    "starttimesec"  :   20.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [148],
                    "starttimesec"  :   21.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [150],
                    "starttimesec"  :   21.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [152],
                    "starttimesec"  :   21.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"B-2", "b7":20, "b12":46, "accid":-1},
                    "starttime" :   [156],
                    "starttimesec"  :   22.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [162],
                    "starttimesec"  :   23.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [164],
                    "starttimesec"  :   23.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [166],
                    "starttimesec"  :   23.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [168],
                    "starttimesec"  :   24,
                    "duration"  :   [6],
                    "durationsec"   :   0.857143,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [174],
                    "starttimesec"  :   24.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [176],
                    "starttimesec"  :   25.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [178],
                    "starttimesec"  :   25.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [180],
                    "starttimesec"  :   25.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [184],
                    "starttimesec"  :   26.2857,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [190],
                    "starttimesec"  :   27.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [192],
                    "starttimesec"  :   27.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [194],
                    "starttimesec"  :   27.7143,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [196],
                    "starttimesec"  :   28,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"A3", "b7":26, "b12":57},
                    "starttime" :   [200],
                    "starttimesec"  :   28.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [236],
                    "starttimesec"  :   33.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [240],
                    "starttimesec"  :   34.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [242],
                    "starttimesec"  :   34.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [244],
                    "starttimesec"  :   34.8571,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [254],
                    "starttimesec"  :   36.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [256],
                    "starttimesec"  :   36.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"E3", "b7":23, "b12":52},
                    "starttime" :   [258],
                    "starttimesec"  :   36.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [260],
                    "starttimesec"  :   37.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"B-3", "b7":27, "b12":58, "accid":-1},
                    "starttime" :   [282],
                    "starttimesec"  :   40.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [284],
                    "starttimesec"  :   40.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G3", "b7":25, "b12":55},
                    "starttime" :   [286],
                    "starttimesec"  :   40.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [288],
                    "starttimesec"  :   41.1429,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [298],
                    "starttimesec"  :   42.5714,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [300],
                    "starttimesec"  :   42.8571,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [302],
                    "starttimesec"  :   43.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [304],
                    "starttimesec"  :   43.4286,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"F3", "b7":24, "b12":53},
                    "starttime" :   [306],
                    "starttimesec"  :   43.7143,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"E3", "b7":23, "b12":52},
                    "starttime" :   [310],
                    "starttimesec"  :   44.2857,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [7]
                },
                {
                    "pitch"     :   {"name":"D3", "b7":22, "b12":50},
                    "starttime" :   [312],
                    "starttimesec"  :   44.5714,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [1]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [316],
                    "starttimesec"  :   45.1429,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [324],
                    "starttimesec"  :   46.2857,
                    "duration"  :   [6],
                    "durationsec"   :   0.857143,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [330],
                    "starttimesec"  :   47.1429,
                    "duration"  :   [2],
                    "durationsec"   :   0.285714,
                    "metpos"    :   [3]
                },
                {
                    "pitch"     :   {"name":"C3", "b7":21, "b12":48},
                    "starttime" :   [332],
                    "starttimesec"  :   47.4286,
                    "duration"  :   [4],
                    "durationsec"   :   0.571429,
                    "metpos"    :   [5]
                },
                {
                    "pitch"     :   {"name":"G2", "b7":18, "b12":43},
                    "starttime" :   [336],
                    "starttimesec"  :   48,
                    "duration"  :   [8],
                    "durationsec"   :   1.14286,
                    "metpos"    :   [1]
                }
                ]
        }
        ]
}

The original Humdrum data before conversion to JSON:

https://josquin.stanford.edu/cgi-bin/josquin?a=humdrum&file=Jos3005

!!!COA: Josquin des Prez
!!!CDT: ~1450-1521/08/27
!!!OTL@@FRE:    Jay bien cause de lamenter
!!!AGN: Chanson
!!!SCT: NJE 30.5
!!!SCA: New Josquin Edition 30.5
!!!voices:  6
**kern  **kern  **kern  **kern  **kern  **kern
*staff6 *staff5 *staff4 *staff3 *staff2 *staff1
*Ivox   *Ivox   *Ivox   *Ivox   *Ivox   *Ivox
*I"Bassus1  *I"Bassus2  *I"Tenor    *I"Sextus   *I"Altus    *I"Discantus
*I'B1   *I'B2   *I'T    *I'Sx   *I'A    *I'D
*clefF4 *clefF4 *clefGv2    *clefGv2    *clefG2 *clefG2
*k[b-]  *k[b-]  *k[b-]  *k[b-]  *k[b-]  *k[b-]
*M2/1   *M2/1   *M2/1   *M2/1   *M2/1   *M2/1
*met(C|)    *met(C|)    *met(C|)    *met(C|)    *met(C|)    *met(C|)
=1- =1- =1- =1- =1- =1-
1r  1D  0r  1r  0r  0r
1D  2BB-/   .   1D  .   .
.   2GG/    .   .   .   .
=2  =2  =2  =2  =2  =2
2BB-/   0D  1r  2F/ 0r  0r
2GG/    .   .   2G/ .   .
[1D .   1d  1A  .   .
=3  =3  =3  =3  =3  =3
1D] 2.GG/   2B-\    1B- 0r  1r
.   .   2G/ .   .   .
.   4AA/    .   .   .   .
1r  4BB-/   [1d 2G/ .   1d
.   4C/ .   .   .   .
.   [2D\    .   2B-\    .   .
=4  =4  =4  =4  =4  =4
0r  4D\]    1d] 2A/ 0r  2f/
.   4C/ .   .   .   .
.   2BB-/   .   1G  .   2g/
.   2AA/    1r  .   .   1a
.   2AA/    .   2F#i/   .   .
=5  =5  =5  =5  =5  =5
1D  0GG 2.G/    0G  1r  1b-
.   .   4A/ .   .   .
2BB-/   .   4B-\    .   1d  2g/
.   .   4c\ .   .   .
2GG/    .   [2d\    .   .   2b-\
=6  =6  =6  =6  =6  =6
0D  2r  4d\]    1r  2f/ 2a/
.   .   4c\ .   .   .
.   2GG/    2B-\    .   2g/ 1g
.   2D\ 2A/ 1d  1a  .
.   2D\ 2A/ .   .   2f#i/
=7  =7  =7  =7  =7  =7
1r  0GG 2G/ 2B-\    1b- 0g
.   .   1B- 2G/ .   .
2r  .   .   1d  2g/ .
[2D\    .   4A/ .   2b-\    .
.   .   4G/ .   .   .
=8  =8  =8  =8  =8  =8
2D\]    0r  2F/ 2d\ 4a/ 0r
.   .   .   .   4g/ .
2E-i\   .   2G/ 2c\ 1g  .
1D  .   1A  1d  .   .
.   .   .   .   2f#i/   .
=9  =9  =9  =9  =9  =9
1GG 2r  1G  1B- 1g  1r
.   2D\ .   .   .   .
2r  2F\ 1r  1d  1r  1a
2D\ 2F\ .   .   .   .
=10 =10 =10 =10 =10 =10
2F\ 1D  2r  2d\ 1a  2a/
2F\ .   2A/ 2d\ .   2a/
1D  2r  2F/ [1d 2a/ 1a
.   2D\ 2D/ .   2a/ .
=11 =11 =11 =11 =11 =11
2r  2F\ 1A  0d_ 1a  2r
2D\ 2F\ .   .   .   2a/
2F\ 1D  2r  .   2r  2f/
2F\ .   2d\ .   2a/ 2d/
=12 =12 =12 =12 =12 =12
1.D 2r  2.f\    1d] 2f/ 1.a
.   2D\ .   .   2d/ .
.   .   4e\ .   .   .
.   1F  4d\ 1r  1a  .
.   .   4c\ .   .   .
2D\ .   2f\ .   .   2f/
=13 =13 =13 =13 =13 =13
2C/ 1r  2e\ 2r  2r  2a/
2BB-/   .   2d\ 2d\ 2d/ 2b-\
1E- 1G  1r  2B-\    1g  1g
.   .   .   2G/ .   .
=14 =14 =14 =14 =14 =14
1D  2.B-\   2r  1d  0r  2.f/
.   .   2d\ .   .   .
.   4A\ .   .   .   4g/
1r  2A\ 2.f\    1r  .   4a/
.   .   .   .   .   4b-\
.   4G\ .   .   .   [2cc\
.   4F\ 4e\ .   .   .
=15 =15 =15 =15 =15 =15
0r  1G  2d\ 2r  1r  4cc\]
.   .   .   .   .   4b-\
.   .   4c\ 2d\ .   1b-
.   .   4B-\    .   .   .
.   1F  1c  [1f 2r  .
.   .   .   .   2a/ 2a/
=16 =16 =16 =16 =16 =16
1D  2r  1d  1f] 2f/ 2b-\
.   1D  .   .   2d/ 4r
.   .   .   .   .   4a/
2F\ .   2r  2r  [1a 2f/
2F\ 2F\ 2d\ [2d\    .   2d/
=17 =17 =17 =17 =17 =17
2.D\    2F\ 1f  4d\]    2a/]    1a
.   .   .   4c\ .   .
.   2D\ .   2f\ 2f/ .
4D\ .   .   .   .   .
2C/ 2r  1r  2e\ 2a/ 2r
2BB-/   2F\ .   [2d\    2b-\    2dd\
=18 =18 =18 =18 =18 =18
1E- 2G\ 1r  2d\]    1g  2b-\
.   2G\ .   2c\ .   2g/
1D  1B- 2r  1d  2.f/    1dd
.   .   2d\ .   .   .
.   .   .   .   4g/ .
=19 =19 =19 =19 =19 =19
2r  1F  2.f\    1r  4a/ 0r
.   .   .   .   4b-\    .
2F\ .   .   .   2.cc\   .
.   .   4e\ .   .   .
2F\ 1r  2d\ 2r  .   .
.   .   .   .   4b-\    .
2G\ .   4c\ 2d\ [2b-\   .
.   .   4B-\    .   .   .
=20 =20 =20 =20 =20 =20
1F  2r  1c  1f  2b-\]   0r
.   2F\ .   .   2a/ .
1BB-    2G\ 2B-\    2r  [1b-    .
.   2G\ 2d\ 2B-\    .   .
=21 =21 =21 =21 =21 =21
2r  1B- 2d\ 2G/ 0b-]    2r
2GG/    .   2G/ 2G/ .   2b-\
2GG/    1BB-    1d  2.B-\   .   2b-\
2GG/    .   .   .   .   2b-\
.   .   .   4c\ .   .
=22 =22 =22 =22 =22 =22
1.D 2r  2r  0d  0r  2f/
.   2D\ 2A/ .   .   2.a/
.   2D\ 2d\ .   .   .
.   .   .   .   .   4g/
2G\ 2GG/    2d\ .   .   [2b-\
=23 =23 =23 =23 =23 =23
2G\ 1D  2.f\    2r  2r  4b-\]
.   .   .   .   .   4a/
2F\ .   .   2d\ 2a/ 1a
.   .   4e\ .   .   .
1B- 1G  4d\ 2d\ 2b-\    .
.   .   4c\ .   .   .
.   .   [2e-i\  2G/ 2b-\    2g/
=24 =24 =24 =24 =24 =24
1A  2D\ 2e-\]   1d  2f/ 1a
.   2F\ 2d\ .   2.a/    .
2r  1E-i    2d\ 2r  .   1r
.   .   .   .   4g/ .
2G\ .   2G/ 2e-i\   [2b-\   .
=25 =25 =25 =25 =25 =25
2G\ 1D  0d  2f\ 4b-\]   1r
.   .   .   .   4a/ .
2F\ .   .   2f\ 1a  .
1B- 2r  .   1d  .   2r
.   2G\ .   .   2g/ 2g/
=26 =26 =26 =26 =26 =26
1A  2G\ 1r  1c  1a  2cc\
.   2F\ .   .   .   2cc\
1r  1B- 2r  1d  2r  4b-\
.   .   .   .   .   2a/
.   .   2G/ .   2g/ .
.   .   .   .   .   4g/
=27 =27 =27 =27 =27 =27
0r  1A  2G/ 2e\ 2cc\    1a
.   .   2F/ 1f  2cc\    .
.   1r  1B- .   4b-\    2r
.   .   .   .   2a/ .
.   .   .   4e\ .   2d/
.   .   .   4d\ 4g/ .
=28 =28 =28 =28 =28 =28
0r  0r  1A  2f\ [0a 2d/
.   .   .   2e\ .   2c/
.   .   2r  1d  .   2.f/
.   .   2d\ .   .   .
.   .   .   .   .   4e/
=29 =29 =29 =29 =29 =29
0r  0r  2d\ [0A 0a] 4f/
.   .   .   .   .   4d/
.   .   2c\ .   .   2.e/
.   .   2.f\    .   .   .
.   .   .   .   .   4d/
.   .   .   .   .   [2d/
.   .   8e\L    .   .   .
.   .   8d\J    .   .   .
=30 =30 =30 =30 =30 =30
1r  0r  1e  1A] 1a  2d/]
.   .   .   .   .   2c#i/
1D  .   2d\ 2r  2r  1d
.   .   2f\ 2d\ 2b-\    .
=31 =31 =31 =31 =31 =31
2F\ 1r  2f\ 2c\ 2a/ 1r
2G\ .   2e\ 2B-\    2g/ .
1D  2r  2d\ 2A/ 1a  2r
.   2D\ 4r  2f\ .   2a/
.   .   4d\ .   .   .
=32 =32 =32 =32 =32 =32
1r  2F\ 2c\ 2f\ 1r  2a/
.   2G\ 2B-\    2e\ .   2g/
2r  1D  2A/ 2.d\    2r  1a
2D\ .   [2d\    .   2a/ .
.   .   .   4F/ .   .
=33 =33 =33 =33 =33 =33
2F\ 1r  4d\]    2F/ 2a/ 1r
.   .   4A/ .   .   .
2E\ .   2c\ 2G/ 2g/ .
1D  2r  2d\ 2A/ 2.f/    2r
.   2D\ 4A/ 2d\ .   2a/
.   .   4B-\    .   4g/ .
=34 =34 =34 =34 =34 =34
0r  2C/ 4c\ 2e\ 4a/ 2a/
.   .   4d\ .   4b-\    .
.   2C/ 2e\ 2c\ 2cc\    2g/
.   2D\ 2d\ 2.f\    2b-\    1f
.   [2F\    2c\ .   [2a/    .
.   .   .   4e\ .   .
=35 =35 =35 =35 =35 =35
0r  2F\]    2d\ 2d\ 4a/]    0r
.   .   .   .   4g/ .
.   2E\ 2G/ 2c\ 1g  .
.   1D  1A  1d  .   .
.   .   .   .   2f#i/   .
=36 =36 =36 =36 =36 =36
2r  1GG 2G/ 2r  1g  2r
2B-\    .   2d\ 2d\ .   2b-\
2F\ 1r  2c\ 2f\ 1r  2a/
2G\ .   2B-\    2e\ .   2g/
=37 =37 =37 =37 =37 =37
1D  2r  2A/ 2.d\    2r  1a
.   2D\ 2.d\    .   2a/ .
.   .   .   4F/ .   .
1r  2F\ .   2F/ 2a/ 1r
.   .   4A/ .   .   .
.   2E\ 2c\ 2G/ 2g/ .
=38 =38 =38 =38 =38 =38
2r  1D  2d\ 2A/ 2.f/    2r
2D\ .   4A/ 2d\ .   2a/
.   .   4B-\    .   4g/ .
2C/ 1r  4c\ 2e\ 4a/ 2a/
.   .   4d\ .   4b-\    .
2C/ .   2e\ 2c\ 2cc\    2g/
=39 =39 =39 =39 =39 =39
2D\ 0r  2d\ 2.f\    2b-\    1f
1F  .   2c\ .   2.a/    .
.   .   .   4e\ .   .
.   .   2d\ 2d\ .   1r
.   .   .   .   4g/ .
2E\ .   2G/ 2c\ [2g/    .
=40 =40 =40 =40 =40 =40
1D  2r  1A  1d  2g/]    2r
.   2D\ .   .   2f#i/   2a/
[1GG    2D\ [1G 2r  [1g 2b-\
.   2E-\    .   2B-\    .   2b-\
=41 =41 =41 =41 =41 =41
1GG]    1D  0G_ 2B-\    0g_ 1.g
.   .   .   2B-\    .   .
[1C [1E-i   .   1c  .   .
.   .   .   .   .   [2cc\
=42 =42 =42 =42 =42 =42
2C/]    2E-\]   0G] 1e- 0g] 2cc\]
2C/ 2C/ .   .   .   2cc\
1C  1E-i    .   2c\ .   1cc
.   .   .   2c\ .   .
=43 =43 =43 =43 =43 =43
0GGl    0Dl 0Gl 0dl 0gl 0b-l
==  ==  ==  ==  ==  ==
*-  *-  *-  *-  *-  *-
!!!RDF**kern: l=long note in original notation
!!!RDF**kern: i=editorial accidental
!!!ENC: Will Watson 07/09/2011
!!!END: 2011/09/07/
!!!EED: Jesse Rodin
!!!EEV: 2011/12/01/
!!attribution-level@Jos: 4 (questionable)
!!!ONB: Translated from MusicXML and edited on 2011/12/01/ by Craig Sapp
!!muse2ps: C^@{COA}?\n@{SCT}^i2I150v95,95,95,95,95,130Q16